提交 bb8357ab 编写于 作者: chendeli's avatar chendeli

库存字段

上级 60ec9394
...@@ -790,9 +790,11 @@ ...@@ -790,9 +790,11 @@
} }
this.formData.stock -= this.stock.num this.formData.stock -= this.stock.num
this.formData.decrStock = this.formData.stock this.formData.decrStock = this.formData.stock
this.formData.incrStock = ''
}else if(this.stock.type == 2){ }else if(this.stock.type == 2){
this.formData.stock = Number(this.stock.num) + Number(this.formData.stock) this.formData.stock = Number(this.stock.num) + Number(this.formData.stock)
this.formData.incrStock = this.formData.stock this.formData.incrStock = this.formData.stock
this.formData.decrStock = ''
} }
this.formData.goodsStock = this.formData.stock this.formData.goodsStock = this.formData.stock
this.stockDio = false this.stockDio = false
...@@ -851,7 +853,11 @@ ...@@ -851,7 +853,11 @@
this.formData.costPrice = this.formData.optPrice*100 this.formData.costPrice = this.formData.optPrice*100
updateGoods(this.formData).then((res)=>{ updateGoods(this.formData).then((res)=>{
if (res.code !== '000000') { if (res.code !== '000000') {
return this.$message.error(res.message); // return this.$message.error(res.message);
return this.$message({
message: res.message,
type: 'error'
});
} }
vm.$message.success("操作成功"); vm.$message.success("操作成功");
}) })
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册