|
@@ -358,11 +358,10 @@ export default {
|
|
|
platform_id: this.platform_id,
|
|
|
spuCode: this.spuCode,
|
|
|
});
|
|
|
- const { sale_price, new_cost_fee } = data;
|
|
|
const resModel = {
|
|
|
isok: code,
|
|
|
- price: code === 0 ? sale_price : "0",
|
|
|
- sale_cost_fee: code === 0 ? new_cost_fee : "0",
|
|
|
+ price: code === 0 ? data.sale_price : "0",
|
|
|
+ sale_cost_fee: code === 0 ? data.new_cost_fee : "0",
|
|
|
message: message,
|
|
|
};
|
|
|
return resModel;
|
|
@@ -414,18 +413,17 @@ export default {
|
|
|
this.$message.warning("请选择一个系统阶梯!");
|
|
|
return;
|
|
|
}
|
|
|
- const isok = true;
|
|
|
+ let is_ok = true;
|
|
|
this.nakelist.forEach((e) => {
|
|
|
if (e.sale_good_price + "" === "0" && e.sale_cost_fee + "" === "0") {
|
|
|
- isok = false;
|
|
|
+ is_ok = false;
|
|
|
}
|
|
|
});
|
|
|
- if (!isok) {
|
|
|
+ if (!is_ok) {
|
|
|
this.$message.warning("暂无系统售价,请设置毛利率!");
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- this.nakelist[sii].sale_cost_fee = sale_cost_fee;
|
|
|
let index = this.nakelist.findIndex((si) => si.id === id);
|
|
|
const {
|
|
|
min_num,
|