@ebiz/designer-components 0.0.18-beta.4 → 0.0.18-beta.40

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.
@@ -0,0 +1,226 @@
1
+ <template>
2
+ <t-dialog v-model:visible="isVisible" :attach="attach" :body="body" :cancel-btn="cancelBtn" :close-btn="closeBtn"
3
+ :close-on-esc-keydown="closeOnEscKeydown" :close-on-overlay-click="closeOnOverlayClick"
4
+ :confirm-btn="confirmBtn" :default-visible="defaultVisible" :destroy-on-close="destroyOnClose"
5
+ :draggable="draggable" :footer="footer" :header="header" :mode="mode" :placement="placement"
6
+ :show-overlay="showOverlay" :width="width" :z-index="zIndex" @cancel="handleCancel" @close="handleClose"
7
+ @close-btn-click="handleCloseBtnClick" @confirm="handleConfirm" @esc-keydown="handleEscKeydown"
8
+ @overlay-click="handleOverlayClick" @opened="handleOpened" @closed="handleClosed"
9
+ @update:visible="handleUpdateVisible">
10
+ <!-- 头部插槽 -->
11
+ <template v-if="$slots.header" #header>
12
+ <slot name="header"></slot>
13
+ </template>
14
+
15
+ <!-- 内容插槽 -->
16
+ <template v-if="$slots.body" #body>
17
+ <slot name="body"></slot>
18
+ </template>
19
+
20
+ <!-- 默认插槽 -->
21
+ <slot></slot>
22
+
23
+ <!-- 页脚插槽 -->
24
+ <template v-if="$slots.footer" #footer>
25
+ <slot name="footer"></slot>
26
+ </template>
27
+
28
+ <!-- 取消按钮插槽 -->
29
+ <template v-if="$slots.cancelBtn" #cancel-btn>
30
+ <slot name="cancelBtn"></slot>
31
+ </template>
32
+
33
+ <!-- 确认按钮插槽 -->
34
+ <template v-if="$slots.confirmBtn" #confirm-btn>
35
+ <slot name="confirmBtn"></slot>
36
+ </template>
37
+ </t-dialog>
38
+ </template>
39
+
40
+ <script>
41
+ export default {
42
+ name: "EbizDialog"
43
+ }
44
+ </script>
45
+
46
+ <script setup>
47
+ import { ref, watch } from 'vue';
48
+ import { Dialog as TDialog } from 'tdesign-vue-next';
49
+
50
+ // 定义属性
51
+ const props = defineProps({
52
+ // 对话框挂载的节点
53
+ attach: {
54
+ type: [String, Function, Element],
55
+ default: 'body'
56
+ },
57
+ // 对话框内容
58
+ body: {
59
+ type: [String, Function],
60
+ default: ''
61
+ },
62
+ // 取消按钮,可自定义。值为 null 则不显示取消按钮。值类型为字符串,则表示自定义按钮文本,值类型为 Object 则表示透传 Button 组件属性
63
+ cancelBtn: {
64
+ type: [String, Object, null],
65
+ default: ''
66
+ },
67
+ // 关闭按钮,值为 true 显示默认关闭按钮;值为 false 则不显示关闭按钮;值类型为 string 则直接显示值;值类型为 TNode,则显示自定义按钮
68
+ closeBtn: {
69
+ type: [Boolean, String, Function],
70
+ default: true
71
+ },
72
+ // 按下 ESC 时是否触发对话框关闭
73
+ closeOnEscKeydown: {
74
+ type: Boolean,
75
+ default: undefined
76
+ },
77
+ // 点击蒙层时是否触发关闭
78
+ closeOnOverlayClick: {
79
+ type: Boolean,
80
+ default: undefined
81
+ },
82
+ // 确认按钮,可自定义。值为 null 则不显示确认按钮。值类型为字符串,则表示自定义按钮文本,值类型为 Object 则表示透传 Button 组件属性
83
+ confirmBtn: {
84
+ type: [String, Object, null],
85
+ default: ''
86
+ },
87
+ // 对话框默认是否显示
88
+ defaultVisible: {
89
+ type: Boolean,
90
+ default: false
91
+ },
92
+ // 是否在关闭弹框的时候销毁子元素
93
+ destroyOnClose: {
94
+ type: Boolean,
95
+ default: false
96
+ },
97
+ // 对话框是否可以拖拽
98
+ draggable: {
99
+ type: Boolean,
100
+ default: false
101
+ },
102
+ // 底部操作栏,默认会有"确认"和"取消"两个按钮
103
+ footer: {
104
+ type: [Boolean, Function],
105
+ default: true
106
+ },
107
+ // 头部内容
108
+ header: {
109
+ type: [String, Boolean, Function],
110
+ default: true
111
+ },
112
+ // 对话框类型
113
+ mode: {
114
+ type: String,
115
+ default: 'modal',
116
+ validator: (val) => ['modal', 'modeless', 'full-screen'].includes(val)
117
+ },
118
+ // 对话框位置,类似 CSS 中的 position
119
+ placement: {
120
+ type: String,
121
+ default: 'top',
122
+ validator: (val) => ['top', 'center'].includes(val)
123
+ },
124
+ // 是否显示遮罩层
125
+ showOverlay: {
126
+ type: Boolean,
127
+ default: true
128
+ },
129
+ // 控制对话框显示与隐藏
130
+ visible: {
131
+ type: Boolean,
132
+ default: undefined
133
+ },
134
+ // 对话框宽度
135
+ width: {
136
+ type: [String, Number],
137
+ default: undefined
138
+ },
139
+ // 对话框层级
140
+ zIndex: {
141
+ type: Number,
142
+ default: undefined
143
+ }
144
+ });
145
+
146
+ // 显示状态
147
+ const isVisible = ref(props.visible);
148
+
149
+ // 监听visible属性变化
150
+ watch(() => props.visible, (newValue) => {
151
+ isVisible.value = newValue;
152
+ });
153
+
154
+ // 定义事件
155
+ const emit = defineEmits([
156
+ 'cancel',
157
+ 'close',
158
+ 'close-btn-click',
159
+ 'confirm',
160
+ 'esc-keydown',
161
+ 'overlay-click',
162
+ 'opened',
163
+ 'closed',
164
+ 'update:visible'
165
+ ]);
166
+
167
+ // 取消按钮点击事件
168
+ const handleCancel = (e) => {
169
+ emit('cancel', { e });
170
+ emit('close', { trigger: 'cancel', e });
171
+ emit('update:visible', false);
172
+ };
173
+
174
+ // 关闭事件
175
+ const handleClose = (context) => {
176
+ emit('close', context);
177
+ emit('update:visible', false);
178
+ };
179
+
180
+ // 关闭按钮点击事件
181
+ const handleCloseBtnClick = (e) => {
182
+ emit('close-btn-click', { e });
183
+ emit('close', { trigger: 'close-btn', e });
184
+ emit('update:visible', false);
185
+ };
186
+
187
+ // 确认按钮点击事件
188
+ const handleConfirm = (e) => {
189
+ emit('confirm', { e });
190
+ emit('update:visible', false);
191
+ };
192
+
193
+ // ESC 按键按下事件
194
+ const handleEscKeydown = (e) => {
195
+ emit('esc-keydown', { e });
196
+ emit('close', { trigger: 'esc', e });
197
+ emit('update:visible', false);
198
+ };
199
+
200
+ // 遮罩层点击事件
201
+ const handleOverlayClick = (e) => {
202
+ emit('overlay-click', { e });
203
+ emit('close', { trigger: 'overlay', e });
204
+ emit('update:visible', false);
205
+ };
206
+
207
+ // 对话框打开完成事件
208
+ const handleOpened = () => {
209
+ emit('opened');
210
+ };
211
+
212
+ // 对话框关闭完成事件
213
+ const handleClosed = () => {
214
+ emit('closed');
215
+ };
216
+
217
+ // 更新可见状态
218
+ const handleUpdateVisible = (visible) => {
219
+ isVisible.value = visible;
220
+ emit('update:visible', visible);
221
+ };
222
+ </script>
223
+
224
+ <style lang="less" scoped>
225
+ /* 自定义样式 */
226
+ </style>
@@ -181,60 +181,60 @@ const emit = defineEmits([
181
181
  ]);
