|
@@ -1223,136 +1223,137 @@ export default {
|
|
|
this.good_type_change();
|
|
|
await this.$refs.ruleForm.validate(async (valid) => {
|
|
|
if (valid) {
|
|
|
- this.loading = true;
|
|
|
- if (this.spec_tableData.length === 0) {
|
|
|
- this.$message.warning("请录入商品规格信息!");
|
|
|
- this.loading = false;
|
|
|
- return;
|
|
|
- }
|
|
|
- let isMust = true;
|
|
|
- this.spec_tableData.forEach((e) => {
|
|
|
- if (e.isMust && !e.spec_value_id) {
|
|
|
- isMust = false;
|
|
|
- }
|
|
|
- });
|
|
|
- if (!isMust) {
|
|
|
- this.$message.warning("分类绑定的规格必须填写规格值!");
|
|
|
- this.loading = false;
|
|
|
- return;
|
|
|
- }
|
|
|
- if (this.ladder_tableData.length === 0) {
|
|
|
- this.$message.warning("请录入阶梯成本!");
|
|
|
- this.loading = false;
|
|
|
- return;
|
|
|
- }
|
|
|
- const {
|
|
|
- noble_weight,
|
|
|
- weight,
|
|
|
- good_type,
|
|
|
- moq,
|
|
|
- is_step,
|
|
|
- is_gold_price,
|
|
|
- } = this.ruleForm;
|
|
|
- // if (is_step === "0" && this.ladder_tableData.length > 1) {
|
|
|
- // this.$message.warning("不启用阶梯成本,只能录入一条阶梯成本信息!");
|
|
|
- // this.loading = false;
|
|
|
- // return;
|
|
|
- // }
|
|
|
- if (this.is_noble) {
|
|
|
- if (noble_weight * 1000 > weight * 1000) {
|
|
|
- this.$message.warning("贵金属总重量不能大于商品总重量!");
|
|
|
+ if (!this.loading) {
|
|
|
+ this.loading = true;
|
|
|
+ if (this.spec_tableData.length === 0) {
|
|
|
+ this.$message.warning("请录入商品规格信息!");
|
|
|
this.loading = false;
|
|
|
return;
|
|
|
}
|
|
|
- }
|
|
|
- if (is_gold_price === "1" && this.is_noble) {
|
|
|
- let is_p = true;
|
|
|
- this.ladder_tableData.forEach((v) => {
|
|
|
- if (v.nake_fee * 1 !== 0) {
|
|
|
- is_p = false;
|
|
|
+ let isMust = true;
|
|
|
+ this.spec_tableData.forEach((e) => {
|
|
|
+ if (e.isMust && !e.spec_value_id) {
|
|
|
+ isMust = false;
|
|
|
}
|
|
|
});
|
|
|
- if (!is_p) {
|
|
|
- this.$message.warning(
|
|
|
- "启用实时金价的贵金属商品不能填写成本单价!"
|
|
|
- );
|
|
|
+ if (!isMust) {
|
|
|
+ this.$message.warning("分类绑定的规格必须填写规格值!");
|
|
|
this.loading = false;
|
|
|
return;
|
|
|
}
|
|
|
- }
|
|
|
- // if (good_type === "1") {
|
|
|
- // let set_num = moq * 1;
|
|
|
- // let isok = true;
|
|
|
- // this.ladder_tableData.forEach((e) => {
|
|
|
- // if (e.min_num * 1 < set_num) {
|
|
|
- // isok = false;
|
|
|
- // }
|
|
|
- // });
|
|
|
- // if (!isok) {
|
|
|
- // this.$message.warning("阶梯成本的起订量不能小于定制起订量!");
|
|
|
- // this.loading = false;
|
|
|
- // return;
|
|
|
- // }
|
|
|
- // }
|
|
|
+ if (this.ladder_tableData.length === 0) {
|
|
|
+ this.$message.warning("请录入阶梯成本!");
|
|
|
+ this.loading = false;
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ const {
|
|
|
+ noble_weight,
|
|
|
+ weight,
|
|
|
+ good_type,
|
|
|
+ moq,
|
|
|
+ is_step,
|
|
|
+ is_gold_price,
|
|
|
+ } = this.ruleForm;
|
|
|
+ // if (is_step === "0" && this.ladder_tableData.length > 1) {
|
|
|
+ // this.$message.warning("不启用阶梯成本,只能录入一条阶梯成本信息!");
|
|
|
+ // this.loading = false;
|
|
|
+ // return;
|
|
|
+ // }
|
|
|
+ if (this.is_noble) {
|
|
|
+ if (noble_weight * 1000 > weight * 1000) {
|
|
|
+ this.$message.warning("贵金属总重量不能大于商品总重量!");
|
|
|
+ this.loading = false;
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (is_gold_price === "1" && this.is_noble) {
|
|
|
+ let is_p = true;
|
|
|
+ this.ladder_tableData.forEach((v) => {
|
|
|
+ if (v.nake_fee * 1 !== 0) {
|
|
|
+ is_p = false;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ if (!is_p) {
|
|
|
+ this.$message.warning(
|
|
|
+ "启用实时金价的贵金属商品不能填写成本单价!"
|
|
|
+ );
|
|
|
+ this.loading = false;
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ // if (good_type === "1") {
|
|
|
+ // let set_num = moq * 1;
|
|
|
+ // let isok = true;
|
|
|
+ // this.ladder_tableData.forEach((e) => {
|
|
|
+ // if (e.min_num * 1 < set_num) {
|
|
|
+ // isok = false;
|
|
|
+ // }
|
|
|
+ // });
|
|
|
+ // if (!isok) {
|
|
|
+ // this.$message.warning("阶梯成本的起订量不能小于定制起订量!");
|
|
|
+ // this.loading = false;
|
|
|
+ // return;
|
|
|
+ // }
|
|
|
+ // }
|
|
|
|
|
|
- let model = JSON.parse(JSON.stringify(this.ruleForm));
|
|
|
- model.cat_id = model.cat_id.toString();
|
|
|
- model.brandid = model.brandid.toString();
|
|
|
- model.supplierNo = model.supplierNo.toString();
|
|
|
- model.delivery_place = model.delivery_place.toString();
|
|
|
- model.origin_place = model.origin_place.toString();
|
|
|
- model.good_info_img = model.good_info_img.toString();
|
|
|
- model.good_img = model.good_img.toString();
|
|
|
- model.unit = model.unit.toString();
|
|
|
- model.speclist = JSON.parse(JSON.stringify(this.setResData(1)));
|
|
|
- model.good_ladder = JSON.parse(JSON.stringify(this.setResData(2)));
|
|
|
- model.config = model.config.toString();
|
|
|
- model.is_exclusive =
|
|
|
- model.is_exclusive.length > 0
|
|
|
- ? model.is_exclusive[model.is_exclusive.length - 1]
|
|
|
- : "";
|
|
|
- let res = {};
|
|
|
- delete model["id"];
|
|
|
- if (this.type === "add") {
|
|
|
- delete model["spuCode"];
|
|
|
- res = await asyncRequest.add(model);
|
|
|
- } else if (this.type === "editBase") {
|
|
|
- let item1 = this.setModel(model, "1");
|
|
|
- res = await asyncRequest.update(item1);
|
|
|
- } else if (this.type === "editCoin") {
|
|
|
- let item2 = this.setModel(model, "2");
|
|
|
- res = await asyncRequest.updateP(item2);
|
|
|
- } else {
|
|
|
- model.companyNo = model.company_id;
|
|
|
- delete model["company_id"];
|
|
|
- res = await asyncRequest.edit_update(model);
|
|
|
- }
|
|
|
- console.log(res);
|
|
|
- this.loading = false;
|
|
|
- const { code, data, message } = res;
|
|
|
- if (code === 0) {
|
|
|
- const title =
|
|
|
- this.type === "add"
|
|
|
- ? "新建成功!"
|
|
|
- : this.type === "editBase"
|
|
|
- ? "基础信息修改成功!"
|
|
|
- : this.type === "editCoin"
|
|
|
- ? "成本信息修改成功!"
|
|
|
- : "商品信息修改成功";
|
|
|
- this.$notify.success({
|
|
|
- title: title,
|
|
|
- message: "",
|
|
|
- });
|
|
|
- this.showModelThis = false;
|
|
|
- // 刷新
|
|
|
- this.$emit("refresh");
|
|
|
- } else if (code >= 100 && code <= 104) {
|
|
|
- await this.logout();
|
|
|
- } else {
|
|
|
- this.$message.warning(message);
|
|
|
+ let model = JSON.parse(JSON.stringify(this.ruleForm));
|
|
|
+ model.cat_id = model.cat_id.toString();
|
|
|
+ model.brandid = model.brandid.toString();
|
|
|
+ model.supplierNo = model.supplierNo.toString();
|
|
|
+ model.delivery_place = model.delivery_place.toString();
|
|
|
+ model.origin_place = model.origin_place.toString();
|
|
|
+ model.good_info_img = model.good_info_img.toString();
|
|
|
+ model.good_img = model.good_img.toString();
|
|
|
+ model.unit = model.unit.toString();
|
|
|
+ model.speclist = JSON.parse(JSON.stringify(this.setResData(1)));
|
|
|
+ model.good_ladder = JSON.parse(JSON.stringify(this.setResData(2)));
|
|
|
+ model.config = model.config.toString();
|
|
|
+ model.is_exclusive =
|
|
|
+ model.is_exclusive.length > 0
|
|
|
+ ? model.is_exclusive[model.is_exclusive.length - 1]
|
|
|
+ : "";
|
|
|
+ let res = {};
|
|
|
+ delete model["id"];
|
|
|
+ if (this.type === "add") {
|
|
|
+ delete model["spuCode"];
|
|
|
+ res = await asyncRequest.add(model);
|
|
|
+ } else if (this.type === "editBase") {
|
|
|
+ let item1 = this.setModel(model, "1");
|
|
|
+ res = await asyncRequest.update(item1);
|
|
|
+ } else if (this.type === "editCoin") {
|
|
|
+ let item2 = this.setModel(model, "2");
|
|
|
+ res = await asyncRequest.updateP(item2);
|
|
|
+ } else {
|
|
|
+ model.companyNo = model.company_id;
|
|
|
+ delete model["company_id"];
|
|
|
+ res = await asyncRequest.edit_update(model);
|
|
|
+ }
|
|
|
+ console.log(res);
|
|
|
+ this.loading = false;
|
|
|
+ const { code, data, message } = res;
|
|
|
+ if (code === 0) {
|
|
|
+ const title =
|
|
|
+ this.type === "add"
|
|
|
+ ? "新建成功!"
|
|
|
+ : this.type === "editBase"
|
|
|
+ ? "基础信息修改成功!"
|
|
|
+ : this.type === "editCoin"
|
|
|
+ ? "成本信息修改成功!"
|
|
|
+ : "商品信息修改成功";
|
|
|
+ this.$notify.success({
|
|
|
+ title: title,
|
|
|
+ message: "",
|
|
|
+ });
|
|
|
+ this.showModelThis = false;
|
|
|
+ // 刷新
|
|
|
+ this.$emit("refresh");
|
|
|
+ } else if (code >= 100 && code <= 104) {
|
|
|
+ await this.logout();
|
|
|
+ } else {
|
|
|
+ this.$message.warning(message);
|
|
|
+ }
|
|
|
}
|
|
|
} else {
|
|
|
- console.log(valid);
|
|
|
console.log("error submit!!");
|
|
|
return false;
|
|
|
}
|