|
|
|
@ -1,5 +1,5 @@
|
|
|
|
|
import { useCallback, useState, useEffect } from "react";
|
|
|
|
|
import { Grid, Divider, Layout, Flex, Spin, Input, Col, Row, List, Typography } from "antd";
|
|
|
|
|
import { Grid, Divider, Layout, Flex, Spin, Input, Col, Row, List, Typography, Alert } from "antd";
|
|
|
|
|
import { PhoneOutlined, CustomerServiceOutlined, AudioOutlined } from "@ant-design/icons";
|
|
|
|
|
import { useParams, useHref, useNavigate } from "react-router-dom";
|
|
|
|
|
import { isEmpty } from "@/utils/commons";
|
|
|
|
@ -50,9 +50,15 @@ const CallCenter = props => {
|
|
|
|
|
setPhone_number(e.target.value);
|
|
|
|
|
}}></Input.Search>
|
|
|
|
|
</Col>
|
|
|
|
|
<Col md={24} lg={8} xxl={9}></Col>
|
|
|
|
|
<Col md={24} lg={8} xxl={9}>
|
|
|
|
|
<Alert message={'不支持拨打中国大陆(+86)号码'} type="info" showIcon />
|
|
|
|
|
</Col>
|
|
|
|
|
</Row>
|
|
|
|
|
|
|
|
|
|
<Row gutter={16}>
|
|
|
|
|
<Col md={24} lg={8} xxl={9}></Col>
|
|
|
|
|
<Col md={24} lg={8} xxl={6}>
|
|
|
|
|
</Col>
|
|
|
|
|
</Row>
|
|
|
|
|
<Divider plain orientation="left" className="mb-0"></Divider>
|
|
|
|
|
<List header={<Typography.Text strong>Console Logs</Typography.Text>} bordered dataSource={logs} renderItem={item => <List.Item>{item}</List.Item>} />
|
|
|
|
|
</>
|
|
|
|
|