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 } ])