{{orderStatistics.balanceCount?orderStatistics.balanceCount:0}}/0
@@ -276,7 +278,9 @@ import {
exportExcelTradingApi, getmyDataApi,
getRunningWaterByTissueApi,
getTissueByDataApi,
- getTradingPageApi
+ getTradingPageApi,
+ getDicts,
+ getStaffByStorId
} from "@/api/allOrder";
export default {
@@ -312,6 +316,9 @@ export default {
deptType:"3",
storeId:"",
deptId:"",
+ userName:"",
+ staffId:"",
+ dataRange:[],
},
orderStatistics:{
CASH:"0",
@@ -351,7 +358,8 @@ export default {
await getmyDataApi(this.addDateRange(this.queryParams)).then( response => {
this.queryParams.deptId = response.data.deptId;
this.getList()
-
+ this.getDicts()
+ this.getStaffByStorId()
})
},
exportExcelCashier() {
@@ -382,6 +390,7 @@ export default {
// 获取列表信息
async getList(val){
+
// await this.getDeptList()
let dateRange = []
if (this.beginTime && this.endTime) {
@@ -397,6 +406,21 @@ export default {
})
},
+ // 获取字典
+ async getStaffByStorId() {
+ getStaffByStorId().then(response => {
+ this.staffList = response.data;
+ })
+ },
+ // 获取字典
+ async getDicts() {
+ getDicts("payment_channel").then(response => {
+ this.dict = response.data;
+ })
+ getDicts("payment_type").then(response => {
+ this.dictPayType = response.data;
+ })
+ },
getOrdersInfo(data) {
this.dialogVisible = true;
this.ordersInfo = data
diff --git a/fuintAdmin/src/views/financialStatement/reconciliation/tab/trading.vue b/fuintAdmin/src/views/financialStatement/reconciliation/tab/trading.vue
index cce83ae3c..66176f758 100644
--- a/fuintAdmin/src/views/financialStatement/reconciliation/tab/trading.vue
+++ b/fuintAdmin/src/views/financialStatement/reconciliation/tab/trading.vue
@@ -146,7 +146,7 @@