修复bug

This commit is contained in:
weibl
2025-12-02 19:45:37 +08:00
parent 93bcbba1d3
commit 2a626564aa
21 changed files with 2471 additions and 764 deletions

View File

@@ -43,8 +43,11 @@
@remove="removeFileFun"
@load="loadTableForm"
:colNum="2"
:hidKeys="hidKeys"
>
<slot name="tableFormSlot"></slot>
<template v-for="(name) in Object.keys($slots)" :key="name" #[name]="scope">
<slot :name="name" v-bind="scope" />
</template>
</TableForm>
<template #footer>
<div>
@@ -77,6 +80,13 @@ import { getMemberListIds } from '@/utils/task';
const env = import.meta.env;
const PREFIX = env.VITE_API_PREFIX_PROJECT;
defineProps({
hidKeys: {
type: Array,
default: () => [],
},
});
const emits = defineEmits(['visibleDialog', 'loadTableForm']);
const commonStore = CommonStore();