From 6e3d716afdeeb9448eb492b4091e63b31021ce35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=8E=E6=B0=B8=E9=A1=BA?= <971387674@qq.com> Date: Fri, 6 Sep 2024 13:30:09 +0800 Subject: [PATCH] =?UTF-8?q?feature/2.15.1.2407.01-=E6=9D=83=E9=99=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pc4mobx/hrmSalary/index.js | 2 ++ .../hrmSalary/pages/roleManagement/index.js | 33 +++++++++++++++++++ .../hrmSalary/pages/roleManagement/index.less | 8 +++++ 3 files changed, 43 insertions(+) create mode 100644 pc4mobx/hrmSalary/pages/roleManagement/index.js create mode 100644 pc4mobx/hrmSalary/pages/roleManagement/index.less diff --git a/pc4mobx/hrmSalary/index.js b/pc4mobx/hrmSalary/index.js index fff7a3d1..66be0fca 100644 --- a/pc4mobx/hrmSalary/index.js +++ b/pc4mobx/hrmSalary/index.js @@ -42,6 +42,7 @@ import MobilePayroll from "./pages/mobilePayroll"; import SysConfig from "./pages/sysConfig"; import RuleConfig from "./pages/ruleConfig/ruleConfig"; import Appconfig from "./pages/appConfig"; +import RoleManagement from "./pages/roleManagement"; import FieldManagement from "./pages/fieldManagement"; import AnalysisOfSalaryStatistics from "./pages/analysisOfSalaryStatistics"; import EmployeeList from "./pages/employeeView"; @@ -159,6 +160,7 @@ const Routes = ( + diff --git a/pc4mobx/hrmSalary/pages/roleManagement/index.js b/pc4mobx/hrmSalary/pages/roleManagement/index.js new file mode 100644 index 00000000..8b9f1355 --- /dev/null +++ b/pc4mobx/hrmSalary/pages/roleManagement/index.js @@ -0,0 +1,33 @@ +/* + * 角色管理 + * + * @Author: 黎永顺 + * @Date: 2024/9/6 + * @Wechat: + * @Email: 971387674@qq.com + * @description: +*/ +import React, { Component } from "react"; +import { WeaLocaleProvider, WeaTop } from "ecCom"; +import { Button } from "antd"; +import "./index.less"; + +const getLabel = WeaLocaleProvider.getLabel; + +class Index extends Component { + render() { + const buttons = [ + + ]; + return ( + } + iconBgcolor="#F14A2D" buttons={buttons} className="rolemanagement-index" + > +
+
+ ); + } +} + +export default Index; diff --git a/pc4mobx/hrmSalary/pages/roleManagement/index.less b/pc4mobx/hrmSalary/pages/roleManagement/index.less new file mode 100644 index 00000000..de10225a --- /dev/null +++ b/pc4mobx/hrmSalary/pages/roleManagement/index.less @@ -0,0 +1,8 @@ +.rolemanagement-index { + .rolemanagement-content { + height: 100%; + overflow-y: hidden; + padding: 16px 16px 0; + background: rgb(246, 246, 246); + } +}