...
|
...
|
@@ -39,15 +39,18 @@ |
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="originatingstation"
|
|
|
label="起始站">
|
|
|
label="起始站"
|
|
|
width="60">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="destinationstation"
|
|
|
label="目的站">
|
|
|
label="目的站"
|
|
|
width="60">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="crossdays"
|
|
|
label="跨天天数">
|
|
|
label="跨天天数"
|
|
|
width="70">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="effectivedate"
|
...
|
...
|
@@ -65,8 +68,16 @@ |
|
|
width="120">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="remark"
|
|
|
label="备注">
|
|
|
prop="state"
|
|
|
label="启/禁用">
|
|
|
<template slot-scope="scope">
|
|
|
<span v-if="scope.row.state == 1" style="color:rgb(103,194,58)">
|
|
|
启用
|
|
|
</span>
|
|
|
<span v-else="scope.row.state == 0" style="color: #F56C6C">
|
|
|
禁用
|
|
|
</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
fixed="right"
|
...
|
...
|
|