技术监督台账管理功能

This commit is contained in:
cdf
2024-05-16 13:23:01 +08:00
parent cadf454480
commit 32f097c951
4 changed files with 13 additions and 9 deletions

View File

@@ -5,7 +5,9 @@
<undocumented v-if="activeName == '1'" /> <undocumented v-if="activeName == '1'" />
</el-tab-pane> </el-tab-pane>
<!-- <el-tab-pane label="入网评估报告审核" name="2"><network v-if="activeName == '2'" /></el-tab-pane>--> <!-- <el-tab-pane label="入网评估报告审核" name="2"><network v-if="activeName == '2'" /></el-tab-pane>-->
<el-tab-pane label="常态化干扰源用户管理" name="3"><normal v-if="activeName == '3'" /></el-tab-pane> <el-tab-pane label="常态化干扰源用户管理" name="3">
<interferenceUserTable v-if="activeName == '3'" />
</el-tab-pane>
<!-- <el-tab-pane label="实测报告审核" name="4"><report v-if="activeName == '4'" /></el-tab-pane>--> <!-- <el-tab-pane label="实测报告审核" name="4"><report v-if="activeName == '4'" /></el-tab-pane>-->
<el-tab-pane label="终端入网检测" name="5"> <el-tab-pane label="终端入网检测" name="5">
<terminalNetworkDetection v-if="activeName == '5'"></terminalNetworkDetection> <terminalNetworkDetection v-if="activeName == '5'"></terminalNetworkDetection>
@@ -18,7 +20,7 @@
import { onMounted, reactive, ref, provide } from 'vue' import { onMounted, reactive, ref, provide } from 'vue'
import undocumented from './components/undocumented/index.vue' import undocumented from './components/undocumented/index.vue'
import network from './components/network/index.vue' import network from './components/network/index.vue'
import normal from './components/normal.vue' import interferenceUserTable from '../terminal/components/interferenceUserTable.vue'
import report from './components/report.vue' import report from './components/report.vue'
import { mainHeight } from '@/utils/layout' import { mainHeight } from '@/utils/layout'
import terminalNetworkDetection from './components/terminalNetworkDetection/index.vue' import terminalNetworkDetection from './components/terminalNetworkDetection/index.vue'

View File

@@ -53,7 +53,7 @@ const tableStore = new TableStore({
title: '厂家', title: '厂家',
minWidth: 100 minWidth: 100
}, },
{ field: 'devType', title: '装作型号', minWidth: 100 }, { field: 'devType', title: '终端型号', minWidth: 100 },
{ field: 'ip', title: '装置网络参数', minWidth: 100 }, { field: 'ip', title: '装置网络参数', minWidth: 100 },
{ field: 'port', title: '端口号', minWidth: 100 } { field: 'port', title: '端口号', minWidth: 100 }

View File

@@ -78,7 +78,7 @@ const tableStore = new TableStore({
{ field: 'substation', title: '变电站', minWidth: 100 }, { field: 'substation', title: '变电站', minWidth: 100 },
/* { {
title: '操作', title: '操作',
minWidth: 150, minWidth: 150,
fixed: 'right', fixed: 'right',
@@ -86,7 +86,7 @@ const tableStore = new TableStore({
buttons: [ buttons: [
{ {
name: 'productSetting', name: 'productSetting',
title: '流程详情', title: '详细信息',
type: 'primary', type: 'primary',
icon: 'el-icon-EditPen', icon: 'el-icon-EditPen',
render: 'basicButton', render: 'basicButton',
@@ -95,7 +95,7 @@ const tableStore = new TableStore({
} }
} }
] ]
}*/ }
], ],
beforeSearchFun: () => { beforeSearchFun: () => {

View File

@@ -41,15 +41,17 @@ const tableStore = new TableStore({
title: '省公司', title: '省公司',
minWidth: 100 minWidth: 100
}, },
{ field: 'gdName', title: '市公司', minWidth: 150 },
{ field: 'lineName', title: '监测点名称', minWidth: 130 },
{ field: 'scale', title: '监测点电压等级', minWidth: 120 },
{ field: 'gdName', title: '市公司', minWidth: 150 },
{ {
field: 'bdName', field: 'bdName',
title: '所属变电站', title: '所属变电站',
minWidth: 150 minWidth: 150
}, },
{ field: 'lineName', title: '监测点名称', minWidth: 130 },
{ field: 'scale', title: '监测点电压等级', minWidth: 120 },
{ field: 'loadType', title: '干扰源类型', minWidth: 120 }, { field: 'loadType', title: '干扰源类型', minWidth: 120 },
{ field: 'objName', title: '监测对象名称', minWidth: 180 }, { field: 'objName', title: '监测对象名称', minWidth: 180 },
{ {