Commit 5db31db1 authored by Smile's avatar Smile Committed by wux

任务103:跟进记录调整

parent bf85aa0a
...@@ -95,7 +95,7 @@ ...@@ -95,7 +95,7 @@
<el-col :span="8" v-if="form.followType == 2"> <el-col :span="8" v-if="form.followType == 2">
<el-form-item :label="$t('货物状态')" prop="cargoStatus"> <el-form-item :label="$t('货物状态')" prop="cargoStatus">
<el-select v-model="form.cargoStatus" :placeholder="$t('请选择')"> <el-select v-model="form.cargoStatus" :placeholder="$t('请选择')">
<el-option v-for="dict in getDictDatas(DICT_TYPE.ECW_OFFER_CARGO_STATUS)" :key="dict.value" :label="isChinese ? dict.label : dict.labelEn" :value="parseInt(dict.value)" /> <el-option v-for="dict in getDictDatas(DICT_TYPE.ECW_OFFER_CARGO_STATUS)" :key="dict.value" :label="isChinese ? dict.label : dict.labelEn" :value="dict.value" />
</el-select> </el-select>
</el-form-item> </el-form-item>
</el-col> </el-col>
...@@ -265,6 +265,10 @@ export default { ...@@ -265,6 +265,10 @@ export default {
} }
}, },
created() { created() {
this.$nextTick(() => {
// 在页面加载完后执行的代码
this.setCustomerFollow()
});
this.hasAccountRole(); this.hasAccountRole();
listServiceUser().then((r) => { listServiceUser().then((r) => {
this.serviceUserList = r.data this.serviceUserList = r.data
...@@ -274,6 +278,9 @@ export default { ...@@ -274,6 +278,9 @@ export default {
}) })
}, },
watch: { watch: {
'form.cargoStatus'(){
console.log(this.form)
},
"form.offerId"(v) { "form.offerId"(v) {
if (v) { if (v) {
getOffer(v).then((r) => { getOffer(v).then((r) => {
...@@ -281,7 +288,12 @@ export default { ...@@ -281,7 +288,12 @@ export default {
this.offer = offer; this.offer = offer;
// 选择了报价单后,需要将报价单中的客户及客户联系人信息回显 // 选择了报价单后,需要将报价单中的客户及客户联系人信息回显
this.form.offerNumber = offer.number this.form.offerNumber = offer.number
this.form.cargoStatus = parseInt(offer.cargoStatus); console.log("this.form.cargoStatus",this.form)
if (offer.cargoStatus){
this.$set(this.form,'cargoStatus',String(offer.cargoStatus));
}else {
this.$set(this.form,'cargoStatus',null);
}
this.form.customerId = offer.relationId this.form.customerId = offer.relationId
this.customerId = offer.relationId this.customerId = offer.relationId
this.form.contactId = offer.relation === 1 ? offer.consignorId : offer.consigneeId this.form.contactId = offer.relation === 1 ? offer.consignorId : offer.consigneeId
...@@ -325,9 +337,7 @@ export default { ...@@ -325,9 +337,7 @@ export default {
this.form.contactName = item.name this.form.contactName = item.name
this.form.contactPhone = "+" + item.areaCode + item.phoneNew this.form.contactPhone = "+" + item.areaCode + item.phoneNew
this.form.followUserId = item.customerService this.form.followUserId = item.customerService
if (this.isAccountManager&&this.form.followUserId===null){ this.setCustomerFollow()
this.form.followUserId = this.$store.getters.userId
}
return true return true
} }
}) })
...@@ -339,6 +349,11 @@ export default { ...@@ -339,6 +349,11 @@ export default {
} }
}, },
methods: { methods: {
setCustomerFollow(){
if (this.isAccountManager&&!this.form.followUserId){
this.$set(this.form,"followUserId",this.$store.getters.userId)
}
},
hasAccountRole(){ hasAccountRole(){
this.isAccountManager=this.$store.getters.roles.some((item) => { this.isAccountManager=this.$store.getters.roles.some((item) => {
return item === "Account Manager" return item === "Account Manager"
......
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