| | |
| | | /* |
| | | * @Company: hugeInfo |
| | | * @Author: ldh |
| | | * @Date: 2022-02-16 14:54:34 |
| | | * @LastEditTime: 2022-02-17 14:32:40 |
| | | * @LastEditors: ldh |
| | | * @Version: 1.0.0 |
| | | * @Description: 客户管理 |
| | | */ |
| | | import React, { Component } from 'react'; |
| | | import './index.less'; |
| | | import PageHead from '../../components/PageHead'; |
| | | import { Button } from 'antd'; |
| | | |
| | | class Customer extends Component { |
| | | render() { |
| | | return ( |
| | | <> |
| | | <PageHead |
| | | // breadcrumbData={[ |
| | | // { url: '/operation/customer', title: '客户管理' }, |
| | | // { url: '', title: '新增客户' }, |
| | | // ]} |
| | | title="客户管理" |
| | | /> |
| | | </> |
| | | ); |
| | | } |
| | | } |
| | | |
| | | export default Customer; |