diff --git a/web/client/src/sections/business/containers/customer/customerContactFollowup.jsx b/web/client/src/sections/business/containers/customer/customerContactFollowup.jsx new file mode 100644 index 0000000..5aa91c5 --- /dev/null +++ b/web/client/src/sections/business/containers/customer/customerContactFollowup.jsx @@ -0,0 +1,128 @@ +import React, { useEffect, useState } from 'react'; +import { connect } from 'react-redux'; +import { Select, Input, Button, Banner, Radio, Tooltip, Table } from '@douyinfe/semi-ui'; +import { IconSearch } from '@douyinfe/semi-icons'; +import '../../style.less' +import moment from 'moment' + +const CustomerContactFollowup = (props) => { + const [downloadUrl, setDownloadUrl] = useState(null); + const [warningBanner, setWarningBanner] = useState(null); + + const columns = [ + { + title: '序号', + dataIndex: 'index', + render: (text, record, index) => index + 1 + }, + { + title: '客户名称', + dataIndex: 'department', + }, + { + title: '项目名称', + dataIndex: 'salesManager', + }, + { + title: '部门', + dataIndex: 'projectName', + }, + { + title: '跟进人员', + dataIndex: 'customerName', + }, + { + title: '跟进日期', + dataIndex: 'projectType', + }, + { + title: '客户联系人', + dataIndex: 'projectState', + }, + { + title: '联系方式', + dataIndex: 'projectDescribe', + }, + { + title: '拜访方式', + dataIndex: 'creationTime', + }, + { + title: '项目进展', + dataIndex: 'reserveProjectCycle', + } + ]; + const data = []; + const exportAll = () => { + + } + + return ( + <> +
+
+
业务管理
+
/
+
客户报表
+
/
+
客户联系人对接跟进
+
+
+
+
+
+
客户联系人对接跟进
+
CUSTOMER CONTACT FOLLOW UP
+
+
+ { + warningBanner && + ( setWarningBanner(null)} + />)} +
+
+ } + showClear + placeholder='请输入关键字' + style={{ width: 346 }} + // onChange={seachValueChange} + > + +
+ + + +
+
+ + + + { + downloadUrl ?