Browse Source

完善经销商管理-列表增加有效期至

master
yunuo970428 2 years ago
parent
commit
8f57516c66
  1. 17
      anrui-base/anrui-base-ui/src/views/dealer/distributormanagement/distributormanagement.vue

17
anrui-base/anrui-base-ui/src/views/dealer/distributormanagement/distributormanagement.vue

@ -108,7 +108,7 @@
<span>{{ scope.row.salesman }}</span>
</template>
</el-table-column>
<el-table-column label="所属经销商" width="180" align="center"> <!-- ? -->
<el-table-column label="所属经销商" width="180" align="center">
<template slot-scope="scope">
<span>{{ scope.row.pdistributorName }}</span>
</template>
@ -133,31 +133,36 @@
<span>{{ scope.row.invoPhone }}</span>
</template>
</el-table-column>
<el-table-column label="成立日期" width="120" align="center"> <!-- ? -->
<el-table-column label="成立日期" width="120" align="center">
<template slot-scope="scope">
<span>{{ scope.row.setUpTime }}</span>
</template>
</el-table-column>
<el-table-column label="是否担保" width="120" align="center"> <!-- ? -->
<el-table-column label="是否担保" width="120" align="center">
<template slot-scope="scope">
<span>{{ scope.row.isGuarantee }}</span>
</template>
</el-table-column>
<el-table-column label="是否投放展车" width="120" align="center"> <!-- ? -->
<el-table-column label="是否投放展车" width="120" align="center">
<template slot-scope="scope">
<span>{{ scope.row.isDelivery }}</span>
</template>
</el-table-column>
<el-table-column label="本年销售台数" width="160" align="center"> <!-- ? -->
<el-table-column label="本年销售台数" width="160" align="center">
<template slot-scope="scope">
<span>{{ scope.row.curYearSaleNum }}</span>
</template>
</el-table-column>
<el-table-column label="累计销售台数" width="160" align="center"> <!-- ? -->
<el-table-column label="累计销售台数" width="160" align="center">
<template slot-scope="scope">
<span>{{ scope.row.cumSaleNum }}</span>
</template>
</el-table-column>
<el-table-column label="有效期至" width="120" align="center">
<template slot-scope="scope">
<span>{{ scope.row.effectiveDate }}</span>
</template>
</el-table-column>
</el-table>
</div>
<div class="pages">

Loading…
Cancel
Save