1
<template>
vben
authored
5 years ago
2
<PageWrapper title="modal组件使用示例">
3
4
<Alert
message="使用 useModal 进行弹窗操作,默认可以拖动,可以通过 draggable
5
参数进行控制是否可以拖动/全屏,并演示了在Modal内动态加载内容并自动调整高度"
6
7
show-icon
/>
vben
authored
4 years ago
8
<a-button type="primary" class="my-4" @click="openModalLoading">
9
打开弹窗,加载动态数据并自动调整高度(默认可以拖动/全屏)
vben
authored
4 years ago
10
</a-button>
11
vben
authored
5 years ago
12
<Alert message="内外同时同时显示隐藏" show-icon />
vben
authored
4 years ago
13
<a-button type="primary" class="my-4" @click="openModal2"> 打开弹窗 </a-button>
vben
authored
5 years ago
14
<Alert message="自适应高度" show-icon />
vben
authored
4 years ago
15
<a-button type="primary" class="my-4" @click="openModal3"> 打开弹窗 </a-button>
16
Vben
authored
4 years ago
17
<Alert message="内外数据交互" show-icon />
vben
authored
4 years ago
18
<a-button type="primary" class="my-4" @click="send"> 打开弹窗并传递数据 </a-button>
19
20
21
22
23
24
25
26
27
<Alert message="使用动态组件的方式在页面内使用多个弹窗" show-icon />
<a-space>
<a-button type="primary" class="my-4" @click="openTargetModal(1)"> 打开弹窗1 </a-button>
<a-button type="primary" class="my-4" @click="openTargetModal(2)"> 打开弹窗2 </a-button>
<a-button type="primary" class="my-4" @click="openTargetModal(3)"> 打开弹窗3 </a-button>
<a-button type="primary" class="my-4" @click="openTargetModal(4)"> 打开弹窗4 </a-button>
</a-space>
28
<component :is="currentModal" v-model:visible="modalVisible" :userData="userData" />
29
30
<Modal1 @register="register1" :minHeight="100" />
31
32
33
<Modal2 @register="register2" />
<Modal3 @register="register3" />
<Modal4 @register="register4" />
vben
authored
5 years ago
34
</PageWrapper>
35
36
</template>
<script lang="ts">
37
import { defineComponent, shallowRef, ComponentOptions, ref, nextTick } from 'vue';
38
import { Alert, Space } from 'ant-design-vue';
39
40
41
42
43
import { useModal } from '/@/components/Modal';
import Modal1 from './Modal1.vue';
import Modal2 from './Modal2.vue';
import Modal3 from './Modal3.vue';
import Modal4 from './Modal4.vue';
vben
authored
5 years ago
44
import { PageWrapper } from '/@/components/Page';
45
import { type Nullable } from '@vben/types';
vben
authored
5 years ago
46
47
export default defineComponent({
48
components: { Alert, Modal1, Modal2, Modal3, Modal4, PageWrapper, ASpace: Space },
49
setup() {
50
const currentModal = shallowRef<Nullable<ComponentOptions>>(null);
51
const [register1, { openModal: openModal1 }] = useModal();
52
53
const [register2, { openModal: openModal2 }] = useModal();
const [register3, { openModal: openModal3 }] = useModal();
vben
authored
5 years ago
54
const [register4, { openModal: openModal4 }] = useModal();
55
56
57
const modalVisible = ref<Boolean>(false);
const userData = ref<any>(null);
58
function send() {
vben
authored
5 years ago
59
60
61
62
openModal4(true, {
data: 'content',
info: 'Info',
});
63
64
}
function openModalLoading() {
65
66
67
68
69
openModal1(true);
// setModalProps({ loading: true });
// setTimeout(() => {
// setModalProps({ loading: false });
// }, 2000);
70
}
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
function openTargetModal(index) {
switch (index) {
case 1:
currentModal.value = Modal1;
break;
case 2:
currentModal.value = Modal2;
break;
case 3:
currentModal.value = Modal3;
break;
default:
currentModal.value = Modal4;
break;
}
nextTick(() => {
88
89
90
91
92
// `useModal` not working with dynamic component
// passing data through `userData` prop
userData.value = { data: Math.random(), info: 'Info222' };
// open the target modal
modalVisible.value = true;
93
94
95
});
}
96
97
98
99
100
101
102
103
104
return {
register1,
openModal1,
register2,
openModal2,
register3,
openModal3,
register4,
openModal4,
105
106
modalVisible,
userData,
107
openTargetModal,
108
send,
109
currentModal,
110
111
112
113
114
openModalLoading,
};
},
});
</script>