1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| /*
| * @Company: hugeInfo
| * @Author: ldh
| * @Date: 2022-02-16 14:54:34
| * @LastEditTime: 2022-02-17 18:10:40
| * @LastEditors: ldh
| * @Version: 1.0.0
| * @Description: 客户管理
| */
| import React, { Component } from 'react';
| import './index.less';
| import PageHead from '../../components/PageHead';
| class Customer extends Component {
| render() {
| return (
| <>
| <PageHead title="客户管理" />
| <div className="customer"></div>
| </>
| );
| }
| }
|
| export default Customer;
|
|