2022-06-13 10:45:15 +08:00
|
|
|
<template>
|
2022-06-13 14:31:31 +08:00
|
|
|
<div class="trainFixedPath" :style="{ height: height+'px' }">
|
|
|
|
<!-- {{ '列车固定径路' }} -->
|
|
|
|
<div class="trainFixedPathL">
|
2022-06-14 16:36:40 +08:00
|
|
|
<terminal-station-list ref="terminalStationList" @loadStationData="loadStationData" />
|
2022-06-13 14:31:31 +08:00
|
|
|
</div>
|
|
|
|
<div class="trainFixedPathR">
|
|
|
|
<div class="trainFixedPathRMenu">
|
2022-06-13 16:02:33 +08:00
|
|
|
<div class="trainFixedPathRMenuL">
|
2022-06-15 17:38:23 +08:00
|
|
|
<el-button class="trainFixedPathButton" size="small" @click="addRunplan">增加</el-button>
|
2022-06-13 16:02:33 +08:00
|
|
|
<el-button class="trainFixedPathButton" size="small">批量增加</el-button>
|
|
|
|
<el-button class="trainFixedPathButton" size="small">基本图导入</el-button>
|
|
|
|
<el-button class="trainFixedPathButton" size="small">基本图申请</el-button>
|
|
|
|
<el-button class="trainFixedPathButton" size="small">其他站导入</el-button>
|
|
|
|
<el-button class="trainFixedPathButton" size="small">删除</el-button>
|
|
|
|
<el-button class="trainFixedPathButton" size="small">全部清空</el-button>
|
|
|
|
<el-button class="trainFixedPathButton" size="small">修改</el-button>
|
|
|
|
<el-button class="trainFixedPathButton" size="small">查找</el-button>
|
|
|
|
<el-button class="trainFixedPathButton" size="small">导出excel</el-button>
|
|
|
|
<el-button class="trainFixedPathButton" size="small">流程批量设置</el-button>
|
|
|
|
</div>
|
|
|
|
<div class="trainFixedPathRMenuR">
|
|
|
|
<span class="trainFixedPathRVer">版本号</span>
|
2022-06-16 15:20:12 +08:00
|
|
|
<el-button class="trainFixedPathButton" size="small" @click="exportData">备份</el-button>
|
2022-06-16 16:36:18 +08:00
|
|
|
<el-button class="trainFixedPathButton" size="small" @click="releaseTrainFixedPath">更新至生效区</el-button>
|
|
|
|
<el-button class="trainFixedPathButton trainFixedPathUpload" size="small">
|
|
|
|
导入
|
|
|
|
<input ref="files" type="file" class="file_box" accept=".json, application/json" @change="importf">
|
|
|
|
</el-button>
|
2022-06-13 16:02:33 +08:00
|
|
|
<el-button class="trainFixedPathButton" size="small">比较</el-button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="trainFixedPathRTable" :style="{ height: (height-40)+'px' }">
|
|
|
|
<el-table
|
|
|
|
id="trainFixedPathTableIn"
|
|
|
|
ref="trainFixedPathTableIn"
|
|
|
|
:data="tableData"
|
|
|
|
border
|
|
|
|
height="600px"
|
|
|
|
highlight-current-row
|
|
|
|
style="border:1px #ccc solid;"
|
|
|
|
>
|
|
|
|
<!-- @cell-click="selectedTripNumber" -->
|
|
|
|
<!-- @current-change="handleCurrentChange" -->
|
|
|
|
<el-table-column
|
|
|
|
type="index"
|
|
|
|
label="序号"
|
|
|
|
width="50"
|
|
|
|
/>
|
|
|
|
<el-table-column
|
2022-06-14 16:36:40 +08:00
|
|
|
prop="stationCode"
|
2022-06-13 16:02:33 +08:00
|
|
|
label="车站"
|
|
|
|
width="100"
|
|
|
|
/>
|
|
|
|
<el-table-column
|
2022-06-14 16:36:40 +08:00
|
|
|
prop="arriveTripNumber"
|
2022-06-13 16:02:33 +08:00
|
|
|
label="到达车次"
|
|
|
|
width="90"
|
|
|
|
/>
|
|
|
|
<el-table-column
|
|
|
|
prop="arriveTime"
|
|
|
|
label="到达时间"
|
|
|
|
width="80"
|
|
|
|
/>
|
|
|
|
<el-table-column
|
2022-06-14 16:36:40 +08:00
|
|
|
prop="departTripNumber"
|
2022-06-13 16:02:33 +08:00
|
|
|
label="出发车次"
|
|
|
|
width="90"
|
|
|
|
/>
|
|
|
|
<el-table-column
|
2022-06-14 16:36:40 +08:00
|
|
|
prop="departTime"
|
2022-06-13 16:02:33 +08:00
|
|
|
label="出发时间"
|
|
|
|
width="80"
|
|
|
|
/>
|
|
|
|
<el-table-column
|
2022-06-14 16:36:40 +08:00
|
|
|
prop="trackSectionCode"
|
2022-06-13 16:02:33 +08:00
|
|
|
label="股道"
|
|
|
|
width="85"
|
|
|
|
/>
|
|
|
|
<el-table-column
|
2022-06-14 16:36:40 +08:00
|
|
|
prop="departStationCode"
|
2022-06-13 16:02:33 +08:00
|
|
|
label="后方车站"
|
2022-06-14 16:36:40 +08:00
|
|
|
width="110"
|
2022-06-13 16:02:33 +08:00
|
|
|
/>
|
|
|
|
<el-table-column
|
2022-06-14 16:36:40 +08:00
|
|
|
prop="arriveDirectionCode"
|
2022-06-13 16:02:33 +08:00
|
|
|
label="入口"
|
2022-06-14 16:36:40 +08:00
|
|
|
width="130"
|
2022-06-13 16:02:33 +08:00
|
|
|
/>
|
|
|
|
<el-table-column
|
2022-06-14 16:36:40 +08:00
|
|
|
prop="departDirectionCode"
|
2022-06-13 16:02:33 +08:00
|
|
|
label="出口"
|
2022-06-14 16:36:40 +08:00
|
|
|
width="130"
|
2022-06-13 16:02:33 +08:00
|
|
|
/>
|
|
|
|
<el-table-column
|
2022-06-14 16:36:40 +08:00
|
|
|
prop="arriveStationCode"
|
2022-06-13 16:02:33 +08:00
|
|
|
label="前方车站"
|
2022-06-14 16:36:40 +08:00
|
|
|
width="110"
|
2022-06-13 16:02:33 +08:00
|
|
|
/>
|
|
|
|
<el-table-column
|
|
|
|
prop="RVType"
|
|
|
|
label="技术停点"
|
|
|
|
width="70"
|
|
|
|
/>
|
|
|
|
<el-table-column
|
|
|
|
prop="trainInspection"
|
|
|
|
label="列检"
|
|
|
|
width="40"
|
|
|
|
>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-checkbox v-model="scope.row.trainInspection" />
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
prop="crossZero"
|
|
|
|
label="交零"
|
|
|
|
width="40"
|
|
|
|
>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-checkbox v-model="scope.row.crossZero" />
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
prop="columnEnd"
|
|
|
|
label="列尾"
|
|
|
|
width="40"
|
|
|
|
>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-checkbox v-model="scope.row.columnEnd" />
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
prop="locomotive"
|
|
|
|
label="机车"
|
|
|
|
width="40"
|
|
|
|
>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-checkbox v-model="scope.row.locomotive" />
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
prop="goodsInspection"
|
|
|
|
label="货检"
|
|
|
|
width="40"
|
|
|
|
>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-checkbox v-model="scope.row.goodsInspection" />
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
prop="multiplyDown"
|
|
|
|
label="乘降"
|
|
|
|
width="40"
|
|
|
|
>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-checkbox v-model="scope.row.multiplyDown" />
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
prop="sailUpstream"
|
|
|
|
label="上水"
|
|
|
|
width="40"
|
|
|
|
>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-checkbox v-model="scope.row.sailUpstream" />
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
prop="pickUp"
|
|
|
|
label="摘挂"
|
|
|
|
width="40"
|
|
|
|
>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-checkbox v-model="scope.row.pickUp" />
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
prop="transfer"
|
|
|
|
label="换乘"
|
|
|
|
width="40"
|
|
|
|
>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-checkbox v-model="scope.row.transfer" />
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
prop="handling"
|
|
|
|
label="装卸"
|
|
|
|
width="40"
|
|
|
|
>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-checkbox v-model="scope.row.handling" />
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
prop="pollution"
|
|
|
|
label="吸污"
|
|
|
|
width="40"
|
|
|
|
>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-checkbox v-model="scope.row.pollution" />
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
prop="crossing"
|
|
|
|
label="道口"
|
|
|
|
width="40"
|
|
|
|
>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-checkbox v-model="scope.row.crossing" />
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
prop="trainNumber"
|
|
|
|
label="车号"
|
|
|
|
width="40"
|
|
|
|
>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-checkbox v-model="scope.row.trainNumber" />
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
prop="affair"
|
|
|
|
label="站务"
|
|
|
|
width="40"
|
|
|
|
>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-checkbox v-model="scope.row.affair" />
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
2022-06-13 14:31:31 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
2022-06-16 10:20:33 +08:00
|
|
|
<add-runplan ref="addRunplan" @noticeInfo="noticeInfo" />
|
2022-06-13 10:45:15 +08:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script>
|
2022-06-16 15:20:12 +08:00
|
|
|
import { now} from '@/utils/date';
|
2022-06-13 17:44:07 +08:00
|
|
|
import TerminalStationList from './terminalStationList';
|
2022-06-15 17:38:23 +08:00
|
|
|
import AddRunplan from './addRunplan';
|
2022-06-14 16:36:40 +08:00
|
|
|
import { copyAssign } from '@/utils/index';
|
2022-06-16 16:36:18 +08:00
|
|
|
import {menuOperate, commitOperate} from '@/jmapNew/theme/components/utils/menuOperate';
|
2022-06-13 10:45:15 +08:00
|
|
|
export default {
|
2022-06-13 14:31:31 +08:00
|
|
|
name:'TrainFixedPath',
|
2022-06-13 17:44:07 +08:00
|
|
|
components: {
|
2022-06-15 17:38:23 +08:00
|
|
|
TerminalStationList,
|
|
|
|
AddRunplan
|
2022-06-13 17:44:07 +08:00
|
|
|
},
|
2022-06-13 10:45:15 +08:00
|
|
|
data() {
|
|
|
|
return {
|
2022-06-13 16:02:33 +08:00
|
|
|
height: this.$store.state.app.height - 61,
|
2022-06-14 16:36:40 +08:00
|
|
|
currentStationCode:'',
|
|
|
|
tableData:[]
|
2022-06-13 10:45:15 +08:00
|
|
|
};
|
2022-06-14 14:39:07 +08:00
|
|
|
},
|
2022-06-14 16:36:40 +08:00
|
|
|
watch:{
|
|
|
|
'$store.state.socket.railCtcStationManageRpChange': function (val) {
|
|
|
|
this.handleData();
|
|
|
|
}
|
|
|
|
},
|
2022-06-14 14:39:07 +08:00
|
|
|
methods:{
|
|
|
|
loadStation() {
|
|
|
|
this.$refs.terminalStationList.loadStation();
|
|
|
|
},
|
|
|
|
loadStationData(stationCode) {
|
2022-06-14 16:36:40 +08:00
|
|
|
this.currentStationCode = stationCode;
|
|
|
|
this.handleData();
|
|
|
|
},
|
2022-06-15 17:38:23 +08:00
|
|
|
addRunplan() {
|
2022-06-16 14:18:04 +08:00
|
|
|
this.$refs.addRunplan.doShow({stationCode:this.currentStationCode});
|
2022-06-15 17:38:23 +08:00
|
|
|
},
|
2022-06-16 10:20:33 +08:00
|
|
|
noticeInfo() {
|
|
|
|
this.$emit('noticeInfo');
|
|
|
|
},
|
2022-06-16 15:20:12 +08:00
|
|
|
exportData() {
|
|
|
|
const currentDay = now().replace(/(-|:)|\s/g, '');
|
|
|
|
const content = new Blob(
|
|
|
|
[JSON.stringify({stationCode:this.currentStationCode, runPlanParamList:this.tableData})]
|
|
|
|
);
|
|
|
|
const urlObject = window.URL || window.webkitURL || window;
|
|
|
|
const url = urlObject.createObjectURL(content);
|
|
|
|
const el = document.createElement('a');
|
|
|
|
el.href = url;
|
|
|
|
el.download = `TRAIN_WAY_LIST-${currentDay}.json`;
|
|
|
|
el.click();
|
|
|
|
urlObject.revokeObjectURL(url);
|
|
|
|
},
|
2022-06-16 16:36:18 +08:00
|
|
|
importf() {
|
|
|
|
const that = this;
|
|
|
|
setTimeout(() => {
|
|
|
|
const obj = this.$refs.files;
|
|
|
|
if (!obj.files) return;
|
|
|
|
const f = obj.files[0];
|
|
|
|
if (f.type != 'application/json') {
|
|
|
|
this.$message.error('请上传json格式的文件');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const loading = this.$loading({
|
|
|
|
lock: true,
|
|
|
|
text: '正在导入中...',
|
|
|
|
spinner: 'el-icon-loading',
|
|
|
|
background: 'rgba(0, 0, 0, 0.7)'
|
|
|
|
});
|
|
|
|
const reader = new FileReader();
|
|
|
|
reader.readAsText(f, 'utf-8');
|
|
|
|
reader.onload = function(e) {
|
|
|
|
const data = e.target.result;
|
|
|
|
that.formDisplay = true;
|
|
|
|
const json = JSON.parse(data);
|
|
|
|
if (json && json.runPlanParamList && json.stationCode) {
|
|
|
|
if (json.runPlanParamList.length > 0) {
|
|
|
|
const param = {stationCode:json.stationCode, runPlanParamList:json.runPlanParamList};
|
|
|
|
commitOperate(menuOperate.CTC.importTrainFixedPath, param, 3).then(({valid})=>{
|
|
|
|
if (valid) {
|
|
|
|
loading.close();
|
|
|
|
that.$message.success('导入成功!');
|
|
|
|
}
|
|
|
|
}).catch(() => {
|
|
|
|
loading.close();
|
|
|
|
that.$message.error('导入失败');
|
|
|
|
});
|
|
|
|
|
|
|
|
} else {
|
|
|
|
that.$message.error('该文件数据为空');
|
|
|
|
loading.close();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
that.$message.error('该文件数据结构不正确');
|
|
|
|
loading.close();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
});
|
|
|
|
},
|
|
|
|
releaseTrainFixedPath() {
|
|
|
|
const that = this;
|
|
|
|
commitOperate(menuOperate.CTC.releaseTrainFixedPath, { stationCode:this.currentStationCode}, 3).then(({valid})=>{
|
|
|
|
if (valid) {
|
|
|
|
that.$message.success('发布成功!');
|
|
|
|
}
|
|
|
|
}).catch(() => {
|
|
|
|
that.$message.error('发布失败');
|
|
|
|
});
|
|
|
|
},
|
2022-06-14 16:36:40 +08:00
|
|
|
handleData() {
|
|
|
|
this.tableData = [];
|
|
|
|
const railCtcStationManageRpMsg = copyAssign({}, this.$store.state.socket.railCtcStationManageRpMsg);
|
|
|
|
this.tableData = Object.values(railCtcStationManageRpMsg).filter(data=>{
|
|
|
|
return data.stationCode == this.currentStationCode;
|
|
|
|
});
|
|
|
|
// stationCode 车站编码
|
|
|
|
// trackSectionCode 运行计划的默认股道
|
|
|
|
// arriveTripNumber 到达车次
|
|
|
|
// departTripNumber 出发车次
|
|
|
|
// arriveTime 到达时间
|
|
|
|
// departTime 出发时间
|
|
|
|
// arriveDirectionCode 入口
|
|
|
|
// departDirectionCode 出口
|
|
|
|
// arriveStationCode 到达车站
|
|
|
|
// departStationCode 出发车站
|
|
|
|
//
|
2022-06-14 14:39:07 +08:00
|
|
|
}
|
2022-06-13 10:45:15 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|
2022-06-13 14:31:31 +08:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
.trainFixedPath{
|
|
|
|
padding-left:200px;
|
|
|
|
}
|
|
|
|
.trainFixedPathL{
|
|
|
|
width: 200px;
|
|
|
|
height: 100%;
|
|
|
|
position: absolute;
|
|
|
|
border-right: 1px #797979 solid;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
.trainFixedPathR{
|
|
|
|
padding:0px 5px 0px 5px;
|
|
|
|
height: 100%;
|
|
|
|
background: #d8d8d8;
|
|
|
|
}
|
|
|
|
.trainFixedPathRMenu{
|
|
|
|
background:#eeeeee;
|
|
|
|
display: inline-block;
|
|
|
|
width:100%;
|
|
|
|
padding:5px;
|
|
|
|
border-left: 1px #707070 solid;
|
|
|
|
}
|
|
|
|
.trainFixedPathRMenuL{display: inline-block;}
|
|
|
|
.trainFixedPathRMenuR{float:right;display: inline-block;}
|
2022-06-13 16:02:33 +08:00
|
|
|
.trainFixedPathRVer{
|
|
|
|
font-size: 14px;
|
|
|
|
margin-right: 10px;
|
|
|
|
color: #87a7c9;
|
|
|
|
}
|
|
|
|
.trainFixedPathButton{
|
|
|
|
background-image: linear-gradient(#ffffff,#d8d8d8);
|
|
|
|
color: #000;
|
|
|
|
padding: 5px 10px;
|
|
|
|
border: 1px #737373 solid;
|
|
|
|
}
|
2022-06-14 11:30:15 +08:00
|
|
|
.trainFixedPathButton:hover{
|
|
|
|
background-image: linear-gradient(#efffff,#a8daf3);
|
|
|
|
}
|
2022-06-13 16:02:33 +08:00
|
|
|
.trainFixedPathRTable{background:#a9a9a9;border-left: 1px #707070 solid;}
|
2022-06-16 16:36:18 +08:00
|
|
|
.trainFixedPathUpload {
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
cursor: pointer;
|
|
|
|
input {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
opacity: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 0;
|
|
|
|
}
|
|
|
|
}
|
2022-06-13 16:02:33 +08:00
|
|
|
</style>
|
|
|
|
<style lang="scss">
|
|
|
|
#trainFixedPathTableIn.el-table td, #trainFixedPathTableIn.el-table th{
|
|
|
|
padding-top: 5px;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
border-color: #a5a5a5;
|
|
|
|
}
|
|
|
|
#trainFixedPathTableIn.el-table .cell{ padding-left: 5px;padding-right: 5px; text-align: center;}
|
2022-06-13 14:31:31 +08:00
|
|
|
</style>
|
|
|
|
|