chore: 构建稳定版本

This commit is contained in:
陈淳
2023-12-11 09:55:12 +08:00
parent 098d4bc85f
commit 769a6a9c63
756 changed files with 10431 additions and 19867 deletions

View File

@@ -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();
}
/** 重置按钮操作 */