RadioGroup 在TS schema 中的設定

Panax發表於2024-05-25
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
  }
])

  

相關文章