diff --git a/src/api/oms/emisWaybill.js b/src/api/oms/emisWaybill.js index 02f8089..99091c6 100644 --- a/src/api/oms/emisWaybill.js +++ b/src/api/oms/emisWaybill.js @@ -93,6 +93,13 @@ export function getOmsOrderStatInfo() { }) } +export function getOmsBillFeeStatInfo() { + return request({ + url: '/oms2c/emisWaybill/getOmsBillFeeStatInfo', + method: 'get' + }) +} + export function getLatestMonthCreateOrderMapList() { return request({ url: '/oms2c/emisWaybill/getLatestMonthCreateOrderMapList', diff --git a/src/views/oms/dashboard.vue b/src/views/oms/dashboard.vue index c153528..3c3df9b 100644 --- a/src/views/oms/dashboard.vue +++ b/src/views/oms/dashboard.vue @@ -242,13 +242,13 @@
- {{ omsBillFeeState.waitPayMoney}} + {{ omsBillFeeState.waitPayMoney||0}}
未付款
- {{ omsBillFeeState.totalRecedMoney}} + {{ omsBillFeeState.totalRecedMoney||0}}
已付款
@@ -394,7 +394,10 @@ export default { getOmsBillFeeStatInfo().then(response => { console.log("====>getOmsBillFeeStatInfo===>",response); - this.omsBillFeeState = response.data; + if(response.data!=null){ + this.omsBillFeeState = response.data; + } + }); diff --git a/src/views/oms/emisWaybill/OrderRecord.vue b/src/views/oms/emisWaybill/OrderRecord.vue index 30d0b4e..15e7b3b 100644 --- a/src/views/oms/emisWaybill/OrderRecord.vue +++ b/src/views/oms/emisWaybill/OrderRecord.vue @@ -224,7 +224,7 @@ - + @@ -242,8 +242,7 @@ - - + ",item); + this.form.pickStartDate=item[0]; + this.form.pickFinishDate=item[1]; + }, handlePrivSalesmen(row) { this.$router.push({ path: '/BaseMgnt/PrivSalesmen', query: { }}) },