xiaodai2022 2 anni fa
parent
commit
53b2bb2576
1 ha cambiato i file con 17 aggiunte e 0 eliminazioni
  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) {