Browse Source

修改通道在线/离线描述,避免歧义

pull/30/head
Lawrence 4 years ago
parent
commit
42450af885
  1. 10
      web_src/src/components/channelList.vue

10
web_src/src/components/channelList.vue

@ -44,8 +44,8 @@
<el-table-column label="状态" width="180" align="center"> <el-table-column label="状态" width="180" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<div slot="reference" class="name-wrapper"> <div slot="reference" class="name-wrapper">
<el-tag size="medium" v-if="scope.row.status == 1">在线</el-tag> <el-tag size="medium" v-if="scope.row.status == 1">开启</el-tag>
<el-tag size="medium" type="info" v-if="scope.row.status == 0">离线</el-tag> <el-tag size="medium" type="info" v-if="scope.row.status == 0">关闭</el-tag>
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
@ -99,14 +99,14 @@ export default {
total: 0, total: 0,
beforeUrl: "/videoList", beforeUrl: "/videoList",
isLoging: false, isLoging: false,
autoList: false autoList: true
}; };
}, },
mounted() { mounted() {
this.initData(); this.initData();
if (this.autoList) { if (this.autoList) {
this.updateLooper = setInterval(this.initData, 1500); this.updateLooper = setInterval(this.initData, 5000);
} }
}, },
@ -179,7 +179,7 @@ export default {
// //
sendDevicePush: function (itemData) { sendDevicePush: function (itemData) {
console.log(itemData) console.log(itemData);
let deviceId = this.deviceId; let deviceId = this.deviceId;
this.isLoging = true; this.isLoging = true;
let channelId = itemData.channelId; let channelId = itemData.channelId;

Loading…
Cancel
Save