|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
import React, { useContext, useEffect } from 'react';
|
|
|
|
|
import { Row, Col, Divider, Table } from 'antd';
|
|
|
|
|
import { Row, Col, Divider, Table, Tooltip } from 'antd';
|
|
|
|
|
import { InfoCircleOutlined } from '@ant-design/icons';
|
|
|
|
|
import { utils, writeFileXLSX } from 'xlsx';
|
|
|
|
|
import { stores_Context } from '../config';
|
|
|
|
|
import { observer } from 'mobx-react';
|
|
|
|
@ -13,7 +14,7 @@ const Customer_care_regular = () => {
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div>
|
|
|
|
|
<Row gutter={16} className={date_picker_store.siderBroken ? "" : "sticky-top"}>
|
|
|
|
|
<Row gutter={16} className={date_picker_store.siderBroken ? '' : 'sticky-top'}>
|
|
|
|
|
<Col className="gutter-row" span={24}>
|
|
|
|
|
<SearchForm
|
|
|
|
|
defaultValue={{
|
|
|
|
@ -51,9 +52,24 @@ const Customer_care_regular = () => {
|
|
|
|
|
key: 'ItemName',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '订单数',
|
|
|
|
|
title: () => (
|
|
|
|
|
<>
|
|
|
|
|
订单数{' '}
|
|
|
|
|
<Tooltip key='total_data_tips_title' title="总订单: 当同时勾选老客户和推荐时, 将重复计数">
|
|
|
|
|
<InfoCircleOutlined />
|
|
|
|
|
</Tooltip>
|
|
|
|
|
</>
|
|
|
|
|
),
|
|
|
|
|
dataIndex: 'OrderNum',
|
|
|
|
|
key: 'OrderNum',
|
|
|
|
|
render: (text, record, index) => (
|
|
|
|
|
<>
|
|
|
|
|
<span>{text}</span>
|
|
|
|
|
{<Tooltip key='total_data_tips' title={regular_data.total_data_tips}>
|
|
|
|
|
{index === 0 && regular_data.total_data_tips!=='' && <InfoCircleOutlined />}
|
|
|
|
|
</Tooltip>}
|
|
|
|
|
</>
|
|
|
|
|
),
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '成行数',
|
|
|
|
|