@ebiz/designer-components 0.1.98 → 0.1.99
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/designer-components.css +1 -1
- package/dist/index.mjs +15920 -15616
- package/package.json +1 -1
- package/src/components/EbizMeetingRoomSelector.vue +898 -411
- package/src/components/senior/EbizSDialog/index.vue +4 -1
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
<t-dialog v-model:visible="dialogVisible" :header="title || computedTitle" :width="dialogWidth" :top="dialogTop"
|
|
15
15
|
:attach="dialogAttach" :destroy-on-close="dialogDestroyOnClose" :mode="dialogMode" :placement="dialogPlacement"
|
|
16
16
|
:show-overlay="dialogShowOverlay" :close-on-esc-keydown="dialogCloseOnEscKeydown"
|
|
17
|
-
:close-on-overlay-click="dialogCloseOnOverlayClick" :
|
|
17
|
+
:close-on-overlay-click="dialogCloseOnOverlayClick" :confirm-btn="dialogShowFooterCompute" :cancel-btn="dialogShowFooterCompute" @close="handleDialogClose"
|
|
18
18
|
@confirm="handleDialogConfirm" @cancel="handleDialogCancel">
|
|
19
19
|
<template #header>
|
|
20
20
|
<slot name="header">
|
|
@@ -302,6 +302,9 @@ const currentParams = ref({})
|
|
|
302
302
|
// 本地维护一份表单数据的副本
|
|
303
303
|
const initFormData = ref(props.formData ? { ...props.formData } : {})
|
|
304
304
|
const localFormData = ref({ ...initFormData.value })
|
|
305
|
+
const dialogShowFooterCompute = computed(() => {
|
|
306
|
+
return props.dialogShowFooter ? {} : null
|
|
307
|
+
})
|
|
305
308
|
|
|
306
309
|
// 监听 props.formData 的变化,同步到本地数据
|
|
307
310
|
watch(() => props.formData, (newFormData) => {
|