修复bug
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user