d2-crud-plus
d2-crud-plus copied to clipboard
BUG | 字段dict form中覆盖异常
columns 配置:
{
title: '弹窗类型',
key: 'type',
type: 'radio',
align: 'center',
form: { component: { props: { dict: { data: [{ value: 2, label: 'H5跳转' }, { value: 3, label: '签到' }] } } } },
dict: { data: [{ value: 1, label: '充值', color: 'primary' }, { value: 2, label: 'H5跳转', color: 'success' }, { value: 3, label: '签到', color: 'warning' }] }
}
form 效果:
字典并非覆盖
form: { component: { props: { options: [{ value: 2, label: 'H5跳转' }, { value: 3, label: '签到' }] } } },
已用 options 解决