Commit 4cbda907 authored by Smile's avatar Smile Committed by wux

bug270 【客户列表-跟进】重复打开新增跟进弹窗时,客户经理默认值为空,应该默认为当前用户

parent c498b66e
...@@ -286,7 +286,9 @@ export default { ...@@ -286,7 +286,9 @@ export default {
this.form.offerNumber = offer.number this.form.offerNumber = offer.number
if (offer.cargoStatus||offer.saleStage){ if (offer.cargoStatus||offer.saleStage){
this.$set(this.form,'cargoStatus',offer.cargoStatus); this.$set(this.form,'cargoStatus',offer.cargoStatus);
this.$set(this.form,'saleStage',offer.saleStage); if (!this.isView){
this.$set(this.form,'saleStage',offer.saleStage);
}
}else { }else {
this.$set(this.form,'cargoStatus',null); this.$set(this.form,'cargoStatus',null);
} }
......
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