|
@@ -21,9 +21,9 @@
|
21
|
21
|
format="yyyy-MM-dd"
|
22
|
22
|
value-format="yyyy-MM-dd"
|
23
|
23
|
placeholder="选择日期时间" align="right"></el-date-picker>
|
24
|
|
- <!--<el-input size="small" style="width: 180px;" @keyup.enter.native='searchAction' v-model.trim="search_input"-->
|
25
|
|
- <!--class="filter-item"/>-->
|
26
|
|
- <!--<el-button size="small" class="filter-item" type="primary" icon="el-icon-search" @click="search">搜索</el-button>-->
|
|
24
|
+ <el-input size="small" style="width: 180px;" @keyup.enter.native='searchAction' v-model.trim="search_input"
|
|
25
|
+ class="filter-item" v-model="query.keywords"/>
|
|
26
|
+ <el-button size="small" class="filter-item" type="primary" icon="el-icon-search" @click="search">搜索</el-button>
|
27
|
27
|
</div>
|
28
|
28
|
<div class="cell clearfix" style="justify-content: space-between;">
|
29
|
29
|
<div style="display:flex;">
|
|
@@ -109,6 +109,7 @@
|
109
|
109
|
partition_id:0,
|
110
|
110
|
page:1,
|
111
|
111
|
limit:10,
|
|
112
|
+ keywords:"",
|
112
|
113
|
},
|
113
|
114
|
schedulType: 0,
|
114
|
115
|
schedulArr: [
|
|
@@ -117,7 +118,7 @@
|
117
|
118
|
{ value: 2, label: '下午' },
|
118
|
119
|
{ value: 3, label: '晚上' }
|
119
|
120
|
],
|
120
|
|
- selected_date: new Date(),
|
|
121
|
+ selected_date: "",
|
121
|
122
|
partitionArr: [],
|
122
|
123
|
partitionType: 0,
|
123
|
124
|
tableData: [{
|
|
@@ -307,7 +308,8 @@
|
307
|
308
|
this.GetDialysisgoods()
|
308
|
309
|
},
|
309
|
310
|
search() {
|
310
|
|
-
|
|
311
|
+ this.query.page = 1
|
|
312
|
+ this.GetDialysisgoods()
|
311
|
313
|
}
|
312
|
314
|
}
|
313
|
315
|
}
|