wangzhibo
2026-07-16 b57020623cf0c946706573bf102e548c3a544423
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<template>
    <div class="scope">
        <div class="h">
            <el-tag size="small" effect="dark" disable-transitions>event</el-tag>
            <span>组件事件</span>
        </div>
 
        <div class="c">
            <el-button @click="open">预览</el-button>
            <demo-code :files="['form/event.vue']" />
 
            <!-- 自定义表单组件 -->
            <cl-form ref="Form"></cl-form>
        </div>
 
        <div class="f">
            <span class="date">2024-01-01</span>
        </div>
    </div>
</template>
 
<script setup lang="ts">
import { useForm } from '@cool-vue/crud';
import { ElMessage } from 'element-plus';
 
const Form = useForm();
 
function open() {
    Form.value?.open({
        title: '组件事件',
        items: [
            {
                label: '账号',
                prop: 'account',
                component: {
                    name: 'el-input',
                    props: {
                        // 组件内 emit 的用 on[name] 接收,如 onChange、onInput、onBlur 等
                        // 前提是组件内有触发事件
                        onBlur() {
                            ElMessage.info('账号检查中');
                        }
                    }
                }
            },
            {
                label: '是否实名',
                prop: 'status',
                value: 1,
                component: {
                    name: 'el-radio-group',
                    options: [
                        {
                            label: '关闭',
                            value: 0
                        },
                        {
                            label: '开启',
                            value: 1
                        }
                    ],
                    props: {
                        // 值改变事件
                        onChange(val: number) {
                            if (val == 1) {
                                // 显示表单项
                                Form.value?.showItem('idcard');
                            } else {
                                // 隐藏表单项
                                Form.value?.hideItem('idcard');
                                // 清空值
                                Form.value?.setForm('idcard', undefined);
                            }
                        }
                    }
                }
            },
            {
                label: '身份证',
                prop: 'idcard',
                component: {
                    name: 'el-input'
                }
            }
        ],
        on: {
            submit(data, { close }) {
                close();
            }
        }
    });
}
</script>