chore: 构建稳定版本
This commit is contained in:
@@ -44,8 +44,8 @@
|
||||
<pagination
|
||||
v-show="total > 0"
|
||||
:total="Number(total)"
|
||||
v-model:page="queryParams.pageNum"
|
||||
v-model:limit="queryParams.pageSize"
|
||||
v-model:page="queryParams.skipCount"
|
||||
v-model:limit="queryParams.maxResultCount"
|
||||
@pagination="getList"
|
||||
/>
|
||||
</el-row>
|
||||
@@ -76,8 +76,8 @@ const total = ref(0);
|
||||
const userIds = ref([]);
|
||||
|
||||
const queryParams = reactive({
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
skipCount: 1,
|
||||
maxResultCount: 10,
|
||||
roleId: undefined,
|
||||
userName: undefined,
|
||||
phone: undefined
|
||||
@@ -106,7 +106,7 @@ function getList() {
|
||||
}
|
||||
/** 搜索按钮操作 */
|
||||
function handleQuery() {
|
||||
queryParams.pageNum = 1;
|
||||
queryParams.skipCount = 1;
|
||||
getList();
|
||||
}
|
||||
/** 重置按钮操作 */
|
||||
|
||||
Reference in New Issue
Block a user