Parcourir la source

Merge branch 'stage' into test

xiaodai2022 il y a 2 ans
Parent
commit
a97e7985cd
1 fichiers modifiés avec 17 ajouts et 0 suppressions
  1. 17 0
      src/views/InvoiceSales/invoicePool/index.vue

+ 17 - 0
src/views/InvoiceSales/invoicePool/index.vue

@@ -428,6 +428,23 @@ export default {
         size: 15, // 每页显示条数
       };
       this.searchList();
+    },
+      async timeReturned(e) {
+      if (e.startTime !== "") {
+        this.parmValue.starttime = e.startTime;
+      } else {
+        this.parmValue.starttime = "";
+      }
+
+      if (e.endTime !== "") {
+        this.parmValue.endtime = e.endTime;
+      } else {
+        this.parmValue.endtime = "";
+      }
+      if (this.parmValue.starttime !== "" && this.parmValue.endtime !== "") {
+        this.parmValue.page = 1;
+        await this.searchList();
+      }
     },
     // 新建/编辑/详情
     openModal(id, name, contector, isDetail) {