修改技术监督

This commit is contained in:
GGJ
2025-12-11 15:03:11 +08:00
parent 0fe2d2b911
commit b36f765d07
21 changed files with 546 additions and 300 deletions

View File

@@ -91,10 +91,10 @@ const open = (data: anyObj, time: string[], num: number) => {
searchBeginTime: time[0],
searchEndTime: time[1]
})
.then(res => {
.then(async(res) => {
TableData.value = res.data
tableRef.value.setCurrentRow(TableData.value[0])
currentChangeEvent()
await tableRef.value.setCurrentRow(TableData.value[0])
await currentChangeEvent()
loading.value = false
})
.catch(() => {
@@ -145,7 +145,7 @@ defineExpose({ open })
}
:deep(.box) {
.row--current {
background-color: var(--el-color-primary-light-8) !important;
//background-color: var(--el-color-primary-light-8) !important;
}
}
</style>