This commit is contained in:
caozehui
2025-03-10 10:50:53 +08:00
parent 3cf5019880
commit 0fd2d8252d
2 changed files with 4 additions and 4 deletions

View File

@@ -426,6 +426,9 @@ const stopLoading = async () => {
const startTimeCount = () => { const startTimeCount = () => {
hour.value = 0
minute.value = 0
second.value = 0
if (!timer) { if (!timer) {
timer = setInterval(() => { timer = setInterval(() => {
timeCount.value = timeCount.value + 1 timeCount.value = timeCount.value + 1
@@ -445,9 +448,6 @@ const stopTimeCount = () => {
if (timer) { if (timer) {
clearInterval(timer) clearInterval(timer)
} }
hour.value = 0
minute.value = 0
second.value = 0
} }
// 获取左边树数据 // 获取左边树数据

View File

@@ -6,7 +6,7 @@
:pagination="false" :pagination="false"
:toolButton="false" :toolButton="false"
:data="tableData" :data="tableData"
:row-key="id" row-key="id"
:style="{ height: '250px',maxHeight: '400px',overflow:'hidden'}" :style="{ height: '250px',maxHeight: '400px',overflow:'hidden'}"
:expand-row-keys="defaultExpandRowKeys" :expand-row-keys="defaultExpandRowKeys"
> >