|
@@ -1760,6 +1760,12 @@ export default {
|
|
|
this.fromValue.orderProductStoreList = arrList;
|
|
this.fromValue.orderProductStoreList = arrList;
|
|
|
this.toastLoading(0, '上传中...', true);
|
|
this.toastLoading(0, '上传中...', true);
|
|
|
var fromValue = this.fromValue;
|
|
var fromValue = this.fromValue;
|
|
|
|
|
+ if (
|
|
|
|
|
+ this.fromValue.storeCompetitorList == null ||
|
|
|
|
|
+ this.fromValue.storeCompetitorList == undefined
|
|
|
|
|
+ ) {
|
|
|
|
|
+ this.fromValue.storeCompetitorList = [];
|
|
|
|
|
+ }
|
|
|
var telrg = /^(13[0-9]|14[01456879]|15[0-35-9]|16[2567]|17[0-8]|18[0-9]|19[0-35-9])\d{8}$/;
|
|
var telrg = /^(13[0-9]|14[01456879]|15[0-35-9]|16[2567]|17[0-8]|18[0-9]|19[0-35-9])\d{8}$/;
|
|
|
if (fromValue.orgId == '') {
|
|
if (fromValue.orgId == '') {
|
|
|
this.$toast('部门未选择');
|
|
this.$toast('部门未选择');
|
|
@@ -1892,6 +1898,8 @@ export default {
|
|
|
this.$toast('潜在客户类型未填写');
|
|
this.$toast('潜在客户类型未填写');
|
|
|
return;
|
|
return;
|
|
|
}
|
|
}
|
|
|
|
|
+ if (this.fromValue.otherCompetitor)
|
|
|
|
|
+ this.fromValue.storeCompetitorList.push(this.fromValue.otherCompetitor);
|
|
|
// 同城分销建店添加去下单提示
|
|
// 同城分销建店添加去下单提示
|
|
|
if (
|
|
if (
|
|
|
this.verifyStoreType(this.fromValue.storeCategory) &&
|
|
this.verifyStoreType(this.fromValue.storeCategory) &&
|
|
@@ -1927,8 +1935,6 @@ export default {
|
|
|
})
|
|
})
|
|
|
.then(() => {
|
|
.then(() => {
|
|
|
this.toastLoading(0, '上传中...', true);
|
|
this.toastLoading(0, '上传中...', true);
|
|
|
- if (this.fromValue.otherCompetitor)
|
|
|
|
|
- this.fromValue.storeCompetitorList.push(this.fromValue.otherCompetitor);
|
|
|
|
|
this.addStoreFun();
|
|
this.addStoreFun();
|
|
|
});
|
|
});
|
|
|
}
|
|
}
|
|
@@ -2205,6 +2211,17 @@ export default {
|
|
|
.typeRadioStore1 .van-radio[aria-checked='true'] .van-radio__label {
|
|
.typeRadioStore1 .van-radio[aria-checked='true'] .van-radio__label {
|
|
|
color: #1989fa;
|
|
color: #1989fa;
|
|
|
}
|
|
}
|
|
|
|
|
+.typeRadioStore1 .van-checkbox__icon .van-icon {
|
|
|
|
|
+ border-color: #ccc !important;
|
|
|
|
|
+}
|
|
|
|
|
+.typeRadioStore1 .van-checkbox__icon--checked .van-icon {
|
|
|
|
|
+ background-color: transparent;
|
|
|
|
|
+ color: #1989fa;
|
|
|
|
|
+ border-color: #1989fa !important;
|
|
|
|
|
+}
|
|
|
|
|
+.typeRadioStore1 .van-checkbox[aria-checked='true'] .van-checkbox__label {
|
|
|
|
|
+ color: #1989fa;
|
|
|
|
|
+}
|
|
|
.morelaji .van-cell {
|
|
.morelaji .van-cell {
|
|
|
padding: 10px 0;
|
|
padding: 10px 0;
|
|
|
}
|
|
}
|