wjx 1 tydzień temu
rodzic
commit
4d0d9a77ef

+ 18 - 5
src/pages/weComTask/page/groupChat/taskList/details.tsx

@@ -314,37 +314,50 @@ const ExpandedRow: React.FC<{ record: any }> = ({ record }) => {
                     title: '预计拉群数',
                     dataIndex: 'pullGroupCount',
                     key: 'pullGroupCount',
-                    width: 120
+                    width: 120,
+                    align: 'center'
                 },
                 {
                     title: '预计拉群客户数',
                     dataIndex: 'pullGroupUserCount',
                     key: 'pullGroupUserCount',
-                    width: 120
+                    width: 120,
+                    align: 'center'
                 },
                 {
                     title: '上次失败补拉数量',
                     dataIndex: 'lastFailedRetryCount',
                     key: 'lastFailedRetryCount',
-                    width: 120
+                    width: 120,
+                    align: 'center'
                 },
                 {
                     title: '实际拉群客户数',
                     dataIndex: 'pullSuccessUserCount',
                     key: 'pullSuccessUserCount',
-                    width: 120
+                    width: 120,
+                    align: 'center'
+                },
+                {
+                    title: '删除或拉黑客户数',
+                    dataIndex: 'pullBlackUserCount',
+                    key: 'pullBlackUserCount',
+                    width: 120,
+                    align: 'center'
                 },
                 {
                     title: '实际拉群数',
                     dataIndex: 'pullSuccessCount',
                     key: 'pullSuccessCount',
-                    width: 120
+                    width: 120,
+                    align: 'center'
                 },
                 {
                     title: '失败客户数',
                     dataIndex: 'pullFailedUserCount',
                     key: 'pullFailedUserCount',
                     width: 120,
+                    align: 'center',
                     render: (a, b) => {
                         return <a onClick={() => setFailedUserDetails({ visible: true, list: b?.pullFailedUserDetail || [] })}>{a}</a>
                     }