From ec9314d50a789dadc84fb5f98ade366f95b80589 Mon Sep 17 00:00:00 2001
From: ldh <996970752@qq.com>
Date: Thu, 17 Feb 2022 18:11:32 +0800
Subject: [PATCH] 1:客户管理页面例子

---
 operation/src/views/customer/index.jsx |   24 ++++++++++++++++++++++++
 1 files changed, 24 insertions(+), 0 deletions(-)

diff --git a/operation/src/views/customer/index.jsx b/operation/src/views/customer/index.jsx
index e69de29..61b8b35 100644
--- a/operation/src/views/customer/index.jsx
+++ b/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;

--
Gitblit v1.8.0