大铁项目 ctc 行车日志 代码调整
This commit is contained in:
parent
22e4935310
commit
7f6a331002
@ -53,10 +53,12 @@
|
|||||||
width="100"
|
width="100"
|
||||||
>
|
>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<div v-if="scope.row.status==-1">删除</div>
|
<div v-if="scope.row.arriveSectionCode">
|
||||||
<!-- scope.row.status==1||( -->
|
<div v-if="scope.row.status==-1">删除</div>
|
||||||
<div v-else-if="scope.row.arriveSectionCode&&!scope.row.oldArriveSectionCode">{{ sectionMap[scope.row.arriveSectionCode] }}</div>
|
<!-- scope.row.status==1||( -->
|
||||||
<div v-else>{{ sectionMap[scope.row.arriveSectionCode]+'['+sectionMap[scope.row.oldArriveSectionCode]+']' }}</div>
|
<div v-else-if="scope.row.arriveSectionCode&&!scope.row.oldArriveSectionCode">{{ sectionMap[scope.row.arriveSectionCode] }}</div>
|
||||||
|
<div v-else>{{ sectionMap[scope.row.arriveSectionCode]+'['+sectionMap[scope.row.oldArriveSectionCode]+']' }}</div>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
@ -65,8 +67,10 @@
|
|||||||
width="170"
|
width="170"
|
||||||
>
|
>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<div v-if="scope.row.status==-1">删除</div>
|
<div v-if="scope.row.arrivePlanTime">
|
||||||
<div v-else>{{ scope.row.arrivePlanTime }}</div>
|
<div v-if="scope.row.status==-1">删除</div>
|
||||||
|
<div v-else>{{ scope.row.arrivePlanTime }}</div>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
@ -75,11 +79,13 @@
|
|||||||
width="100"
|
width="100"
|
||||||
>
|
>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<div v-if="scope.row.status==-1">删除</div>
|
<div v-if="scope.row.departSectionCode">
|
||||||
<!-- {{ sectionMap }} -->
|
<div v-if="scope.row.status==-1">删除</div>
|
||||||
<!-- scope.row.status==1 -->
|
<!-- {{ sectionMap }} -->
|
||||||
<div v-else-if="scope.row.departSectionCode&&!scope.row.oldDepartSectionCode">{{ sectionMap[scope.row.departSectionCode] }}</div>
|
<!-- scope.row.status==1 -->
|
||||||
<div v-else>{{ sectionMap[scope.row.departSectionCode]+'['+sectionMap[scope.row.oldDepartSectionCode]+']' }}</div>
|
<div v-else-if="scope.row.departSectionCode&&!scope.row.oldDepartSectionCode">{{ sectionMap[scope.row.departSectionCode] }}</div>
|
||||||
|
<div v-else>{{ sectionMap[scope.row.departSectionCode]+'['+sectionMap[scope.row.oldDepartSectionCode]+']' }}</div>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
@ -88,8 +94,10 @@
|
|||||||
width="170"
|
width="170"
|
||||||
>
|
>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<div v-if="scope.row.status==-1">删除</div>
|
<div v-if="scope.row.departPlanTime">
|
||||||
<div v-else>{{ scope.row.departPlanTime }}</div>
|
<div v-if="scope.row.status==-1">删除</div>
|
||||||
|
<div v-else>{{ scope.row.departPlanTime }}</div>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
|
Loading…
Reference in New Issue
Block a user