optimize: ♻️ 删除部门报错内容

This commit is contained in:
bunny 2024-10-29 15:44:24 +08:00
parent e863367a78
commit 7bfcf190f7
2 changed files with 2 additions and 3 deletions

View File

@ -22,7 +22,6 @@ export const userInfos = reactive({
email: '', email: '',
phone: '', phone: '',
summary: '', summary: '',
nickname: '',
password: '', password: '',
sex: '', sex: '',
}); });

View File

@ -15,14 +15,14 @@ export const selectRows = ref([]);
export const formRef = ref(); export const formRef = ref();
const filesStore = useFilesStore(); const filesStore = useFilesStore();
/** 搜索初始化系统文件 */ /** 搜索初始化系统文件 */
export async function onSearch() { export async function onSearch() {
filesStore.loading = true; filesStore.loading = true;
await filesStore.getFilesList(); await filesStore.getFilesList();
filesStore.loading = false; filesStore.loading = false;
} }
/** 添加系统文件 */ /** 添加系统文件 */
export function onAdd() { export function onAdd() {
addDialog({ addDialog({
title: `${$t('addNew')}${$t('files')}`, title: `${$t('addNew')}${$t('files')}`,