pull/9/head
caolc 2 years ago
parent 704f3f56d9
commit 865abd6b3e
  1. 10
      src/views/product/components/create.vue

@ -132,6 +132,13 @@ export default {
}
},
},
"form.productId": {
handler(n, o) {
if (n) {
}
},
},
"form.preQuantity": {
handler(n, o) {
if (n) {
@ -209,6 +216,7 @@ export default {
}
},
productDataList(e) {
console.log(e,'******************')
this.productRowData = this.productNameList.filter((item) => item.id == e);
this.form.salePrice = this.productRowData[0].salePrice2company;
this.form.floorPrice = this.productRowData[0].floorPrice;
@ -245,7 +253,9 @@ export default {
submit() {
this.$refs["form"].validate((valid) => {
if (valid) {
this.productDataList(this.form.productId);
this.form.productMeasurement = this.productRowData[0].measurement;
delete this.form.id;
this.judgeInterface(this.form).then((res) => {
if (res.code === 20000) {
this.$message.success(res.msg);

Loading…
Cancel
Save