fix: 修复计算器结果解析函数名错误
This commit is contained in:
parent
cfb0ed7609
commit
1ab0654971
@ -4,7 +4,7 @@
|
|||||||
<div class="resize-handle" @mousedown="startResize"></div>
|
<div class="resize-handle" @mousedown="startResize"></div>
|
||||||
<div class="panel-header">
|
<div class="panel-header">
|
||||||
<div class="panel-title">
|
<div class="panel-title">
|
||||||
<FolderCode :size="16" class="header-icon" />
|
<FolderCode :size="18" class="header-icon" />
|
||||||
<span><strong>状态工作台</strong></span>
|
<span><strong>状态工作台</strong></span>
|
||||||
</div>
|
</div>
|
||||||
<div class="header-actions">
|
<div class="header-actions">
|
||||||
@ -214,7 +214,7 @@
|
|||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import { computed, ref } from 'vue'
|
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 {
|
import {
|
||||||
CheckCircleOutlined,
|
CheckCircleOutlined,
|
||||||
SyncOutlined,
|
SyncOutlined,
|
||||||
@ -477,7 +477,7 @@ const stopResize = () => {
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 6px;
|
gap: 6px;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
font-size: 13px;
|
font-size: 14px;
|
||||||
color: var(--gray-900);
|
color: var(--gray-900);
|
||||||
|
|
||||||
.header-icon {
|
.header-icon {
|
||||||
|
|||||||
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
<div class="calc-display">
|
<div class="calc-display">
|
||||||
<div class="result-container">
|
<div class="result-container">
|
||||||
<div class="result-value">{{ formatNumber(parsedData(resultContent)) }}</div>
|
<div class="result-value">{{ formatNumber(parseData(resultContent)) }}</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user