|
|
|
@ -15,7 +15,7 @@
|
|
|
|
|
<el-button-group style="display:flex;">
|
|
|
|
|
<el-button icon="el-icon-view" type="primary" @click="hideSearch">显示/隐藏搜索栏</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-refresh" @click="onReset">重置</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-search" @click="getList">查询</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-search" @click="Onsearch">查询</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-upload2" @click="exportExcel">导出医疗器械信息</el-button>
|
|
|
|
|
</el-button-group>
|
|
|
|
|
</div>
|
|
|
|
@ -129,6 +129,10 @@ export default {
|
|
|
|
|
hideSearch() {
|
|
|
|
|
this.showSearch = !this.showSearch;
|
|
|
|
|
},
|
|
|
|
|
Onsearch(){
|
|
|
|
|
this.filterQuery.page=1;
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
getList() {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
filterLog(this.filterQuery)
|
|
|
|
|