|
@@ -6,6 +6,8 @@ import React, { useEffect, useState } from "react"
|
|
|
import { QuestionCircleFilled } from "@ant-design/icons"
|
|
import { QuestionCircleFilled } from "@ant-design/icons"
|
|
|
import { businessPlanData, LQTaskStatus, TIME_TYPE_ZJ } from "../../businessPlan/create/const";
|
|
import { businessPlanData, LQTaskStatus, TIME_TYPE_ZJ } from "../../businessPlan/create/const";
|
|
|
import PreviewTime from "@/pages/weComTask/components/previewTime";
|
|
import PreviewTime from "@/pages/weComTask/components/previewTime";
|
|
|
|
|
+import KfhDetails from "./kfhDetails";
|
|
|
|
|
+import UserInfo from "./userInfo";
|
|
|
const { Text, Paragraph, Title } = Typography;
|
|
const { Text, Paragraph, Title } = Typography;
|
|
|
|
|
|
|
|
interface Props {
|
|
interface Props {
|
|
@@ -457,9 +459,17 @@ const TaskDetails: React.FC<{
|
|
|
title: '群名称',
|
|
title: '群名称',
|
|
|
dataIndex: 'chatName',
|
|
dataIndex: 'chatName',
|
|
|
key: 'chatName',
|
|
key: 'chatName',
|
|
|
- width: 120,
|
|
|
|
|
|
|
+ width: 200,
|
|
|
ellipsis: true,
|
|
ellipsis: true,
|
|
|
},
|
|
},
|
|
|
|
|
+ {
|
|
|
|
|
+ title: '手机UUID',
|
|
|
|
|
+ dataIndex: 'corpUserPhoneUuid',
|
|
|
|
|
+ key: 'corpUserPhoneUuid',
|
|
|
|
|
+ width: 140,
|
|
|
|
|
+ ellipsis: true,
|
|
|
|
|
+ align: 'center'
|
|
|
|
|
+ },
|
|
|
{
|
|
{
|
|
|
title: '群主号名称',
|
|
title: '群主号名称',
|
|
|
dataIndex: 'corpUserName',
|
|
dataIndex: 'corpUserName',
|
|
@@ -467,33 +477,47 @@ const TaskDetails: React.FC<{
|
|
|
width: 120,
|
|
width: 120,
|
|
|
ellipsis: true,
|
|
ellipsis: true,
|
|
|
},
|
|
},
|
|
|
|
|
+ {
|
|
|
|
|
+ title: '客服号详情',
|
|
|
|
|
+ dataIndex: 'kfhxq',
|
|
|
|
|
+ key: 'kfhxq',
|
|
|
|
|
+ width: 80,
|
|
|
|
|
+ align: 'center',
|
|
|
|
|
+ render: (a, b: any) => {
|
|
|
|
|
+ return <KfhDetails chatLogId={b.id} />
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
{
|
|
{
|
|
|
title: '预计拉群客户数',
|
|
title: '预计拉群客户数',
|
|
|
dataIndex: 'pullGroupUserCount',
|
|
dataIndex: 'pullGroupUserCount',
|
|
|
key: 'pullGroupUserCount',
|
|
key: 'pullGroupUserCount',
|
|
|
width: 80,
|
|
width: 80,
|
|
|
- align: 'center'
|
|
|
|
|
|
|
+ align: 'center',
|
|
|
|
|
+ render: (a, b) => <UserInfo count={a} id={b.id} title="预计拉群客户详情"/>
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
title: '实际拉群客户数',
|
|
title: '实际拉群客户数',
|
|
|
dataIndex: 'actualPullGroupUserCount',
|
|
dataIndex: 'actualPullGroupUserCount',
|
|
|
key: 'actualPullGroupUserCount',
|
|
key: 'actualPullGroupUserCount',
|
|
|
width: 80,
|
|
width: 80,
|
|
|
- align: 'center'
|
|
|
|
|
|
|
+ align: 'center',
|
|
|
|
|
+ render: (a, b) => <UserInfo count={a} id={b.id} title="实际拉群客户详情"/>
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
title: '删除或拉黑客户数',
|
|
title: '删除或拉黑客户数',
|
|
|
dataIndex: 'deleteOrBlockUserCount',
|
|
dataIndex: 'deleteOrBlockUserCount',
|
|
|
key: 'deleteOrBlockUserCount',
|
|
key: 'deleteOrBlockUserCount',
|
|
|
width: 80,
|
|
width: 80,
|
|
|
- align: 'center'
|
|
|
|
|
|
|
+ align: 'center',
|
|
|
|
|
+ render: (a, b) => <UserInfo count={a} id={b.id} title="删除或拉黑客户详情"/>
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
title: '发送邀请客户数',
|
|
title: '发送邀请客户数',
|
|
|
dataIndex: 'sendInviteUserCount',
|
|
dataIndex: 'sendInviteUserCount',
|
|
|
key: 'sendInviteUserCount',
|
|
key: 'sendInviteUserCount',
|
|
|
width: 80,
|
|
width: 80,
|
|
|
- align: 'center'
|
|
|
|
|
|
|
+ align: 'center',
|
|
|
|
|
+ render: (a, b) => <UserInfo count={a} id={b.id} title="发送邀请客户详情"/>
|
|
|
}
|
|
}
|
|
|
]}
|
|
]}
|
|
|
/>
|
|
/>
|
|
@@ -533,9 +557,24 @@ const FailedUserDetails: React.FC<{
|
|
|
title: '企业ID',
|
|
title: '企业ID',
|
|
|
dataIndex: 'corpId',
|
|
dataIndex: 'corpId',
|
|
|
key: 'corpId',
|
|
key: 'corpId',
|
|
|
- width: 120,
|
|
|
|
|
|
|
+ width: 150,
|
|
|
ellipsis: true,
|
|
ellipsis: true,
|
|
|
},
|
|
},
|
|
|
|
|
+ {
|
|
|
|
|
+ title: '群名称',
|
|
|
|
|
+ dataIndex: 'chatName',
|
|
|
|
|
+ key: 'chatName',
|
|
|
|
|
+ width: 200,
|
|
|
|
|
+ ellipsis: true,
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ title: '手机UUID',
|
|
|
|
|
+ dataIndex: 'corpUserPhoneUuid',
|
|
|
|
|
+ key: 'corpUserPhoneUuid',
|
|
|
|
|
+ width: 140,
|
|
|
|
|
+ ellipsis: true,
|
|
|
|
|
+ align: 'center'
|
|
|
|
|
+ },
|
|
|
{
|
|
{
|
|
|
title: '客服名称',
|
|
title: '客服名称',
|
|
|
dataIndex: 'corpUserName',
|
|
dataIndex: 'corpUserName',
|