| | |
| | | v-hasPermi="['shop:export']" |
| | | >导出</el-button> |
| | | </el-col> |
| | | <right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar> |
| | | <right-toolbar :search="false" @refreshTable="getList"></right-toolbar> |
| | | </el-row> |
| | | |
| | | <HxlhTable |
| | |
| | | |
| | | /** 搜索按钮操作 */ |
| | | function handleQuery() { |
| | | page.value.current = 1; |
| | | queryParams.value.pageNum = 1; |
| | | getList(); |
| | | } |
| | |
| | | }); |
| | | |
| | | function changePageNo(currentPage) { |
| | | queryParams.value.pageNum = currentPage; |
| | | page.value.current = currentPage; |
| | | queryParams.value.pageNum = currentPage; |
| | | getList(); |
| | | } |
| | | |