Compare commits
4 Commits
10058dcc5d
...
lixuan
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
992fb5ebc1 | ||
|
|
d031b27f49 | ||
| 42f06ace84 | |||
|
|
62eb5ecf81 |
@@ -22,6 +22,7 @@ service.interceptors.request.use(
|
||||
const JSESSIONID = utils.uuid();
|
||||
config.headers["JSESSIONID"] = JSESSIONID;
|
||||
config.headers["token"] = utils.bcrypt(JSESSIONID);
|
||||
config.headers['dataSources'] = 'WEB'
|
||||
|
||||
if (env === "development") {
|
||||
return config;
|
||||
|
||||
@@ -253,7 +253,9 @@ export default {
|
||||
currentPage: 1,
|
||||
pageSize: 10,
|
||||
total: 0,
|
||||
params: {},
|
||||
params: {
|
||||
|
||||
},
|
||||
},
|
||||
oilCompanyMatch: {},
|
||||
billData:[],
|
||||
@@ -335,6 +337,7 @@ export default {
|
||||
},
|
||||
//table list
|
||||
getByPage() {
|
||||
this.parameter.params.customerId=this.$store.state.user.companyId
|
||||
order.getByPage(this.parameter).then((res) => {
|
||||
this.tableData = res.data.list;
|
||||
this.total = res.data.totalCount;
|
||||
|
||||
@@ -107,14 +107,14 @@ export default {
|
||||
"form.salePrice": {
|
||||
handler(n, o) {
|
||||
if(n){
|
||||
this.form.preAmount = this.form.salePrice*(this.form.preQuantity?this.form.preQuantity:0)
|
||||
this.form.preAmount = (this.form.salePrice*(this.form.preQuantity?this.form.preQuantity:0)).toFixed(2)
|
||||
}
|
||||
},
|
||||
},
|
||||
"form.preQuantity": {
|
||||
handler(n, o) {
|
||||
if(n){
|
||||
this.form.preAmount = this.form.preQuantity*(this.form.salePrice?this.form.salePrice:0)
|
||||
this.form.preAmount = (this.form.preQuantity*(this.form.salePrice?this.form.salePrice:0)).toFixed(2)
|
||||
}
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user