Browse Source

完善车辆销售台账--=增加上装/挂车、物料编码、上装/挂车成交价等字段

master
yunuo970428 2 years ago
parent
commit
cbcce746a3
  1. 28
      anrui-scm/anrui-scm-ui/src/views/cheliang/cheliangxiaoshou/chelaingxiaoshouInfo.vue
  2. 15
      anrui-scm/anrui-scm-ui/src/views/cheliang/cheliangxiaoshou/cheliangxiaoshouguanli.vue

28
anrui-scm/anrui-scm-ui/src/views/cheliang/cheliangxiaoshou/chelaingxiaoshouInfo.vue

@ -161,6 +161,34 @@
</el-form-item>
</el-col>
</el-row>
<el-row v-show="temp.trailerOrInstallName !== ''">
<el-col :span="4" class="tleftb">
<span>{{ temp.trailerOrInstallName }}</span>
</el-col>
<el-col :span="20">
<el-form-item>
<span>{{ temp.trailerOrInstall }}</span>
</el-form-item>
</el-col>
</el-row>
<el-row v-show="temp.trailerOrInstallName !== ''">
<el-col :span="4" class="tleftb">
<span><span class="icon">*</span>{{ temp.trailerOrInstallName }}成交价</span>
</el-col>
<el-col :span="8">
<el-form-item>
<span>{{ temp.trailerOrInstallDealPrice }}</span>
</el-form-item>
</el-col>
<el-col :span="4" class="tleftb">
<span>总成交价</span>
</el-col>
<el-col :span="8">
<el-form-item>
<span>{{ temp.totalDealPrice }}</span>
</el-form-item>
</el-col>
</el-row>
</el-form>
</div>
</div>

15
anrui-scm/anrui-scm-ui/src/views/cheliang/cheliangxiaoshou/cheliangxiaoshouguanli.vue

@ -133,6 +133,21 @@
<span>{{ scope.row.mobile }}</span>
</template>
</el-table-column>
<el-table-column label="上装/挂车" align="center" width="100">
<template slot-scope="scope">
<span>{{ scope.row.trailerOrInstallName }}</span>
</template>
</el-table-column>
<el-table-column label="物业编码" align="center" width="100">
<template slot-scope="scope">
<span>{{ scope.row.trailerOrInstallCode }}</span>
</template>
</el-table-column>
<el-table-column label="上装/挂车成交价" align="center" width="140">
<template slot-scope="scope">
<span>{{ scope.row.trailerOrInstallDealPrice }}</span>
</template>
</el-table-column>
<el-table-column label="赠品价值(元)" align="center" width="120">
<template slot-scope="scope">
<span>{{ scope.row.giftsDescription }}</span>

Loading…
Cancel
Save