|
@@ -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()
|
|
|
}
|
|
|
},
|