182
182
 
183
183
  // 处理输入事件
184
- const handleInput = (value, { e }) => {
185
- emit('update:modelValue', value);
186
- emit('input', value, { e });
184
+ const handleInput = (value, context) => {
185
+ emit('input', value, context);
187
186
  };
188
187
 
189
188
  // 处理变化事件
190
- const handleChange = (value, { e }) => {
191
- emit('change', value, { e });
189
+ const handleChange = (value, context) => {
190
+ emit('update:modelValue', value);
191
+ emit('change', value, context);
192
192
  };
193
193
 
194
194
  // 处理失去焦点事件
195
- const handleBlur = (value, { e }) => {
196
- emit('blur', value, { e });
195
+ const handleBlur = (value, context) => {
196
+ emit('blur', value, context);
197
197
  };
198
198
 
199
199
  // 处理获取焦点事件
200
- const handleFocus = (value, { e }) => {
201
- emit('focus', value, { e });
200
+ const handleFocus = (value, context) => {
201
+ emit('focus', value, context);
202
202
  };
203
203
 
204
204
  // 处理回车事件
205
- const handleEnter = (value, { e }) => {
206
- emit('enter', value, { e });
205
+ const handleEnter = (value, context) => {
206
+ emit('enter', value, context);
207
207
  };
208
208
 
209
209
  // 处理清空事件
210
- const handleClear = ({ e }) => {
210
+ const handleClear = (context) => {
211
211
  emit('update:modelValue', '');
212
- emit('clear', { e });
212
+ emit('clear', context);
213
213
  };
214
214
 
215
215
  // 处理键盘按下事件
216
- const handleKeydown = (value, { e }) => {
217
- emit('keydown', value, { e });
216
+ const handleKeydown = (value, context) => {
217
+ emit('keydown', value, context);
218
218
  };
219
219
 
220
220
  // 处理键盘按键事件
221
- const handleKeypress = (value, { e }) => {
222
- emit('keypress', value, { e });
221
+ const handleKeypress = (value, context) => {
222
+ emit('keypress', value, context);
223
223
  };
224
224
 
225
225
  // 处理键盘弹起事件
226
- const handleKeyup = (value, { e }) => {
227
- emit('keyup', value, { e });
226
+ const handleKeyup = (value, context) => {
227
+ emit('keyup', value, context);
228
228
  };
229
229
 
230
230
  // 处理鼠标进入事件
231
- const handleMouseenter = (value, { e }) => {
232
- emit('mouseenter', value, { e });
231
+ const handleMouseenter = (value, context) => {
232
+ emit('mouseenter', value, context);
233
233
  };
234
234
 
235
235
  // 处理鼠标离开事件
236
- const handleMouseleave = (value, { e }) => {
237
- emit('mouseleave', value, { e });
236
+ const handleMouseleave = (value, context) => {
237
+ emit('mouseleave', value, context);
238
238
  };
239
239
  </script>
240
240