2020-03-31 19:06:23 +08:00
|
|
|
<template>
|
2020-05-26 15:59:11 +08:00
|
|
|
<div class="menuTrainListOut" :class="{'xian_01' : lineCode == '11'}">
|
|
|
|
<div v-if="drawer" class="menuTrainListBtn" @click="clickBtn">
|
2020-05-28 18:38:49 +08:00
|
|
|
<i class="el-icon-more" style="font-size: 20px;margin-top: 9px;transform-origin: 50% 50%;transform: rotate(90deg);margin-left:0px;" /></div>
|
2020-04-01 12:53:58 +08:00
|
|
|
<div v-else class="menuTrainListBtn1" @click="clickBtn">
|
|
|
|
<div class="menuTrainListBtn1In">
|
2020-05-26 15:59:11 +08:00
|
|
|
<i class="el-icon-more" style="font-size: 20px;margin-top: 9px;transform-origin: 50% 50%;transform: rotate(90deg);" />
|
2020-04-01 12:53:58 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-04-01 15:32:06 +08:00
|
|
|
<div
|
2020-04-01 12:53:58 +08:00
|
|
|
v-show="drawer"
|
|
|
|
:show-close="false"
|
2020-04-01 15:32:06 +08:00
|
|
|
style="height: 100%;"
|
2020-03-31 19:06:23 +08:00
|
|
|
>
|
2020-05-28 18:38:49 +08:00
|
|
|
<div v-if="lineCode=='10'||lineCode=='11'" class="menuTrainList">
|
2020-05-29 09:16:35 +08:00
|
|
|
<div class="bottomTrainListInfo">下行列车详细信息</div>
|
|
|
|
<el-table :data="bottomTrainList" height="45%" :highlight-current-row="true" @row-click="selectTrain">
|
2020-05-28 18:38:49 +08:00
|
|
|
<el-table-column property="groupNumber" label="车组号" width="70" />
|
|
|
|
<el-table-column property="tripNumber" label="车次号" width="70" />
|
|
|
|
<el-table-column property="destinationCode" label="目的地号" width="100" />
|
|
|
|
<el-table-column property="serviceNumber" label="表号" width="70" />
|
|
|
|
<el-table-column property="dt" label="早晚点" width="70">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<div>{{ covert(scope.row.dt) }}</div>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<!-- <el-table-column property="right" label="是否上行" width="90" /> -->
|
|
|
|
</el-table>
|
|
|
|
<div class="topTrainListInfo">上行列车详细信息</div>
|
|
|
|
<el-table :data="topTrainList" height="45%" :highlight-current-row="true" style="border-radius:0px 0px 0px 5px;" @row-click="selectTrain">
|
|
|
|
<el-table-column property="groupNumber" label="车组号" width="70" />
|
|
|
|
<el-table-column property="tripNumber" label="车次号" width="70" />
|
|
|
|
<el-table-column property="destinationCode" label="目的地号" width="100" />
|
|
|
|
<el-table-column property="serviceNumber" label="表号" width="70" />
|
|
|
|
<el-table-column property="dt" label="早晚点" width="70">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<div>{{ covert(scope.row.dt) }}</div>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<!-- <el-table-column property="right" label="是否上行" width="90" /> -->
|
|
|
|
</el-table>
|
|
|
|
</div>
|
|
|
|
<div v-else class="menuTrainList">
|
|
|
|
<el-table :data="trainList" height="100%" :highlight-current-row="true" style="border-radius:5px 0px 0px 5px;" @row-click="selectTrain">
|
2020-04-01 12:53:58 +08:00
|
|
|
<el-table-column property="groupNumber" label="车组号" width="130" />
|
|
|
|
<el-table-column property="tripNumber" label="车次号" width="130" />
|
2020-05-28 18:38:49 +08:00
|
|
|
<el-table-column property="serviceNumber" label="表号" width="130" />
|
2020-04-01 14:14:55 +08:00
|
|
|
<!-- <el-table-column property="right" label="是否上行" width="90" /> -->
|
2020-04-01 12:53:58 +08:00
|
|
|
</el-table>
|
|
|
|
</div>
|
2020-04-01 15:32:06 +08:00
|
|
|
</div>
|
2020-03-31 19:06:23 +08:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
2020-04-01 12:53:58 +08:00
|
|
|
name: 'MenuTrainList',
|
2020-03-31 19:06:23 +08:00
|
|
|
data() {
|
|
|
|
return {
|
2020-04-01 12:53:58 +08:00
|
|
|
drawer: false,
|
2020-03-31 19:06:23 +08:00
|
|
|
trainList:[],
|
2020-05-28 18:38:49 +08:00
|
|
|
oldDevice: null,
|
|
|
|
topTrainList:[],
|
|
|
|
bottomTrainList:[]
|
2020-03-31 19:06:23 +08:00
|
|
|
};
|
|
|
|
},
|
2020-05-26 15:59:11 +08:00
|
|
|
computed: {
|
|
|
|
lineCode() {
|
|
|
|
return this.$route.query.lineCode;
|
|
|
|
}
|
|
|
|
},
|
2020-03-31 19:06:23 +08:00
|
|
|
watch:{
|
2020-06-02 18:30:12 +08:00
|
|
|
'$store.state.map.activeTrainListUpdate': function (val) {
|
|
|
|
const trainList = Object.values(this.$store.state.map.activeTrainList);
|
2020-05-28 18:38:49 +08:00
|
|
|
if (this.lineCode == '10' || this.lineCode == '11') {
|
2020-06-02 18:30:12 +08:00
|
|
|
this.topTrainList = trainList.filter((train)=>{
|
|
|
|
return train.serviceNumber != '' && train.serviceNumber != undefined && !train.right && train.sectionCode;
|
2020-05-28 18:38:49 +08:00
|
|
|
});
|
2020-06-02 18:30:12 +08:00
|
|
|
this.bottomTrainList = trainList.filter((train)=>{
|
|
|
|
return train.serviceNumber != '' && train.serviceNumber != undefined && train.right && train.sectionCode;
|
2020-05-28 18:38:49 +08:00
|
|
|
});
|
|
|
|
} else {
|
2020-06-02 18:30:12 +08:00
|
|
|
this.trainList = trainList.filter((train)=>{
|
|
|
|
return train.serviceNumber != '' && train.serviceNumber != undefined && train.sectionCode;
|
2020-05-28 18:38:49 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-03-31 19:06:23 +08:00
|
|
|
},
|
2020-04-01 12:53:58 +08:00
|
|
|
'$store.state.map.runPlanStatus': function (val) {
|
|
|
|
if (!val) {
|
2020-06-02 18:30:12 +08:00
|
|
|
this.$store.dispatch('map/resetActiveTrainList');
|
2020-04-01 12:53:58 +08:00
|
|
|
}
|
2020-03-31 19:06:23 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
mounted() {
|
2020-04-01 12:53:58 +08:00
|
|
|
},
|
|
|
|
methods:{
|
|
|
|
clickBtn() {
|
|
|
|
if (this.drawer) {
|
|
|
|
this.drawer = false;
|
|
|
|
} else {
|
|
|
|
this.drawer = true;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
selectTrain(row, column, event) {
|
|
|
|
this.setCenter(row.code);
|
|
|
|
},
|
|
|
|
// 设置显示中心
|
|
|
|
setCenter(code) {
|
|
|
|
this.$emit('setCenter', code);
|
2020-05-28 18:38:49 +08:00
|
|
|
},
|
|
|
|
covert(data) {
|
|
|
|
let min = (Math.abs(data) - Math.abs(data) % 60) / 60;
|
|
|
|
let seconds = Math.abs(data) % 60;
|
|
|
|
min = min > 9 ? min : '0' + min;
|
|
|
|
seconds = seconds > 9 ? seconds : '0' + seconds;
|
|
|
|
return data == 0 ? '00:00' : (data > 0 ? min + ':' + seconds + 'E' : min + ':' + seconds + 'L');
|
2020-04-01 12:53:58 +08:00
|
|
|
}
|
2020-03-31 19:06:23 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
2020-04-01 12:53:58 +08:00
|
|
|
.menuTrainListBtn1In{
|
|
|
|
width: 20px;
|
|
|
|
height: 40px;
|
|
|
|
background: #fff;
|
|
|
|
text-align: center;
|
|
|
|
border-radius: 6px 0px 0px 6px;
|
|
|
|
cursor:pointer;
|
|
|
|
border: 1px #adadad solid;
|
|
|
|
}
|
|
|
|
.menuTrainListBtn1{
|
|
|
|
position: absolute;
|
|
|
|
top: 46%;
|
|
|
|
right:2px;
|
|
|
|
}
|
|
|
|
.menuTrainListBtn{
|
2020-05-28 18:38:49 +08:00
|
|
|
width: 20px;
|
2020-04-01 12:53:58 +08:00
|
|
|
height: 40px;
|
|
|
|
background: #fff;
|
|
|
|
text-align: center;
|
|
|
|
border-radius: 6px 0px 0px 6px;
|
|
|
|
position: absolute;
|
|
|
|
top: 45%;
|
2020-05-28 18:38:49 +08:00
|
|
|
left: -20px;
|
2020-04-01 12:53:58 +08:00
|
|
|
z-index: 2;
|
|
|
|
cursor:pointer;
|
|
|
|
}
|
|
|
|
.menuTrainListOut{
|
2020-03-31 19:06:23 +08:00
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 15%;
|
|
|
|
height: 70%;
|
2020-04-01 12:53:58 +08:00
|
|
|
}
|
|
|
|
.menuTrainList{
|
|
|
|
width: 400px;
|
|
|
|
height:100%;
|
2020-03-31 19:06:23 +08:00
|
|
|
border-radius: 10px 0px 0px 10px;
|
2020-05-28 18:38:49 +08:00
|
|
|
// padding: 5px;
|
2020-03-31 19:06:23 +08:00
|
|
|
background: #fff;
|
|
|
|
}
|
2020-05-29 09:16:35 +08:00
|
|
|
.topTrainListInfo,.bottomTrainListInfo{
|
2020-05-28 18:38:49 +08:00
|
|
|
padding: 10px 10px;
|
|
|
|
background: #cde2ef;
|
|
|
|
font-size: 13px;
|
|
|
|
border-radius: 5px 0px 0px 0px;
|
|
|
|
}
|
2020-03-31 19:06:23 +08:00
|
|
|
</style>
|