|
@@ -282,7 +282,11 @@
|
|
|
<bundleSpyMonitorTable @locate="goLocation" :isShowAction="true"></bundleSpyMonitorTable>
|
|
|
</template>
|
|
|
<template v-else-if="deviceType.startsWith('dusting') && activeKey == '1'">
|
|
|
- <DustingTable :dataSource="dataSource" :deviceType="deviceType" :scroll="scroll" @locate="goLocation"/>
|
|
|
+ <DustingTable :dataSource="dataSource" :deviceType="deviceType" :scroll="scroll" @locate="goLocation" />
|
|
|
+ </template>
|
|
|
+ <!-- 设备分站 -->
|
|
|
+ <template v-else-if="deviceType.startsWith('substation_normal') && activeKey == '1'">
|
|
|
+ <stationTable :tableData="stationData" @locate="goLocation" @stationDetail="stationDetail"></stationTable>
|
|
|
</template>
|
|
|
<template v-else>
|
|
|
<!-- 工作面echarts图标 -->
|
|
@@ -462,13 +466,15 @@ import {
|
|
|
getExportUrl,
|
|
|
queryNowGasInsInfo,
|
|
|
queryNowGasSta,
|
|
|
- queryReportData
|
|
|
+ queryReportData,
|
|
|
+ getListAll
|
|
|
} from './device.api';
|
|
|
import AlarmHistoryTable from '../../../comment/AlarmHistoryTable.vue';
|
|
|
import HistoryTable from '../../../comment/HistoryTable.vue';
|
|
|
import HandlerHistoryTable from '../../../comment/HandlerHistoryTable.vue';
|
|
|
import MonitorTable from '../../../comment/MonitorTable.vue';
|
|
|
import GroupMonitorTable from '../../../comment/GroupMonitorTable.vue';
|
|
|
+import stationTable from '../../../comment/stationTable.vue'
|
|
|
import gaspatrolTable from '../../../comment/gaspatrolTable.vue';
|
|
|
import gasReport from '../../../comment/gasReport.vue'
|
|
|
import gasReportCount from '../../../comment/gasReportCount.vue'
|
|
@@ -519,7 +525,7 @@ const inspectList = reactive<any[]>([
|
|
|
{ label: '第二次巡检已检数', val: 0 },
|
|
|
{ label: '第二次巡检未检数', val: 0 },
|
|
|
]);
|
|
|
-
|
|
|
+const stationData = ref<any[]>([])
|
|
|
const glob = useGlobSetting();
|
|
|
// import { BorderBox8 as DvBorderBox8 } from '@kjgl77/datav-vue3';
|
|
|
|
|
@@ -699,8 +705,10 @@ function getMonitor(flag?) {
|
|
|
if (deviceType.value.startsWith('gasDay_normal')) {
|
|
|
await queryNowGasInsInfoList();//人工瓦斯巡检
|
|
|
} else if (deviceType.value.startsWith('gasDayReport')) {
|
|
|
- let searchParams=glob.sysOrgCode=='sdmtjtbetmk' ? searchReportParam1.value : searchReportParam.value
|
|
|
+ let searchParams = glob.sysOrgCode == 'sdmtjtbetmk' ? searchReportParam1.value : searchReportParam.value
|
|
|
await getSearchReport(searchParams)//瓦斯日报
|
|
|
+ } else if (deviceType.value.startsWith('substation_normal')) {//分站
|
|
|
+ await getStationList()
|
|
|
} else {
|
|
|
await getDataSource();
|
|
|
}
|
|
@@ -881,6 +889,12 @@ async function getDataSource() {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+//设备分站详情跳转
|
|
|
+function stationDetail(){
|
|
|
+ const newPage = router.resolve({ path: '/safety/list/detail/home' });
|
|
|
+ window.open(newPage.href, '_blank');
|
|
|
+}
|
|
|
+
|
|
|
function goLocation(record) {
|
|
|
// debugger;
|
|
|
if (record['deviceType'] == 'person_bd' || record['deviceType'] == 'car_bd') {
|
|
@@ -891,6 +905,8 @@ function goLocation(record) {
|
|
|
actions.setGlobalState({ locationName: record.strInstallPos, locationObj: null, pageObj: null, type: record['deviceType'] });
|
|
|
} else if (deviceType.value == 'gasDayReport') {
|
|
|
actions.setGlobalState({ locationName: record.jcdd, locationObj: null, pageObj: null, type: record['deviceType'] });
|
|
|
+ } else if (deviceType.value == 'substation_normal') {
|
|
|
+ actions.setGlobalState({ locationName: record.strinstallpos, locationObj: null, pageObj: null, type: record['deviceType'] });
|
|
|
} else {
|
|
|
if (deviceType.value.startsWith('location')) {
|
|
|
actions.setGlobalState({ locationId: record.deviceID, locationObj: null, pageObj: null, type: 'person' });
|
|
@@ -902,6 +918,16 @@ function goLocation(record) {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+//查询分站列表
|
|
|
+async function getStationList() {
|
|
|
+ let res = await getListAll();
|
|
|
+ res.forEach((el) => {
|
|
|
+ el.key = el.id;
|
|
|
+ el.linkstatusC = el.linkstatus ? '连接' : '断开';
|
|
|
+ el.gdmsC = el.gdms == '1' ? '直流供电' : el.gdms == '0' ? '交流供电' : '';
|
|
|
+ });
|
|
|
+ stationData.value = res;
|
|
|
+}
|
|
|
//查询当前各班瓦斯巡检信息
|
|
|
async function queryNowGasInsInfoList() {
|
|
|
let res = await queryNowGasInsInfo({
|
|
@@ -942,10 +968,10 @@ async function getSearch(param) {
|
|
|
}
|
|
|
//查询瓦斯日报列表数据
|
|
|
async function getSearchReport(param) {
|
|
|
- if(glob.sysOrgCode=='sdmtjtbetmk'){
|
|
|
- searchReportParam1.value=param
|
|
|
- }else {
|
|
|
- searchReportParam.value=param
|
|
|
+ if (glob.sysOrgCode == 'sdmtjtbetmk') {
|
|
|
+ searchReportParam1.value = param
|
|
|
+ } else {
|
|
|
+ searchReportParam.value = param
|
|
|
}
|
|
|
let res = await queryReportData({ type: param })
|
|
|
console.log(res, '瓦斯日报列表')
|