You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

342 lines
9.3 KiB
Vue

2 years ago
<template>
<el-dialog
2 years ago
class="setTimeDialog"
title="时间表设置"
:visible.sync="isShow"
:close-on-click-modal="false"
2 years ago
width="680px"
>
2 years ago
<el-tabs v-model="activeName" @tab-click="handleClick" v-loading="loading">
<el-tab-pane label="查询实际时间表" name="1">
2 years ago
<div class="flexnr">
<div class="w8">通道:</div>
<el-select v-model="selaccess" placeholder="请选择" class="mr20">
<el-option
v-for="item in accesslist"
2 years ago
:key="item.channelid"
:label="item.channelname"
:value="item.channelid"
></el-option>
2 years ago
</el-select>
<el-button type="primary" @click="inquirebtn()"></el-button>
</div>
<div class="flexno bt30">
<div class="w8">时间表:</div>
<div class="w80 flexonly">
<el-tag
class="mr10 mt10"
size="mini"
v-for="(val, index) in this.shedulenr"
:key="index"
>{{ val }}</el-tag
>
2 years ago
</div>
</div>
</el-tab-pane>
<el-tab-pane label="设置时间表" name="2">
<div class="deviceTable">
<el-table
ref="multipleTable"
:data="deviceTableData"
tooltip-effect="dark"
style="width: 100%"
height="calc(100% - 40px)"
>
2 years ago
<el-table-column label="时间表类型" show-overflow-tooltip>
<template>时间表类型</template>
</el-table-column>
<el-table-column
prop="startTime"
label="开始时间"
show-overflow-tooltip
></el-table-column>
<el-table-column
prop="endTime"
label="结束时间"
show-overflow-tooltip
></el-table-column>
<el-table-column
prop="span"
label="间隔(分)"
show-overflow-tooltip
></el-table-column>
<el-table-column
prop="remark"
label="备注"
show-overflow-tooltip
></el-table-column>
2 years ago
<el-table-column fixed="right" label="操作">
2 years ago
<template slot-scope="scope">
<el-button type="text" @click.native.stop="handleSet(scope.row)"
>设置</el-button
>
2 years ago
</template>
</el-table-column>
</el-table>
<div class="pageNation">
<el-pagination
:current-page="page"
:page-size="pageSize"
layout=" prev, pager, next, jumper,total"
@current-change="handleCurrentChange"
:total="total"
background
>
2 years ago
</el-pagination>
</div>
</div>
<el-dialog
2 years ago
class="setRoadDialog"
title="设置"
:visible.sync="isShowset"
:close-on-click-modal="false"
2 years ago
width="480px"
append-to-body
>
2 years ago
<el-form
label-position="left"
ref="formInfo"
label-width="100px"
v-loading="loading"
>
2 years ago
<el-form-item label="通道:">
<el-tree
:data="listnr"
show-checkbox
:props="defaultProps"
ref="tree"
node-key="id"
:default-expand-all="true"
></el-tree>
2 years ago
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button @click="isShowset = false"> </el-button>
<el-button type="primary" @click="submitForm()"> </el-button>
</div>
</el-dialog>
</el-tab-pane>
</el-tabs>
</el-dialog>
</template>
<script>
import {
getChannelListJoggle,
getSchedulenr,
getScheduleRulelListJoggle,
setScheduleRulel,
getScheduleRulelAccessList,
} from "@/utils/api/index";
2 years ago
export default {
props: {
title: String,
2 years ago
},
data() {
return {
2 years ago
loading: true,
2 years ago
isShow: false,
isShowset: false,
activeName: "1", //选项卡
accesslist: [], //通道选择器
selaccess: "", //选中的通道
shedulenr: [], //查询的时间表
deviceTableData: [], //时间表-表格
2 years ago
page: 1, // 当前页数
pageSize: 10, // 每页数量
total: 0, //总条数
listnr: [], //通道树结构
2 years ago
defaultProps: {
children: "list",
label: "name",
2 years ago
},
selfacilityId: "", //所选设备id
ruleid: "", //线路id
2 years ago
parmsList: [], //所选装置下通道参数
2 years ago
scheduleid: 0, //所选时间表id
2 years ago
};
},
mounted() {},
2 years ago
methods: {
handleClick(tab, event) {
console.log(tab, event);
},
//获取单个设备通道
getSingleAccess(id) {
this.selfacilityId = id;
getChannelListJoggle({ termid: id })
.then((res) => {
this.accesslist = res.data.list;
2 years ago
this.selaccess = res.data.list[0].channelid;
})
.catch((err) => {});
2 years ago
},
//查询时间表
inquirebtn() {
getSchedulenr({
channelid: this.selaccess,
terminalid: this.selfacilityId,
2 years ago
})
.then((res) => {
this.$message.success("查询成功");
// this.shedulenr = res.data.list.join("; ")
this.shedulenr = res.data.list;
2 years ago
this.loading = false;
})
.catch((err) => {
this.$message.error("查询失败");
});
2 years ago
},
//获取线路列表数据
deviceList() {
getScheduleRulelListJoggle({
pageindex: this.page,
pagesize: this.pageSize,
2 years ago
})
.then((res) => {
this.deviceTableData = res.data.list;
this.total = res.data.total;
2 years ago
this.loading = false;
})
.catch((err) => {});
2 years ago
},
//点击分页
handleCurrentChange(val) {
this.page = val;
this.deviceList();
},
//设置-获取所有通道
handleSet(val) {
2 years ago
this.loading = true;
2 years ago
this.scheduleid = val.id;
this.isShowset = true;
getScheduleRulelAccessList({ termid: this.selfacilityId })
.then((res) => {
this.listnr = res.data.list;
2 years ago
this.loading = false;
})
.catch((err) => {});
2 years ago
},
//获取所选值
getCheckedNodes() {
2 years ago
this.parmsList = [];
const checkedNodes = this.$refs.tree.getCheckedNodes(false, true); //若节点可被选择,则返回目前被选中的节点所组成的数组
//const checkedParam = []; //定义选中的数组
let index = -1;
2 years ago
// console.log(checkedNodes);
if (checkedNodes.length !== 0) {
checkedNodes.forEach((item) => {
// 父节点结构的情况 判断是否有list子节点如果有定义数组结构
if (item.list !== undefined) {
index++;
this.parmsList[index] = {
//name: item.name,
termid: item.id,
channelidlist: [],
};
} else {
//如果没有list 把子节点id push到 定义的数组channelidlist中
this.parmsList[index].channelidlist.push(item.id);
}
//通过bsManufacturer 判断是否是 线路 获取线路id
2 years ago
// if (item.bsManufacturer !== undefined) {
// this.ruleid = item.id;
// console.log(this.ruleid);
// }
});
}
2 years ago
// console.log(this.parmsList);
//遍历删除没有channelichilddlist的数据只留下通道
this.parmsList = this.parmsList
.filter((item) => item.channelidlist.length !== 0)
.map((item) => {
return {
termid: item.termid,
channelidlist: item.channelidlist,
};
});
2 years ago
// console.log(this.parmsList);
return this.parmsList;
2 years ago
},
// 保存确定操作
submitForm() {
2 years ago
this.getCheckedNodes();
if (this.parmsList.length == 0)
return this.$message.error("通道不能为空");
2 years ago
setScheduleRulel({ ruleid: this.scheduleid, list: this.parmsList })
.then((res) => {
this.isShowset = false;
this.$message.success("添加成功");
this.deviceList();
})
.catch((err) => {
this.$message.error("添加失败");
});
2 years ago
},
display() {
this.isShow = true;
2 years ago
},
hide() {
this.isShow = false;
},
},
2 years ago
};
</script>
<style lang="less">
2 years ago
.setTimeDialog {
2 years ago
.el-tabs__content {
height: 280px;
overflow: auto;
.el-tab-pane {
height: calc(100% - 16px);
}
}
2 years ago
.flexonly {
display: flex;
flex-wrap: wrap;
}
.flexno {
display: flex;
2 years ago
margin-top: 24px;
padding: 0px 8px;
2 years ago
}
.flexnr {
display: flex;
align-items: center;
2 years ago
margin-top: 16px;
padding: 0px 8px;
2 years ago
}
.mt10 {
2 years ago
margin-bottom: 10px;
2 years ago
}
.mr10 {
margin-right: 10px;
}
.w8 {
width: 8%;
}
.w80 {
width: 80%;
}
.mr20 {
margin-right: 20px;
}
.bt30 {
margin-bottom: 30px;
}
.deviceTable {
padding: 16px 8px 0 8px;
2 years ago
height: calc(100% - 16px);
}
}
.setRoadDialog {
.el-dialog__body {
height: 280px;
overflow: auto;
.el-form {
height: 100%;
//background: #fcc;
}
2 years ago
}
2 years ago
}
2 years ago
</style>