diff --git a/apps/web-antd/src/views/crm/backlog/modules/clue-follow-list.vue b/apps/web-antd/src/views/crm/backlog/modules/clue-follow-list.vue index ec06445f6..64776fd3f 100644 --- a/apps/web-antd/src/views/crm/backlog/modules/clue-follow-list.vue +++ b/apps/web-antd/src/views/crm/backlog/modules/clue-follow-list.vue @@ -26,7 +26,7 @@ const [Grid] = useVbenVxeGrid({ { fieldName: 'followUpStatus', label: '状态', - component: 'Select', + component: 'RadioGroup', componentProps: { allowClear: true, options: FOLLOWUP_STATUS, diff --git a/apps/web-antd/src/views/crm/backlog/modules/customer-follow-list.vue b/apps/web-antd/src/views/crm/backlog/modules/customer-follow-list.vue index 284a0ddc8..6e344d072 100644 --- a/apps/web-antd/src/views/crm/backlog/modules/customer-follow-list.vue +++ b/apps/web-antd/src/views/crm/backlog/modules/customer-follow-list.vue @@ -26,7 +26,7 @@ const [Grid] = useVbenVxeGrid({ { fieldName: 'followUpStatus', label: '状态', - component: 'Select', + component: 'RadioGroup', componentProps: { allowClear: true, options: FOLLOWUP_STATUS, diff --git a/apps/web-antd/src/views/crm/clue/data.ts b/apps/web-antd/src/views/crm/clue/data.ts index b19102343..2cd328dde 100644 --- a/apps/web-antd/src/views/crm/clue/data.ts +++ b/apps/web-antd/src/views/crm/clue/data.ts @@ -171,7 +171,7 @@ export function useGridFormSchema(): VbenFormSchema[] { { fieldName: 'transformStatus', label: '转化状态', - component: 'Select', + component: 'RadioGroup', componentProps: { options: [ { label: '未转化', value: false }, diff --git a/apps/web-antd/src/views/mall/product/comment/data.ts b/apps/web-antd/src/views/mall/product/comment/data.ts index b2a23a17f..62f9f956d 100644 --- a/apps/web-antd/src/views/mall/product/comment/data.ts +++ b/apps/web-antd/src/views/mall/product/comment/data.ts @@ -101,7 +101,7 @@ export function useGridFormSchema(): VbenFormSchema[] { { fieldName: 'replyStatus', label: '回复状态', - component: 'Select', + component: 'RadioGroup', componentProps: { options: [ { label: '已回复', value: true }, diff --git a/apps/web-antd/src/views/mall/trade/brokerage/user/data.ts b/apps/web-antd/src/views/mall/trade/brokerage/user/data.ts index bf7a66a72..58ff07082 100644 --- a/apps/web-antd/src/views/mall/trade/brokerage/user/data.ts +++ b/apps/web-antd/src/views/mall/trade/brokerage/user/data.ts @@ -23,7 +23,7 @@ export function useGridFormSchema(): VbenFormSchema[] { { fieldName: 'brokerageEnabled', label: '推广资格', - component: 'Select', + component: 'RadioGroup', componentProps: { placeholder: '请选择推广资格', allowClear: true,