refactor(user-config): 统一数据获取方法调用

- 移除 fnGetData 函数中的 searchForm 参数传递
- 修正分页重置后的数据刷新逻辑
- 简化多个用户配置页面的数据获取方式
- 保持表格选择状态清理功能的一致性
dev_flv
wangyan 2026-01-08 17:01:18 +08:00
parent dc573cead8
commit 27dc13ffdb
16 changed files with 16 additions and 16 deletions

View File

@ -251,7 +251,7 @@ const fnGoEdit = async (id) => {
};
const fnResetPaginationTransfer = () => {
fnGetData(searchForm);
fnGetData();
tableRef.value.clearSelection();
};

View File

@ -198,7 +198,7 @@ const fnGoEdit = async (id) => {
};
const fnResetPaginationTransfer = () => {
fnGetData(searchForm);
fnGetData();
tableRef.value.clearSelection();
};

View File

@ -246,7 +246,7 @@ const fnGoEdit = async (id) => {
};
const fnResetPaginationTransfer = () => {
fnGetData(searchForm);
fnGetData();
tableRef.value.clearSelection();
};

View File

@ -245,7 +245,7 @@ const fnGoEdit = async (id) => {
};
const fnResetPaginationTransfer = () => {
fnGetData(searchForm);
fnGetData();
tableRef.value.clearSelection();
};

View File

@ -239,7 +239,7 @@ const fnGoEdit = async (id) => {
};
const fnResetPaginationTransfer = () => {
fnGetData(searchForm);
fnGetData();
tableRef.value.clearSelection();
};

View File

@ -86,7 +86,7 @@ const { list, pagination, searchForm, fnGetData, fnResetPagination, tableRef } =
useListData(getOutsourcedList);
const fnResetPaginationTransfer = () => {
fnGetData(searchForm);
fnGetData();
};
</script>

View File

@ -122,7 +122,7 @@ const { list, pagination, searchForm, fnGetData, fnResetPagination, tableRef } =
});
const fnResetPaginationTransfer = () => {
fnGetData(searchForm);
fnGetData();
};
</script>

View File

@ -87,7 +87,7 @@ const { list, pagination, searchForm, fnGetData, fnResetPagination, tableRef } =
useListData(getOutsourcedList);
const fnResetPaginationTransfer = () => {
fnGetData(searchForm);
fnGetData();
};
</script>

View File

@ -99,7 +99,7 @@ const { list, pagination, searchForm, fnGetData, fnResetPagination, tableRef } =
});
const fnResetPaginationTransfer = () => {
fnGetData(searchForm);
fnGetData();
};
</script>

View File

@ -205,7 +205,7 @@ const fnGetUnitsList = async () => {
fnGetUnitsList();
const fnResetPaginationTransfer = () => {
fnGetData(searchForm);
fnGetData();
};
const fnHandleDelete = async (OUTSOURCED_ID) => {

View File

@ -196,7 +196,7 @@ const fnGoEdit = async (id) => {
};
const fnResetPaginationTransfer = () => {
fnGetData(searchForm);
fnGetData();
tableRef.value.clearSelection();
};

View File

@ -87,7 +87,7 @@ const { list, pagination, searchForm, fnGetData, fnResetPagination, tableRef } =
useListData(getOutsourcedList);
const fnResetPaginationTransfer = () => {
fnGetData(searchForm);
fnGetData();
};
</script>

View File

@ -99,7 +99,7 @@ const { list, pagination, searchForm, fnGetData, fnResetPagination, tableRef } =
});
const fnResetPaginationTransfer = () => {
fnGetData(searchForm);
fnGetData();
};
</script>

View File

@ -128,7 +128,7 @@ const { list, pagination, searchForm, fnGetData, fnResetPagination, tableRef } =
useListData(getUnitsList);
const fnResetPaginationTransfer = () => {
fnGetData(searchForm);
fnGetData();
};
const isTrueDelete = async (UNITS_ID) => {

View File

@ -196,7 +196,7 @@ const fnGoEdit = async (id) => {
};
const fnResetPaginationTransfer = () => {
fnGetData(searchForm);
fnGetData();
tableRef.value.clearSelection();
};

View File

@ -196,7 +196,7 @@ const fnGoEdit = async (id) => {
};
const fnResetPaginationTransfer = () => {
fnGetData(searchForm);
fnGetData();
tableRef.value.clearSelection();
};