Переглянути джерело

修复提现申请时间筛选

hwb0 3 роки тому
батько
коміт
4c91f2ea9b
1 змінених файлів з 3 додано та 3 видалено
  1. 3 3
      src/views/finance/withdraw/index.vue

+ 3 - 3
src/views/finance/withdraw/index.vue

@@ -136,7 +136,7 @@ export default {
       queryParams: {
         name: "",
         startDay: "",
-        startTime: "",
+        endDay: "",
         channelId: "",
         status: null,
       },
@@ -217,11 +217,11 @@ export default {
     tardeTime(e) {
       if (e) {
         this.queryParams.startDay = e[0];
-        this.queryParams.startTime = e[1];
+        this.queryParams.endDay = e[1];
         this.handleQuery();
       } else {
         this.queryParams.startDay = "";
-        this.queryParams.startTime = "";
+        this.queryParams.endDay = "";
         this.handleQuery();
       }
     },