RadioGroup 在TS schema 中的设置
const schema: FormSchema[] = reactive([ { field: 'resource', label: '类型', colProps: { span: 24 }, component: 'RadioGroup', componentProps: { options: [ { label: '是', value: 1 }, { label: '否', value: 0 } ], on: { change: async (data) => { // if (data == 1) { // setSchema([ // { // field: 'feedbackCount', // path: 'remove', // value: false // } // ]) // } else { // setSchema([ // { // field: 'feedbackCount', // path: 'remove', // value: true // } // ]) // } } } }, value: 0, remove: false } ])
作者:人参,每篇随笔皆原创(除非注明原作者的随笔),欢迎指正!