diff --git a/web-vue/packages/biz/views/biz/meetingInfo/form.vue b/web-vue/packages/biz/views/biz/meetingInfo/form.vue index 5e443bf9..41fe4701 100644 --- a/web-vue/packages/biz/views/biz/meetingInfo/form.vue +++ b/web-vue/packages/biz/views/biz/meetingInfo/form.vue @@ -38,6 +38,10 @@ import { BasicModal, useModalInner } from '@jeesite/core/components/Modal'; import { BizMeetingInfo, bizMeetingInfoSave, bizMeetingInfoForm } from '@jeesite/biz/api/biz/meetingInfo'; import { formatToDateTime } from '@jeesite/core/utils/dateUtil'; + import { useUserStore } from '@jeesite/core/store/modules/user'; + + const userStore = useUserStore(); + const userinfo = computed(() => userStore.getUserInfo); const emit = defineEmits(['success', 'register']);