|
|
|
|
<template>
|
|
|
|
|
<el-dialog
|
|
|
|
|
class="photoSetDialog"
|
|
|
|
|
title="设置"
|
|
|
|
|
:visible.sync="isShow"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
width="1020px"
|
|
|
|
|
>
|
|
|
|
|
<div class="setTimeTd">
|
|
|
|
|
<h3>时间表规则</h3>
|
|
|
|
|
<div class="flexTimeGz">
|
|
|
|
|
<p class="timeGz" v-for="(val, index) in ruleSchedule" :key="index">
|
|
|
|
|
<span>{{ val.startTime }}</span> ~
|
|
|
|
|
<span>{{ val.endTime }}</span>
|
|
|
|
|
间隔:<b>{{ val.span }}分钟</b>
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
<h3>设置通道</h3>
|
|
|
|
|
<div class="chooseTDBox">
|
|
|
|
|
<label>选择通道:</label>
|
|
|
|
|
<div class="checkBox">
|
|
|
|
|
<el-radio-group v-model="checkedAisle" @change="handleChange">
|
|
|
|
|
<el-radio
|
|
|
|
|
:label="val.id"
|
|
|
|
|
border
|
|
|
|
|
v-for="val in aisleList"
|
|
|
|
|
:key="val.id"
|
|
|
|
|
>{{ val.name }}</el-radio
|
|
|
|
|
>
|
|
|
|
|
</el-radio-group>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="flexnr" v-loading="loading" v-if="newzzList.length !== 0">
|
|
|
|
|
<el-tree
|
|
|
|
|
:data="newzzList"
|
|
|
|
|
show-checkbox
|
|
|
|
|
:props="defaultProps"
|
|
|
|
|
ref="tree"
|
|
|
|
|
node-key="id"
|
|
|
|
|
:default-expand-all="true"
|
|
|
|
|
@check="getCheckedNodes"
|
|
|
|
|
>
|
|
|
|
|
<span class="custom-tree-node" slot-scope="{ node, data }">
|
|
|
|
|
<span>{{ data.name }}</span>
|
|
|
|
|
<span v-if="data.list == ''" class="zzdown"> 装置下发中 </span>
|
|
|
|
|
</span>
|
|
|
|
|
</el-tree>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="flexnr" v-else>
|
|
|
|
|
<p class="nochannel">暂无通道</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
|
<!-- <el-button @click="getCheckedNodes">获取</el-button> -->
|
|
|
|
|
<el-button @click="isShow = false">取 消</el-button>
|
|
|
|
|
<el-button type="primary" @click="submitForm()">确 定</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
</template>
|
|
|
|
|
<script>
|
|
|
|
|
import {
|
|
|
|
|
setScheduleRulel,
|
|
|
|
|
getScheduleRulelAccessList,
|
|
|
|
|
getTermListByChannelJoggle,
|
|
|
|
|
} from "@/utils/api/index";
|
|
|
|
|
export default {
|
|
|
|
|
props: {
|
|
|
|
|
title: String,
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
contentStyle: { width: "90px" },
|
|
|
|
|
isShow: false,
|
|
|
|
|
selid: 0, //选中时间表id
|
|
|
|
|
ruleSchedule: [], //时间表规则
|
|
|
|
|
checkedAisle: "", //选中通道数据
|
|
|
|
|
aisleList: [], //通道数据内容
|
|
|
|
|
listnr: [], //通道树状结构
|
|
|
|
|
defaultProps: {
|
|
|
|
|
children: "list",
|
|
|
|
|
label: "name",
|
|
|
|
|
},
|
|
|
|
|
termidArr: [],
|
|
|
|
|
ruleid: "",
|
|
|
|
|
parmsList: [], //选中的通道
|
|
|
|
|
multipleSelection: [],
|
|
|
|
|
//新是数据结构参数
|
|
|
|
|
newzzList: [],
|
|
|
|
|
zzListCheck: [],
|
|
|
|
|
loading: false,
|
|
|
|
|
|
|
|
|
|
//全选
|
|
|
|
|
checkAll: true,
|
|
|
|
|
isIndeterminate: true, //全选设置默认选中
|
|
|
|
|
timer: null,
|
|
|
|
|
termidArrNum: -1,
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
mounted() {},
|
|
|
|
|
methods: {
|
|
|
|
|
//判断
|
|
|
|
|
getdataform(val) {
|
|
|
|
|
this.selid = val.id;
|
|
|
|
|
this.ruleSchedule = val.list;
|
|
|
|
|
console.log(this.ruleSchedule, "时间规则");
|
|
|
|
|
this.getlistnr();
|
|
|
|
|
},
|
|
|
|
|
//获取所有通道
|
|
|
|
|
getlistnr() {
|
|
|
|
|
getScheduleRulelAccessList({})
|
|
|
|
|
.then((res) => {
|
|
|
|
|
this.listnr = res.data.list;
|
|
|
|
|
this.aisleList = res.data.channellist;
|
|
|
|
|
})
|
|
|
|
|
.catch((err) => {});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
//选择通道
|
|
|
|
|
handleChange() {
|
|
|
|
|
console.log(this.checkedAisle);
|
|
|
|
|
this.loading = true;
|
|
|
|
|
getTermListByChannelJoggle({
|
|
|
|
|
id: this.checkedAisle,
|
|
|
|
|
})
|
|
|
|
|
.then((res) => {
|
|
|
|
|
console.log(res);
|
|
|
|
|
this.newzzList = res.data.list;
|
|
|
|
|
console.log(this.listnr);
|
|
|
|
|
console.log(this.newzzList);
|
|
|
|
|
console.log(this.zzListCheck);
|
|
|
|
|
this.loading = false;
|
|
|
|
|
})
|
|
|
|
|
.catch((err) => {});
|
|
|
|
|
},
|
|
|
|
|
handleCheckBox() {
|
|
|
|
|
console.log(this.zzListCheck);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
//获取所选值
|
|
|
|
|
getCheckedNodes() {
|
|
|
|
|
this.parmsList = [];
|
|
|
|
|
const checkedNodes = this.$refs.tree.getCheckedNodes(false, true); //若节点可被选择,则返回目前被选中的节点所组成的数组
|
|
|
|
|
//const checkedParam = []; //定义选中的数组
|
|
|
|
|
let index = -1;
|
|
|
|
|
console.log(checkedNodes);
|
|
|
|
|
if (checkedNodes.length !== 0) {
|
|
|
|
|
checkedNodes.forEach((item) => {
|
|
|
|
|
if (item.list == undefined) {
|
|
|
|
|
console.log("1111111111111");
|
|
|
|
|
console.log(item);
|
|
|
|
|
this.termidArr.push(item.id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 父节点结构的情况 判断是否有list子节点,如果有定义数组结构
|
|
|
|
|
// if (item.list !== undefined) {
|
|
|
|
|
// index++;
|
|
|
|
|
// this.parmsList[index] = {
|
|
|
|
|
// //name: item.name,
|
|
|
|
|
// termid: item.id,
|
|
|
|
|
// channelidlist: [],
|
|
|
|
|
// };
|
|
|
|
|
// console.log(item);
|
|
|
|
|
// } else {
|
|
|
|
|
// console.log("aaaaaaaaaaaaaa");
|
|
|
|
|
// //如果没有list 把子节点id push到 定义的数组channelidlist中
|
|
|
|
|
// this.parmsList[index].channelidlist.push(item.id);
|
|
|
|
|
// }
|
|
|
|
|
//通过bsManufacturer 判断是否是 线路 获取线路id
|
|
|
|
|
// if (item.bsManufacturer !== undefined) {
|
|
|
|
|
// this.ruleid = item.id;
|
|
|
|
|
// console.log(this.ruleid);
|
|
|
|
|
// }
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
// console.log(this.parmsList);
|
|
|
|
|
//遍历删除没有channelichilddlist的数据,只留下通道
|
|
|
|
|
this.parmsList = this.parmsList
|
|
|
|
|
.filter((item) => item.channelidlist.length !== 0)
|
|
|
|
|
.map((item) => {
|
|
|
|
|
return {
|
|
|
|
|
termid: this.termidArr[0],
|
|
|
|
|
channelidlist: [this.checkedAisle],
|
|
|
|
|
};
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
this.termidArr = Array.from(new Set(this.termidArr));
|
|
|
|
|
console.log(this.termidArr);
|
|
|
|
|
console.log(this.parmsList);
|
|
|
|
|
return this.parmsList;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// 保存确定操作
|
|
|
|
|
submitForm() {
|
|
|
|
|
console.log(this.termidArr);
|
|
|
|
|
this.timer = window.setInterval(() => {
|
|
|
|
|
this.termidArrNum++;
|
|
|
|
|
console.log(this.termidArrNum);
|
|
|
|
|
if (this.termidArrNum < this.termidArr.length) {
|
|
|
|
|
this.sureSum();
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.success("添加成功");
|
|
|
|
|
this.isShow = false;
|
|
|
|
|
this.$parent.deviceList();
|
|
|
|
|
clearTimeout(this.timer);
|
|
|
|
|
}
|
|
|
|
|
}, 1000);
|
|
|
|
|
},
|
|
|
|
|
//时间表
|
|
|
|
|
sureSum() {
|
|
|
|
|
setScheduleRulel({
|
|
|
|
|
list: [
|
|
|
|
|
{
|
|
|
|
|
termid: this.termidArr[this.termidArrNum],
|
|
|
|
|
channelidlist: [this.checkedAisle],
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
scheduleid: this.selid,
|
|
|
|
|
})
|
|
|
|
|
.then((res) => {
|
|
|
|
|
// this.$message.success("添加成功");
|
|
|
|
|
})
|
|
|
|
|
.catch((err) => {
|
|
|
|
|
this.$message.error("添加失败");
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
display() {
|
|
|
|
|
this.isShow = true;
|
|
|
|
|
},
|
|
|
|
|
hide() {
|
|
|
|
|
this.isShow = false;
|
|
|
|
|
clearTimeout(this.timer);
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
<style lang="less">
|
|
|
|
|
.photoSetDialog {
|
|
|
|
|
.el-dialog__body {
|
|
|
|
|
// height: 360px;
|
|
|
|
|
// overflow: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flexnr {
|
|
|
|
|
height: 360px;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
border: 1px solid #eee;
|
|
|
|
|
padding: 16px;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
.dybox {
|
|
|
|
|
h4 {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #333;
|
|
|
|
|
line-height: 24px;
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
}
|
|
|
|
|
.xlbox {
|
|
|
|
|
h4 {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #333;
|
|
|
|
|
line-height: 24px;
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
}
|
|
|
|
|
margin-left: 16px;
|
|
|
|
|
.zzbox {
|
|
|
|
|
h4 {
|
|
|
|
|
}
|
|
|
|
|
.el-checkbox-group {
|
|
|
|
|
// display: flex;
|
|
|
|
|
// flex-direction: column;
|
|
|
|
|
margin-left: 22px;
|
|
|
|
|
.el-checkbox {
|
|
|
|
|
line-height: 28px;
|
|
|
|
|
//width: 196px;
|
|
|
|
|
.el-checkbox__label {
|
|
|
|
|
b {
|
|
|
|
|
margin-left: 18px;
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.nochannel {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.w50 {
|
|
|
|
|
width: 50px;
|
|
|
|
|
}
|
|
|
|
|
.setTimeTd {
|
|
|
|
|
h3 {
|
|
|
|
|
margin: 8px 0px;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
line-height: 24px;
|
|
|
|
|
}
|
|
|
|
|
.flexTimeGz {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
.timeGz {
|
|
|
|
|
line-height: 32px;
|
|
|
|
|
margin-right: 16px;
|
|
|
|
|
b {
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
color: #409eff;
|
|
|
|
|
}
|
|
|
|
|
span {
|
|
|
|
|
margin: 0px 8px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.setCheckbox {
|
|
|
|
|
.el-table__header .el-table-column--selection .cell .el-checkbox:after {
|
|
|
|
|
color: #333;
|
|
|
|
|
content: "全选";
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
margin-left: 12px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.chooseTDBox {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
label {
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.treeTable {
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|