Merge branch 'test' of https://git.code.tencent.com/lian-cbtc/jl-client into test
This commit is contained in:
commit
97535872da
@ -41,7 +41,7 @@
|
||||
width="105"
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
<div v-if="scope.row.arriveRunPlan" :title="scope.row.arriveRunPlan.accessName">{{ scope.row.arriveRunPlan.accessName }}</div>
|
||||
<div v-if="scope.row.arriveRunPlan" :title="mapStationDirectionData[scope.row.arriveRunPlan.accessName].name">{{ mapStationDirectionData[scope.row.arriveRunPlan.accessName].name }}</div>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
@ -60,7 +60,7 @@
|
||||
width="105"
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
<div v-if="scope.row.departRunPlan" :title="scope.row.departRunPlan.accessName">{{ scope.row.departRunPlan.accessName }}</div>
|
||||
<div v-if="scope.row.departRunPlan" :title="mapStationDirectionData[scope.row.departRunPlan.accessName].name">{{ mapStationDirectionData[scope.row.departRunPlan.accessName].name }}</div>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
@ -152,6 +152,9 @@ export default {
|
||||
},
|
||||
title() {
|
||||
return '发送计划';
|
||||
},
|
||||
mapStationDirectionData() {
|
||||
return this.$store.state.map.mapStationDirectionData;
|
||||
}
|
||||
},
|
||||
methods:{
|
||||
|
@ -287,7 +287,6 @@ export default {
|
||||
// 到达
|
||||
if (row.arriveRunPlan) {
|
||||
this.model.arriveSectionCode = row.arriveRunPlan.sectionCode;
|
||||
// debugger;
|
||||
this.model.arrivePlanTime = row.arriveRunPlan.planTime;
|
||||
this.model.arriveTripNumber = row.arriveRunPlan.tripNumber;
|
||||
this.model.arriveDirectionCode = row.arriveRunPlan.accessName; // 到达方向编码(到达口)
|
||||
@ -296,7 +295,7 @@ export default {
|
||||
}
|
||||
// 发车
|
||||
if (row.departRunPlan) {
|
||||
this.model.departSectionCode = row.departRunPlan.planTime;
|
||||
this.model.departSectionCode = row.departRunPlan.sectionCode;
|
||||
this.model.departPlanTime = row.departRunPlan.planTime;
|
||||
this.model.departTripNumber = row.departRunPlan.tripNumber;
|
||||
this.model.departDirectionCode = row.departRunPlan.accessName;
|
||||
|
Loading…
Reference in New Issue
Block a user