|
|
@@ -8,6 +8,9 @@
|
|
|
<template slot="plateNo" slot-scope="{row}">
|
|
|
<span class="el-button--text" style="cursor: pointer" @click="openTrack(row)">{{ row.plateNo }}</span>
|
|
|
</template>
|
|
|
+ <template slot="vehicleOwned" slot-scope="{row}">
|
|
|
+ <span style="cursor: pointer">{{ Number(row.vehicleOwned) === 0 ? '非自有' : '自有' }}</span>
|
|
|
+ </template>
|
|
|
<template slot="menuLeft">
|
|
|
<el-button type="info" size="small" @click="outExport" icon="el-icon-download">导出</el-button>
|
|
|
</template>
|
|
|
@@ -367,6 +370,28 @@ export default {
|
|
|
overHidden: true,
|
|
|
index: 10,
|
|
|
search: true
|
|
|
+ },{
|
|
|
+ label: this.$t("land118n.vehicleOwned"),
|
|
|
+ width: 90,
|
|
|
+ prop: 'vehicleOwned',
|
|
|
+ overHidden: true,
|
|
|
+ index: 11,
|
|
|
+ search: true,
|
|
|
+ type: "select",
|
|
|
+ dicData:[
|
|
|
+ {
|
|
|
+ label: '自有',
|
|
|
+ value: 1
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '非自有',
|
|
|
+ value: 0
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ props: {
|
|
|
+ label: "label",
|
|
|
+ value: "value"
|
|
|
+ }
|
|
|
}, {
|
|
|
// label: '货运地点',
|
|
|
label: this.$t("land118n.freightLocation"),
|