d2-crud-plus icon indicating copy to clipboard operation
d2-crud-plus copied to clipboard

BUG | 字段dict form中覆盖异常

Open Septillions opened this issue 3 years ago • 1 comments

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 效果: AB{QKF8Y0W 5J@(8D81O(C7

字典并非覆盖

Septillions avatar Sep 15 '21 02:09 Septillions

form: { component: { props: { options: [{ value: 2, label: 'H5跳转' }, { value: 3, label: '签到' }] } } },

已用 options 解决

Septillions avatar Sep 15 '21 06:09 Septillions