From 774bd7203f06c17b9489c29e0ba870cac7733f74 Mon Sep 17 00:00:00 2001 From: Chengliang <1546584672@qq.com> Date: Mon, 16 May 2022 10:32:21 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E5=85=AC=E5=8F=B8/=E5=88=86=E9=83=A8?= =?UTF-8?q?=E7=AE=A1=E7=90=86=E5=88=9D=E5=A7=8B=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pc4mobx/organization/apis/company.js | 0 .../components/company/{companyManage.js => company.js} | 0 pc4mobx/organization/stores/{companyManage.js => company.js} | 0 3 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 pc4mobx/organization/apis/company.js rename pc4mobx/organization/components/company/{companyManage.js => company.js} (100%) rename pc4mobx/organization/stores/{companyManage.js => company.js} (100%) diff --git a/pc4mobx/organization/apis/company.js b/pc4mobx/organization/apis/company.js new file mode 100644 index 0000000..e69de29 diff --git a/pc4mobx/organization/components/company/companyManage.js b/pc4mobx/organization/components/company/company.js similarity index 100% rename from pc4mobx/organization/components/company/companyManage.js rename to pc4mobx/organization/components/company/company.js diff --git a/pc4mobx/organization/stores/companyManage.js b/pc4mobx/organization/stores/company.js similarity index 100% rename from pc4mobx/organization/stores/companyManage.js rename to pc4mobx/organization/stores/company.js From bb7bd102ec90cd4c3f746f47f9b083076e81a837 Mon Sep 17 00:00:00 2001 From: Chengliang <1546584672@qq.com> Date: Mon, 16 May 2022 13:36:54 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E5=85=AC=E5=8F=B8/=E5=88=86=E9=83=A8?= =?UTF-8?q?=E7=AE=A1=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pc4mobx/organization/components/company/company.js | 2 +- pc4mobx/organization/index.js | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/pc4mobx/organization/components/company/company.js b/pc4mobx/organization/components/company/company.js index 1ec93e7..5e8fabc 100644 --- a/pc4mobx/organization/components/company/company.js +++ b/pc4mobx/organization/components/company/company.js @@ -1,6 +1,6 @@ import React, { Component } from 'react' -export default class CompanyManage extends Component { +export default class Company extends Component { render() { return (
C
diff --git a/pc4mobx/organization/index.js b/pc4mobx/organization/index.js index d6a7dcb..d6a86bc 100644 --- a/pc4mobx/organization/index.js +++ b/pc4mobx/organization/index.js @@ -7,8 +7,7 @@ import RankScheme from "./components/postionrank/RankScheme"; import JobLevel from "./components/postionrank/JobLevel"; import JobGrade from "./components/postionrank/JobGrade"; import Sequence from "./components/sequence/Sequence"; -import Group from "./components/group/group"; -import CompanyManage from "./components/company/companyManage"; +import Group from "./components/group/Group"; import OfficeManage from "./components/office/officeManage"; import stores from "./stores"; import "./style/index"; @@ -39,7 +38,6 @@ const Routes = ( - );