大屏项目初始化

This commit is contained in:
2026-03-07 12:13:00 +08:00
parent d887108e1a
commit b7bfdfd2bc
9 changed files with 222 additions and 71 deletions

View File

@@ -138,12 +138,12 @@ const dialogVisible = ref(false)
async function getDataList() {
loading.value = true
try {
const reqParmas = {
const reqParams = {
... searchForm,
pageNum: pagination.pageNum,
pageSize: pagination.pageSize,
}
const res = await getHomeUserList(reqParmas);
const res = await getHomeUserList(reqParams);
pagination.total = res.total;
tableData.value = res.list || [];
} catch (error) {