|
|
@@ -45,6 +45,9 @@
|
|
|
<span class="el-button--text" style="cursor: pointer"
|
|
|
@click.stop="celJump(row,index)">{{ row.dispatchNumber }}</span>
|
|
|
</template>
|
|
|
+ <template slot="vehicleOwned" slot-scope="{row}">
|
|
|
+ <span :style="{ color: row.vehicleOwned === 1 ? '#83ea5a' : '' }">{{ row.vehicleOwned === 1 ? '自有' : '非自有' }}</span>
|
|
|
+ </template>
|
|
|
<template slot-scope="{row,index}" slot="menu">
|
|
|
<span v-if="row.extraAmountD>0">
|
|
|
<el-button
|
|
|
@@ -614,6 +617,29 @@ export default {
|
|
|
search: true,
|
|
|
overHidden: true,
|
|
|
},{
|
|
|
+ label: this.$t("land118n.vehicleOwned"),
|
|
|
+ width: 90,
|
|
|
+ prop: 'vehicleOwned',
|
|
|
+ overHidden: true,
|
|
|
+ index: 11,
|
|
|
+ search: true,
|
|
|
+ slot: true,
|
|
|
+ type: "select",
|
|
|
+ dicData:[
|
|
|
+ {
|
|
|
+ label: '自有',
|
|
|
+ value: 1
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '非自有',
|
|
|
+ value: 0
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ props: {
|
|
|
+ label: "label",
|
|
|
+ value: "value"
|
|
|
+ }
|
|
|
+ },{
|
|
|
// label: '客户名称',
|
|
|
label: this.$t("land118n.corpName"),
|
|
|
prop: 'corpShortName',
|