forked from huge/frontEnd/hugeDyh2.0

ldh
2022-02-17 ec9314d50a789dadc84fb5f98ade366f95b80589
1:客户管理页面例子
2 files modified
26 ■■■■■ changed files
operation/src/router/router.js 2 ●●● patch | view | raw | blame | history
operation/src/views/customer/index.jsx 24 ●●●●● patch | view | raw | blame | history
operation/src/router/router.js
@@ -2,7 +2,7 @@
 * @Company: hugeInfo
 * @Author: ldh
 * @Date: 2022-02-14 15:48:51
 * @LastEditTime: 2022-02-17 15:17:04
 * @LastEditTime: 2022-02-17 18:09:50
 * @LastEditors: ldh
 * @Version: 1.0.0
 * @Description: 路由
operation/src/views/customer/index.jsx
@@ -0,0 +1,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;