Browse Source

完善车辆台账,列表增加车辆状态字段

zhanglei
yunuo970428 3 years ago
parent
commit
340fb4df18
  1. 5
      anrui-scm/anrui-scm-ui/src/views/cheliang/cheliangtaizhang/cheliangtaizhang.vue

5
anrui-scm/anrui-scm-ui/src/views/cheliang/cheliangtaizhang/cheliangtaizhang.vue

@ -91,6 +91,11 @@
<el-table-column prop="returnDate" width="130" label="退库日期" align="center"/>
<el-table-column prop="salePrice" width="130" label="成交价" align="center"/>
<el-table-column prop="salesDate" width="130" label="销售日期" align="center"/>
<el-table-column width="100" label="车辆状态" align="center">
<template slot-scope="scope">
<span>{{ scope.row.isProblemVeh === '0' ? '无问题' : '有问题' }}</span>
</template>
</el-table-column>
<el-table-column prop="settlementStatus" width="110" label="买断状态" align="center">
<template slot-scope="scope">
<span class="bluezi" @click="handleCheckMai(scope.row)">{{ scope.row.settlementStatus }}</span>

Loading…
Cancel
Save