update 修复字典列表drawer第一次点开没有值

This commit is contained in:
2026-02-12 11:34:31 +08:00
parent d3d4bfd84a
commit dcd1ccb69b

View File

@@ -14,6 +14,7 @@
<div class="table">
<BaseTable
ref="BaseTableRef"
:data="tableData"
tableName="DICT_CLASS_LIST"
hidePagination
:actionList="actionList"
@@ -97,7 +98,6 @@ const getListFun = () => {
};
getDictionaryDataApi(params).then((res: any) => {
if (res.code === 200) {
BaseTableRef.value?.setDataFun(res.data);
tableData.value = res.data;
}
});