|
@@ -996,10 +996,11 @@ export default {
|
|
|
this.ruleForm.num,
|
|
|
this.ruleForm.price
|
|
|
);
|
|
|
- await this.get_goods_active();
|
|
|
- const { platform_code: platformCode } = this.subGoodData;
|
|
|
- if (platformCode) {
|
|
|
- await this.get_source(platformCode);
|
|
|
+ if (plat_code && plat_code !== "") {
|
|
|
+ await this.get_goods_active();
|
|
|
+ }
|
|
|
+ if (this.subGoodData.platform_code) {
|
|
|
+ await this.get_source(this.subGoodData.platform_code);
|
|
|
}
|
|
|
},
|
|
|
|
|
@@ -1046,21 +1047,23 @@ export default {
|
|
|
if (
|
|
|
!(this.status === "3" || this.status === "4" || this.status === "5")
|
|
|
) {
|
|
|
- console.log(this.status);
|
|
|
+ console.log(12345);
|
|
|
this.subSitem = confirm ? JSON.parse(JSON.stringify(confirm)) : null;
|
|
|
} else {
|
|
|
this.subSitem = user_update
|
|
|
? JSON.parse(JSON.stringify(user_update))
|
|
|
: null;
|
|
|
}
|
|
|
-
|
|
|
- if (this.confirmSitem && this.confirmSitem.plat_code) {
|
|
|
+ if (
|
|
|
+ this.confirmSitem !== null &&
|
|
|
+ this.confirmSitem.plat_code &&
|
|
|
+ this.confirmSitem.plat_code !== ""
|
|
|
+ ) {
|
|
|
await this.onlineData(1, this.confirmSitem.plat_code);
|
|
|
}
|
|
|
- if (this.subSitem && this.subSitem.plat_code) {
|
|
|
- const { plat_code } = this.subSitem;
|
|
|
- if (plat_code) {
|
|
|
- await this.onlineData(2, plat_code);
|
|
|
+ if (this.subSitem !== null) {
|
|
|
+ if (this.subSitem.plat_code && this.subSitem.plat_code !== "") {
|
|
|
+ await this.onlineData(2, this.subSitem.plat_code);
|
|
|
}
|
|
|
|
|
|
await this.againForm(this.subSitem);
|
|
@@ -1084,10 +1087,13 @@ export default {
|
|
|
this.conGoodData = data;
|
|
|
} else {
|
|
|
this.subGoodData = data;
|
|
|
- const { platform_name } = data;
|
|
|
+ const { platform_name, platform_code } = data;
|
|
|
if (this.status !== "2") {
|
|
|
this.sitem.platform_name = platform_name + "客户";
|
|
|
}
|
|
|
+ if (platform_code) {
|
|
|
+ await this.get_source(platform_code);
|
|
|
+ }
|
|
|
}
|
|
|
} else if (code >= 100 && code <= 104) {
|
|
|
await this.logout();
|
|
@@ -1188,6 +1194,7 @@ export default {
|
|
|
async get_goods_active() {
|
|
|
this.actOptions = [];
|
|
|
const { skuCode, companyNo, platform_code } = this.subGoodData;
|
|
|
+
|
|
|
let model = {
|
|
|
skuCode,
|
|
|
companyNo,
|