|
|
@ -79,7 +79,11 @@ |
|
|
|
<el-table-column prop="vehModelName" label="车型" align="center" min-width="160" /> |
|
|
|
<el-table-column prop="vinNo" label="车架号" align="center" width="140" /> |
|
|
|
<el-table-column prop="customerName" label="客户名称" align="center" width="120" /> |
|
|
|
<el-table-column prop="contractNo" label="合同编号" align="center" width="170" /> |
|
|
|
<el-table-column prop="contractNo" label="合同编号" align="center" width="170"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span class="bluezi" @click="lookSales(scope.row.salesOrderSid)">{{ scope.row.contractNo }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="estimateRebate" label="订单贴息金额" align="center" width="150" /> |
|
|
|
<el-table-column prop="uploadMoney" label="上传贴息金额" align="center" width="150" /> |
|
|
|
<el-table-column prop="adjustmentMoney" label="差额" align="center" width="100" /> |
|
|
@ -114,20 +118,24 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<chooseAdjustment v-show="viewState == 2" ref="divChoose" @backData="backData" @doback="resetState" /> |
|
|
|
<!-- 查看销售订单详情 --> |
|
|
|
<saleOrder v-show="viewState == 3" ref="divSales" @doback="resetState" /> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
|
|
|
|
<script> |
|
|
|
import req from '@/api/financialDiscount/financialDiscount' |
|
|
|
import { getOrgSidByPath, fetchBySid, selectSysUserList, typeValues, selectStaffListByUseOrgSid } from '@/api/cheliang/dictcommons' |
|
|
|
import { selectSysUserList, typeValues, selectStaffListByUseOrgSid } from '@/api/cheliang/dictcommons' |
|
|
|
import uploadImg from '@/components/uploadFile/uploadImg' |
|
|
|
import chooseAdjustment from './relation/chooseAdjustment' |
|
|
|
import saleOrder from '../../workFlow/publicPage/xiaoshoudingdanInfo' |
|
|
|
|
|
|
|
export default { |
|
|
|
name: 'DifferenceManagementEdit', |
|
|
|
components: { |
|
|
|
uploadImg, |
|
|
|
chooseAdjustment |
|
|
|
chooseAdjustment, |
|
|
|
saleOrder |
|
|
|
}, |
|
|
|
data() { |
|
|
|
return { |
|
|
@ -282,6 +290,7 @@ export default { |
|
|
|
customerSid: e.customerSid, |
|
|
|
customerName: e.customerName, |
|
|
|
contractNo: e.contractNo, |
|
|
|
salesOrderSid: e.salesOrderSid, |
|
|
|
estimateRebate: e.estimateRebate, |
|
|
|
uploadMoney: e.uploadMoney, |
|
|
|
adjustmentMoney: e.adjustmentMoney, |
|
|
@ -295,6 +304,10 @@ export default { |
|
|
|
handleDelete(index) { |
|
|
|
this.formobj.list.splice(index, 1) |
|
|
|
}, |
|
|
|
lookSales(sid) { |
|
|
|
this.viewState = 3 |
|
|
|
this.$refs['divSales'].showInfo(sid) |
|
|
|
}, |
|
|
|
resetState() { |
|
|
|
this.viewState = 1 |
|
|
|
}, |
|
|
|