|
@@ -189,6 +189,16 @@ export const ShowGroupUserTable: React.FC<GROUP_CHAT_CREATE.ShowGroupUserTablePr
|
|
|
return value ? <span style={{ color: '#1890ff' }}>是</span> : <span style={{ color: 'red' }}>否</span>
|
|
|
},
|
|
|
},
|
|
|
+ {
|
|
|
+ title: '是否开启失败人群重试',
|
|
|
+ dataIndex: 'isRetry',
|
|
|
+ key: 'isRetry',
|
|
|
+ width: 70,
|
|
|
+ align: 'center',
|
|
|
+ render(value) {
|
|
|
+ return value ? <span style={{ color: '#1890ff' }}>是</span> : <span style={{ color: 'red' }}>否</span>
|
|
|
+ },
|
|
|
+ },
|
|
|
{
|
|
|
title: '群聊关联公众号',
|
|
|
dataIndex: 'weChatAppid',
|
|
@@ -328,7 +338,7 @@ const AddGroupObjectModal: React.FC<GROUP_CHAT_CREATE.AddGroupObjectModalProps>
|
|
|
message.error(errorFields?.[0]?.errors?.[0])
|
|
|
}}
|
|
|
onFinish={handleOk}
|
|
|
- initialValues={(initialValues && Object.keys(initialValues).length > 0) ? initialValues : { externalUserType: 'specify', isRepair: false, groupIndex: 1, groupUserCount: 37, autoOutGroup: false, excludeInGroup: true, deleteGroupTag: true }}
|
|
|
+ initialValues={(initialValues && Object.keys(initialValues).length > 0) ? initialValues : { externalUserType: 'specify', isRepair: false, groupIndex: 1, groupUserCount: 37, autoOutGroup: false, excludeInGroup: true, deleteGroupTag: true, isRetry: false }}
|
|
|
preserve={true}
|
|
|
>
|
|
|
<Form.Item
|
|
@@ -437,6 +447,16 @@ const AddGroupObjectModal: React.FC<GROUP_CHAT_CREATE.AddGroupObjectModalProps>
|
|
|
<Radio value={true}>是</Radio>
|
|
|
</Radio.Group>
|
|
|
</Form.Item>
|
|
|
+ <Form.Item
|
|
|
+ name={'isRetry'}
|
|
|
+ label={<strong>是否开启失败人群重试</strong>}
|
|
|
+ rules={[{ required: true, message: '请选择是否开启失败人群重试!' }]}
|
|
|
+ >
|
|
|
+ <Radio.Group>
|
|
|
+ <Radio value={true}>是</Radio>
|
|
|
+ <Radio value={false}>否</Radio>
|
|
|
+ </Radio.Group>
|
|
|
+ </Form.Item>
|
|
|
<Form.Item
|
|
|
name={'weChatAppid'}
|
|
|
label={<strong>群聊关联公众号</strong>}
|