Compare commits

..

No commits in common. '42f06ace84c6b75945a67e89b18c7bfb526416da' and '10058dcc5de612a8772497316df50c6ac4d91195' have entirely different histories.

  1. 5
      src/views/order/index.vue
  2. 4
      src/views/product/components/create.vue

@ -253,9 +253,7 @@ export default {
currentPage: 1, currentPage: 1,
pageSize: 10, pageSize: 10,
total: 0, total: 0,
params: { params: {},
},
}, },
oilCompanyMatch: {}, oilCompanyMatch: {},
billData:[], billData:[],
@ -337,7 +335,6 @@ export default {
}, },
//table list //table list
getByPage() { getByPage() {
this.parameter.params.customerId=this.$store.state.user.companyId
order.getByPage(this.parameter).then((res) => { order.getByPage(this.parameter).then((res) => {
this.tableData = res.data.list; this.tableData = res.data.list;
this.total = res.data.totalCount; this.total = res.data.totalCount;

@ -107,14 +107,14 @@ export default {
"form.salePrice": { "form.salePrice": {
handler(n, o) { handler(n, o) {
if(n){ if(n){
this.form.preAmount = (this.form.salePrice*(this.form.preQuantity?this.form.preQuantity:0)).toFixed(2) this.form.preAmount = this.form.salePrice*(this.form.preQuantity?this.form.preQuantity:0)
} }
}, },
}, },
"form.preQuantity": { "form.preQuantity": {
handler(n, o) { handler(n, o) {
if(n){ if(n){
this.form.preAmount = (this.form.preQuantity*(this.form.salePrice?this.form.salePrice:0)).toFixed(2) this.form.preAmount = this.form.preQuantity*(this.form.salePrice?this.form.salePrice:0)
} }
}, },
} }

Loading…
Cancel
Save