fix: 修复计算器结果解析函数名错误

This commit is contained in:
Wenjie Zhang 2026-01-31 17:44:51 +08:00
parent cfb0ed7609
commit 1ab0654971
2 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@
<div class="resize-handle" @mousedown="startResize"></div>
<div class="panel-header">
<div class="panel-title">
<FolderCode :size="16" class="header-icon" />
<FolderCode :size="18" class="header-icon" />
<span><strong>状态工作台</strong></span>
</div>
<div class="header-actions">
@ -214,7 +214,7 @@
<script setup>
import { computed, ref } from 'vue'
import { Download, X, Plus, Info, FolderCode } from 'lucide-vue-next'
import { Download, X, Plus, Info, FolderCode, RefreshCw } from 'lucide-vue-next'
import {
CheckCircleOutlined,
SyncOutlined,
@ -477,7 +477,7 @@ const stopResize = () => {
align-items: center;
gap: 6px;
font-weight: 600;
font-size: 13px;
font-size: 14px;
color: var(--gray-900);
.header-icon {

View File

@ -8,7 +8,7 @@
<div class="calc-display">
<div class="result-container">
<div class="result-value">{{ formatNumber(parsedData(resultContent)) }}</div>
<div class="result-value">{{ formatNumber(parseData(resultContent)) }}</div>
</div>
</div>
</div>