上货量修改

product
mhsnet 2 years ago
parent 1162ba7e41
commit 01994cb07e

@ -126,6 +126,7 @@ export default {
created() { created() {
this.portalId = this.userInfo.portalId this.portalId = this.userInfo.portalId
this.getTadayPoundist() this.getTadayPoundist()
this.getTadayPoundist1()
this.getData() this.getData()
this.getMsg() this.getMsg()
this.intervalStrat() this.intervalStrat()
@ -192,10 +193,24 @@ export default {
data: { data: {
}, },
}).then(res => { }).then(res => {
console.log('hereA');
if (res.code == 200) { if (res.code == 200) {
this.tadayPoundist = res.data; this.tadayPoundist.poundNum = res.data.poundNum;
console.log(this.tadayPoundist) this.tadayPoundist.purchaseAmountSum = res.data.purchaseAmountSum;
this.tadayPoundist.salesAmountSum = res.data.salesAmountSum;
this.tadayPoundist.settlementSum = res.data.settlementSum;
}
}).catch(() => {
})
},
getTadayPoundist1() {
request({
url: "/api/messageCenter/MessageCenter/getTadayPoundist1",
method: "get",
data: {
},
}).then(res => {
if (res.code == 200) {
this.tadayPoundist.buckleWeightSum = res.data.buckleWeightSum;
} }
}).catch(() => { }).catch(() => {
}) })

Loading…
Cancel
Save