wjx 1 주 전
부모
커밋
382c76e834

+ 1 - 1
src/pages/launchSystemV3/tencenTasset/corpWechat/csgroup/components/group/associateCSG.tsx

@@ -34,7 +34,7 @@ const AssociateCSG: React.FC<{ localCorpCsgroupId: number }> = ({ localCorpCsgro
                         title: '客服组名称',
                         dataIndex: 'groupName',
                         key: 'groupName',
-                        width: 220,
+                        width: 300,
                         ellipsis: true,
                         render(value, records) {
                             return <span style={{ fontSize: 12 }}>{value}({records.groupId})</span>

+ 2 - 3
src/pages/launchSystemV3/tencenTasset/corpWechat/csgroup/components/group/tableConfig.tsx

@@ -48,7 +48,6 @@ const columns = (handleEdit: (data: any) => void, refresh: () => void): TablePro
                 return <span style={{ fontSize: 12 }}>{value || '--'}</span>
             }
         },
-
         {
             title: '企业名称',
             dataIndex: 'tencentCorpName',
@@ -57,7 +56,7 @@ const columns = (handleEdit: (data: any) => void, refresh: () => void): TablePro
             align: 'center',
             ellipsis: true,
             render(value) {
-                return <span style={{ fontSize: 12 }}>{value}</span>
+                return <span style={{ fontSize: 12 }}>{value || '--'}</span>
             }
         },
         {
@@ -66,7 +65,7 @@ const columns = (handleEdit: (data: any) => void, refresh: () => void): TablePro
             key: 'tencentCorpId',
             width: 280,
             render(value) {
-                return <span style={{ fontSize: 12 }}>{value}</span>
+                return <span style={{ fontSize: 12 }}>{value || '--'}</span>
             }
         },
         {