联调 在线监测

This commit is contained in:
GGJ
2024-07-09 14:16:51 +08:00
parent 609489a4c5
commit 1326b934db
2 changed files with 3 additions and 3 deletions

View File

@@ -16,7 +16,7 @@ import { overLimitDetail } from '@/api/process-boot/electricitymanagement'
import { defaultAttribute } from '@/components/table/defaultAttribute'
const emits = defineEmits(['onSubmit'])
const dictData = useDictData()
const dialogVisible = ref(true)
const dialogVisible = ref(false)
const title: any = ref('')
const List: any = ref([])
@@ -25,7 +25,7 @@ const open = (row: any) => {
title.value = row.text
overLimitDetail({
lineId: row.row.lineId,
targetId: row.row.targetId,
targetId: row.row.targetType,
searchBeginTime: row.list.searchBeginTime,
searchEndTime: row.list.searchEndTime
}).then(res => {

View File

@@ -175,7 +175,7 @@ const tableStore = new TableStore({
click: row => {
detailRef.value.open({
text: '详情',
row: row.row,
row: row,
list: list.value
})
}