Ver código fonte

Merge branch 'dev' into 'test'

Dev

See merge request quanshu/mp-ui-pc!111
hunagwb 3 anos atrás
pai
commit
7bea4abce8
1 arquivos alterados com 4 adições e 4 exclusões
  1. 4 4
      src/views/finance/withdraw/index.vue

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

@@ -136,7 +136,7 @@ export default {
       queryParams: {
         name: "",
         startDay: "",
-        startTime: "",
+        endDay: "",
         channelId: "",
         status: null,
       },
@@ -198,7 +198,7 @@ export default {
       this.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();
       }
     },