2
0

增加字典数据界面

This commit is contained in:
lai
2024-12-30 16:46:12 +08:00
parent 0a1f0d94d8
commit 3e2d8faf5e
12 changed files with 1027 additions and 45 deletions

View File

@@ -154,7 +154,7 @@ export function useTableOperate<T extends TableData<{ [key: string]: any }>>(
const operateType = ref<any>('add');
const { getData, idKey = 'id' } = options;
/** the editing row data */
const editingData: Ref<T | null> = ref(null);
const editingData: any = ref(null);
function handleAdd() {
operateType.value = 'add';