微信收款
-
{{ orderStatistics.cash?orderStatistics.cash:0 }}元/{{orderStatistics.cashcount}}笔
-
-
-
支付宝收款
{{ orderStatistics.wechat?orderStatistics.wechat:0 }}元/{{orderStatistics.wechatcount}}笔
-
会员钱包收款
+
支付宝收款
{{ orderStatistics.alipay?orderStatistics.alipay:0 }}元/{{orderStatistics.alipaycount}}笔
-
-
-
-
-
-
-
-
+
+
会员钱包收款
+
{{ orderStatistics.balance?orderStatistics.balance:0 }}元/{{orderStatistics.balanceCount}}笔
+
+
+
+
+
+
+
+
+
现金支付收款
-
{{ orderStatistics.balance?orderStatistics.balance:0 }}元/{{orderStatistics.balanceCount}}笔
+
{{ orderStatistics.cash?orderStatistics.cash:0 }}元/{{orderStatistics.cashcount}}笔
@@ -320,7 +320,7 @@ import {
total:0,
}
},
- created() {
+ async created() {
let start = new Date();
start.setHours(0)
start.setMinutes(0)
@@ -330,16 +330,17 @@ import {
this.beginTime = start
this.endTime = new Date()
this.isSysDate = true
+ await this.getDeptList();
+
this.getList();
- this.getDeptList();
},
methods:{
- getDeptList() {
+ async getDeptList() {
// getRunningWaterByTissueApi(this.addDateRange(this.queryParams)).then( response => {
// this.deptList = response.data.records;
// })
- getmyDataApi(this.addDateRange(this.queryParams)).then( response => {
+ await getmyDataApi(this.addDateRange(this.queryParams)).then( response => {
this.queryParams.deptId = response.data.deptId;
})
},
@@ -374,7 +375,7 @@ import {
dateRange.push(this.beginTime.toLocaleDateString())
dateRange.push(this.endTime.toLocaleDateString())
}
- getTradingPageApi(this.addDateRange(this.queryParams,dateRange)).then( response => {
+ getTradingPageApi(this.addDateRange(this.queryParams,dateRange)).then( response => {
this.orderList = response.data.records;
this.total = response.data.total;
this.isSysDate = false
@@ -399,6 +400,8 @@ import {
}
this.beginTime = ""
this.endTime = ""
+ this.getDeptList()
+
this.handleQuery();
},
}
diff --git a/fuintAdmin/src/views/financialStatement/runningWater/list.vue b/fuintAdmin/src/views/financialStatement/runningWater/list.vue
index c5b96bb08..12c3e68b9 100644
--- a/fuintAdmin/src/views/financialStatement/runningWater/list.vue
+++ b/fuintAdmin/src/views/financialStatement/runningWater/list.vue
@@ -5,7 +5,7 @@