修改 承载能力评估 添加谐波次数

This commit is contained in:
GGJ
2024-07-15 14:49:52 +08:00
parent 1326b934db
commit afc0e875d8
8 changed files with 69 additions and 34 deletions

View File

@@ -1,8 +1,8 @@
<template>
<el-dialog draggable v-model="dialogVisible" :title="title" width="800px" :before-close="handleClose">
<el-dialog draggable v-model="dialogVisible" v-loading="loading" :title="title" width="80%" :before-close="handleClose">
<div style="height: 45vh">
<vxe-table height="auto" v-bind="defaultAttribute" :data="List">
<vxe-column field="time" title="日期" width="250px"></vxe-column>
<vxe-table show-overflow v-bind="defaultAttribute" :data="List">
<vxe-column field="time" title="日期" width="230px"></vxe-column>
<vxe-column field="overLimitInfo" title="越限详情"></vxe-column>
</vxe-table>
</div>
@@ -19,10 +19,12 @@ const dictData = useDictData()
const dialogVisible = ref(false)
const title: any = ref('')
const List: any = ref([])
const loading = ref(false)
const open = (row: any) => {
dialogVisible.value = true
title.value = row.text
loading.value = true
List.value = []
overLimitDetail({
lineId: row.row.lineId,
targetId: row.row.targetType,
@@ -30,6 +32,7 @@ const open = (row: any) => {
searchEndTime: row.list.searchEndTime
}).then(res => {
List.value = res.data
loading.value = false
})
}
@@ -39,4 +42,7 @@ const handleClose = () => {
defineExpose({ open })
</script>
<style lang="scss" scoped></style>
<style lang="scss">
/* 提升 VxeTable tooltip 的层级 */
</style>