|
@@ -130,14 +130,34 @@
|
|
|
width="200"
|
|
|
sortable="custom"
|
|
|
/>
|
|
|
-
|
|
|
-
|
|
|
+ <!-- <el-table-column
|
|
|
+ prop="IS_ONLINE_TEXT"
|
|
|
+ label="在线状态"
|
|
|
+ align="center"
|
|
|
+ v-if="columnVisibles[4]"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+
|
|
|
+ /> -->
|
|
|
+ <el-table-column
|
|
|
+ prop="IS_ONLINE"
|
|
|
+ label="在线状态"
|
|
|
+ align="center"
|
|
|
+ v-if="columnVisibles[4]"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ width="120"
|
|
|
+ >
|
|
|
+ <template slot-scope="record">
|
|
|
+ <el-tag type="danger" v-if="record.row.IS_ONLINE == 0">离线</el-tag>
|
|
|
+ <el-tag type="success" v-else-if="record.row.IS_ONLINE == 1">在线</el-tag>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+
|
|
|
|
|
|
<el-table-column
|
|
|
prop="UPDATE_DATE"
|
|
|
- label="在线时间"
|
|
|
+ label="修改时间"
|
|
|
align="center"
|
|
|
- v-if="columnVisibles[4]"
|
|
|
+ v-if="columnVisibles[5]"
|
|
|
:show-overflow-tooltip="true"
|
|
|
|
|
|
/>
|
|
@@ -145,7 +165,7 @@
|
|
|
prop="DEVICE_IP"
|
|
|
label="设备IP"
|
|
|
align="center"
|
|
|
- v-if="columnVisibles[5]"
|
|
|
+ v-if="columnVisibles[6]"
|
|
|
:show-overflow-tooltip="true"
|
|
|
|
|
|
/>
|
|
@@ -153,7 +173,7 @@
|
|
|
prop="DEVICE_PORT"
|
|
|
label="设备端口"
|
|
|
align="center"
|
|
|
- v-if="columnVisibles[6]"
|
|
|
+ v-if="columnVisibles[7]"
|
|
|
:show-overflow-tooltip="true"
|
|
|
|
|
|
/>
|
|
@@ -162,28 +182,29 @@
|
|
|
prop="longitude"
|
|
|
label="经度"
|
|
|
align="center"
|
|
|
- v-if="columnVisibles[7]"
|
|
|
+ v-if="columnVisibles[8]"
|
|
|
:show-overflow-tooltip="true"
|
|
|
/>
|
|
|
<el-table-column
|
|
|
prop="latitude"
|
|
|
label="纬度"
|
|
|
align="center"
|
|
|
- v-if="columnVisibles[8]"
|
|
|
+ v-if="columnVisibles[9]"
|
|
|
:show-overflow-tooltip="true"
|
|
|
/>
|
|
|
- <!-- <el-table-column
|
|
|
+ <el-table-column
|
|
|
label="操作"
|
|
|
- min-width="240"
|
|
|
- v-if="columnVisibles[7]"
|
|
|
+ width="120"
|
|
|
+ v-if="columnVisibles[10]"
|
|
|
align="center"
|
|
|
fixed="right"
|
|
|
>
|
|
|
<template slot-scope="record">
|
|
|
- <el-button type="primary" icon="el-icon-edit" @click="handleUpdate(record.row)"></el-button>
|
|
|
- <el-button type="danger" icon="el-icon-delete" @click="handleDelete(record.row.id)"></el-button>
|
|
|
+ <el-button type="info" icon="el-icon-view" @click="showDeviceList(record.row)"></el-button>
|
|
|
+ <!-- <el-button type="primary" icon="el-icon-edit" @click="handleUpdate(record.row)"></el-button> -->
|
|
|
+ <!-- <el-button type="danger" icon="el-icon-delete" @click="handleDelete(record.row.id)"></el-button> -->
|
|
|
</template>
|
|
|
- </el-table-column> -->
|
|
|
+ </el-table-column>
|
|
|
</el-table>
|
|
|
<el-button
|
|
|
type="primary"
|
|
@@ -306,6 +327,12 @@
|
|
|
:currentRecord="currentRecord"
|
|
|
ref="heartLog"
|
|
|
/> -->
|
|
|
+ <deviceList
|
|
|
+ :displayVisible="deviceDialogVisible"
|
|
|
+ @formCancel="deviceCancle"
|
|
|
+ :station_code="station_code"
|
|
|
+ ref="deviceList"
|
|
|
+ />
|
|
|
<bmap-model @sendVal="closeBmapDialog" :bmapModelVisible="bmapVisible" />
|
|
|
</div>
|
|
|
</template>
|
|
@@ -316,6 +343,7 @@ import formModel from "./formModel";
|
|
|
import { getToken } from "../../../utils/auth";
|
|
|
import { action } from "@/directive/permission/index.js";
|
|
|
// import heartLogTable from "./heartLogTable";
|
|
|
+import deviceList from "./deviceList";
|
|
|
import bmapModel from "./bmapModel.vue";
|
|
|
export default {
|
|
|
name: "station",
|
|
@@ -325,6 +353,7 @@ export default {
|
|
|
formModel,
|
|
|
bmapModel,
|
|
|
// heartLogTable
|
|
|
+ deviceList
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
@@ -358,8 +387,9 @@ export default {
|
|
|
tableVisible: false,
|
|
|
|
|
|
searchDisplay: true,
|
|
|
-
|
|
|
- columnVisibles: new Array(9).fill(true), //初始为全true,并在每个列标签中使用v-if引用对应列下标的值。列下标从0开始。
|
|
|
+ station_code:'',
|
|
|
+ deviceDialogVisible:false,
|
|
|
+ columnVisibles: new Array(11).fill(true), //初始为全true,并在每个列标签中使用v-if引用对应列下标的值。列下标从0开始。
|
|
|
columnInfos: [], // 所有列的信息
|
|
|
hidenColumnIndexs: [], //初始隐藏的列的下标。列下标从 0 开始
|
|
|
visibleIndexs: [], // 可见列的下标集合
|
|
@@ -377,6 +407,14 @@ export default {
|
|
|
})
|
|
|
},
|
|
|
methods: {
|
|
|
+ showDeviceList(row) {
|
|
|
+ this.deviceDialogVisible = true;
|
|
|
+ this.station_code = row.LOGIN_NAME;
|
|
|
+ // this.authorize = row.authorize;
|
|
|
+ },
|
|
|
+ deviceCancle() {
|
|
|
+ this.deviceDialogVisible = false;
|
|
|
+ },
|
|
|
changeDepart(v) {
|
|
|
this.selectedDepartId = v[v.length - 1];
|
|
|
},
|