fix(系统设置): 修改打包报错
This commit is contained in:
parent
46abc85a9f
commit
56c2ddfb94
|
@ -48,13 +48,14 @@
|
|||
|
||||
import { addOrUpdateProjectMember, getProjectMemberOptions } from '@/api/modules/project-management/projectMember';
|
||||
import { useI18n } from '@/hooks/useI18n';
|
||||
import { useUserStore } from '@/store';
|
||||
import { useAppStore } from '@/store';
|
||||
|
||||
import type { AddProjectMember, ProjectUserOption } from '@/models/projectManagement/projectAndPermission';
|
||||
|
||||
const { t } = useI18n();
|
||||
const userStore = useUserStore();
|
||||
const lastProjectId = userStore.$state?.lastProjectId;
|
||||
const appStore = useAppStore();
|
||||
|
||||
const lastProjectId = appStore.currentProjectId;
|
||||
|
||||
const props = defineProps<{
|
||||
userGroupOptions: ProjectUserOption[];
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
:title="t('system.orgTemplate.createField')"
|
||||
:ok-text="t('system.orgTemplate.save')"
|
||||
:ok-loading="drawerLoading"
|
||||
width="65%"
|
||||
:width="800"
|
||||
min-width="800px"
|
||||
unmount-on-close
|
||||
:show-continue="false"
|
||||
|
|
Loading…
Reference in New Issue