Commit 2fe31238 authored by dcy's avatar dcy

客户订单参数修改,报价列表客户名称修改

parent e41c00b4
...@@ -116,7 +116,7 @@ ...@@ -116,7 +116,7 @@
<el-form-item :label="$t('报关方式:')"> <el-form-item :label="$t('报关方式:')">
<dict-selector <dict-selector
:type="DICT_TYPE.ECW_CUSTOMS_TYPE" :type="DICT_TYPE.ECW_CUSTOMS_TYPE"
v-model="queryParams.customerType" v-model="queryParams.customsType"
/> />
</el-form-item> </el-form-item>
<el-form-item :label="$t('控货')"> <el-form-item :label="$t('控货')">
...@@ -207,6 +207,9 @@ ...@@ -207,6 +207,9 @@
prop="consignorName" prop="consignorName"
:label="$t('客户名称')" :label="$t('客户名称')"
> >
<template v-slot>
{{customer.name}}
</template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="objectiveName" prop="objectiveName"
...@@ -489,7 +492,8 @@ export default { ...@@ -489,7 +492,8 @@ export default {
3:this.$t('跟进中'), 3:this.$t('跟进中'),
4:this.$t('赢单'), 4:this.$t('赢单'),
5:this.$t('输单'), 5:this.$t('输单'),
6:this.$t('报价完成') 6:this.$t('报价完成'),
7:this.$t('跟进中')
}, },
dialogVisible:false, dialogVisible:false,
DICT_TYPE, DICT_TYPE,
...@@ -623,11 +627,11 @@ export default { ...@@ -623,11 +627,11 @@ export default {
}, },
changeDate(val){ changeDate(val){
if(val){ if(val){
this.queryParams.houseStartDate = val[0]; this.queryParams.beginRucangTime = val[0];
this.queryParams.houseEndDate = val[1]; this.queryParams. endRucangTime = val[1];
}else { }else {
this.queryParams.houseStartDate = undefined; this.queryParams.beginRucangTime = undefined;
this.queryParams.houseEndDate = undefined; this.queryParams.endRucangTime = undefined;
} }
}, },
//品牌授权 //品牌授权
...@@ -655,7 +659,7 @@ export default { ...@@ -655,7 +659,7 @@ export default {
}, },
//订单 //订单
getorderList(){ getorderList(){
infoListOrderPage({customerId:this.id,...this.queryParams}).then(r => { infoListOrderPage({customerDetailld:this.id,...this.queryParams}).then(r => {
console.log(r) console.log(r)
if(r.code === 0){ if(r.code === 0){
this.orderList = r.data.list this.orderList = r.data.list
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment