|
|
|
@ -215,6 +215,7 @@ export default {
|
|
|
|
|
deviceListData: {}, //当前装置信息
|
|
|
|
|
zzchannel: [], //当前装置通道
|
|
|
|
|
checkList: "", //选中的通道
|
|
|
|
|
newcmdzzid: "",
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
mounted() {},
|
|
|
|
@ -223,7 +224,8 @@ export default {
|
|
|
|
|
console.log(tab, event);
|
|
|
|
|
},
|
|
|
|
|
//获取单个设备通道
|
|
|
|
|
getSingleAccess(id) {
|
|
|
|
|
getSingleAccess(id, zzid) {
|
|
|
|
|
this.newcmdzzid = zzid;
|
|
|
|
|
this.selfacilityId = id;
|
|
|
|
|
getChannelListJoggle({ termid: id })
|
|
|
|
|
.then((res) => {
|
|
|
|
@ -252,16 +254,18 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
//查询时间时间表
|
|
|
|
|
inquireRealbtn() {
|
|
|
|
|
console.log(this.selaccess, this.selfacilityId);
|
|
|
|
|
console.log(this.selaccess, this.selfacilityId, this.newcmdzzid);
|
|
|
|
|
selectPhotoTimeGetJoggle({
|
|
|
|
|
channel: this.selaccess,
|
|
|
|
|
termId: this.selfacilityId,
|
|
|
|
|
cmdId: this.newcmdzzid,
|
|
|
|
|
})
|
|
|
|
|
.then((res) => {
|
|
|
|
|
this.$message.success("查询成功");
|
|
|
|
|
console.log(this.shedulenr);
|
|
|
|
|
// this.shedulenr = res.data.list.join("; ")
|
|
|
|
|
this.shedulenr = res.data.list;
|
|
|
|
|
this.loading = false;
|
|
|
|
|
// this.shedulenr = res.data.list;
|
|
|
|
|
// this.loading = false;
|
|
|
|
|
})
|
|
|
|
|
.catch((err) => {
|
|
|
|
|
this.$message.error("查询失败");
|
|
|
|
|