|
|
@@ -1347,6 +1347,7 @@ export default {
|
|
|
createOrderForm: {
|
|
|
realName: "",
|
|
|
phone: "",
|
|
|
+ noEncryptPhone: "",
|
|
|
provinceId: null,
|
|
|
cityId: null,
|
|
|
districtId: null,
|
|
|
@@ -1847,6 +1848,14 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
handleCreateOrder(row) {
|
|
|
+ //调用获取详情接口进行回填
|
|
|
+ getCustomer(row.id).then((res) => {
|
|
|
+ if (res.data.noEncryptPhone==null){
|
|
|
+ alert("回填号码异常,请手动填写");
|
|
|
+ }else {
|
|
|
+ this.createOrderForm.phone=res.data.noEncryptPhone;
|
|
|
+ }
|
|
|
+ });
|
|
|
this.createOrderReset();
|
|
|
this.createOrder.open = true;
|
|
|
this.createOrderForm.companyCustomerId = row.id;
|