|
@@ -392,51 +392,47 @@ export default {
|
|
|
this.loading = false;
|
|
|
return;
|
|
|
}
|
|
|
- // if (this.ladder_tableData.length === 0) {
|
|
|
- // this.$message.warning("请录入阶梯成本!");
|
|
|
- // this.loading = false;
|
|
|
- // }
|
|
|
- // let model = JSON.parse(JSON.stringify(this.ruleForm));
|
|
|
- // model.cat_id = model.cat_id[model.cat_id.length - 1];
|
|
|
- // 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.unit = model.unit.toString();
|
|
|
- // model.speclist = JSON.parse(JSON.stringify(this.setResData(1)));
|
|
|
- // model.good_ladder = JSON.parse(JSON.stringify(this.setResData(2)));
|
|
|
- // let res = {};
|
|
|
- // delete model["id"];
|
|
|
- // if (this.type === "add") {
|
|
|
- // delete model["id"];
|
|
|
- // 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 {
|
|
|
- // let item2 = this.setModel(model, "2");
|
|
|
- // res = await asyncRequest.updateP(item2);
|
|
|
- // }
|
|
|
- // console.log(res);
|
|
|
- // this.loading = false;
|
|
|
- // if (res && res.code === 0) {
|
|
|
- // const { spuCode } = res.data;
|
|
|
- // const title =
|
|
|
- // this.type === "add"
|
|
|
- // ? "新建成功!"
|
|
|
- // : this.type === "editBase"
|
|
|
- // ? "基础信息修改成功!"
|
|
|
- // : "成本信息修改成功!";
|
|
|
- // this.$notify.success({
|
|
|
- // title: title,
|
|
|
- // message: "",
|
|
|
- // });
|
|
|
- // this.showModelThis = false;
|
|
|
- // // 刷新
|
|
|
- // this.$emit("refresh", { spuCode: spuCode });
|
|
|
- // }
|
|
|
+ let model = JSON.parse(JSON.stringify(this.ruleForm));
|
|
|
+ model.cat_id = model.cat_id[model.cat_id.length - 1];
|
|
|
+ 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.unit = model.unit.toString();
|
|
|
+ model.speclist = JSON.parse(JSON.stringify(this.setResData(1)));
|
|
|
+ model.good_ladder = JSON.parse(JSON.stringify(this.setResData(2)));
|
|
|
+ let res = {};
|
|
|
+ delete model["id"];
|
|
|
+ if (this.type === "add") {
|
|
|
+ delete model["id"];
|
|
|
+ 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 {
|
|
|
+ let item2 = this.setModel(model, "2");
|
|
|
+ res = await asyncRequest.updateP(item2);
|
|
|
+ }
|
|
|
+ console.log(res);
|
|
|
+ this.loading = false;
|
|
|
+ if (res && res.code === 0) {
|
|
|
+ const { spuCode } = res.data;
|
|
|
+ const title =
|
|
|
+ this.type === "add"
|
|
|
+ ? "新建成功!"
|
|
|
+ : this.type === "editBase"
|
|
|
+ ? "基础信息修改成功!"
|
|
|
+ : "成本信息修改成功!";
|
|
|
+ this.$notify.success({
|
|
|
+ title: title,
|
|
|
+ message: "",
|
|
|
+ });
|
|
|
+ this.showModelThis = false;
|
|
|
+ // 刷新
|
|
|
+ this.$emit("refresh", { spuCode: spuCode });
|
|
|
+ }
|
|
|
} else {
|
|
|
console.log("error submit!!");
|
|
|
return false;
|