walter 10 tháng trước cách đây
mục cha
commit
ef06900960
1 tập tin đã thay đổi với 4 bổ sung1 xóa
  1. 4 1
      src/components/IntegralEventSelector.vue

+ 4 - 1
src/components/IntegralEventSelector.vue

@@ -29,7 +29,6 @@
               value-format="yyyy-MM-dd"
               editable
               :clearable="false"
-              :picker-options="{onPick:getList}"
             />
           </el-form-item>
           <br/>
@@ -183,11 +182,15 @@ export default {
         this.searchForm.startDate = this.$moment(val[0]).format('YYYY-MM-DD')
         this.searchForm.endDate = this.$moment(val[1]).format('YYYY-MM-DD')
       }
+      this.searchForm.page = 1
+      this.getList()
     },
     'searchForm.ptId'(val){
+      this.searchForm.page = 1
       this.getList()
     },
     'searchForm.keyword'(val){
+      this.searchForm.page = 1
       this.getList()
     }
   },