diff --git a/app/home/controller/Api.php b/app/home/controller/Api.php
index 3ecbec6..94793af 100644
--- a/app/home/controller/Api.php
+++ b/app/home/controller/Api.php
@@ -133,8 +133,12 @@ class api extends BaseController
$data_first = Db::name('AdminLog')->field('create_time')->whereBetween('create_time', "$begin_first,$end_first")->select();
$data_second = Db::name('AdminLog')->field('create_time')->whereBetween('create_time', "$begin_second,$end_second")->select();
$data_three = Db::name('AdminLog')->field('create_time')->whereBetween('create_time', "$begin_three,$end_first")->select();
-
- //获取员工活跃数据
+ return to_assign(0, '', ['data_first' => hour_document($data_first), 'data_second' => hour_document($data_second), 'data_three' => date_document($data_three)]);
+ }
+
+ //获取员工活跃数据
+ public function get_view_log()
+ {
$times = strtotime("-30 day");
$where = [];
$where[] = ['uid','<>',1];
@@ -154,7 +158,7 @@ class api extends BaseController
array_multisort($counts, SORT_DESC, $logs);
//攫取前10
$data_logs = array_slice($logs, 0, 10);
- return to_assign(0, '', ['data_first' => hour_document($data_first), 'data_second' => hour_document($data_second), 'data_three' => date_document($data_three),'data_logs' => $data_logs]);
+ return to_assign(0, '', ['data_logs' => $data_logs]);
}
//修改个人信息
diff --git a/app/home/controller/Index.php b/app/home/controller/Index.php
index 91b7248..f6d4bfd 100644
--- a/app/home/controller/Index.php
+++ b/app/home/controller/Index.php
@@ -91,14 +91,8 @@ class Index extends BaseController
\think\facade\Cache::tag('adminMenu')->set('menu' . $admin['id'], $list);
}
View::assign('menu', $list);
- //View::assign('theme', get_system_config('other','theme'));
$user = Db::name('Admin')->where('id',$this->uid)->find();
- if(isset($user['theme'])){
- View::assign('theme',$user['theme']);
- }
- else{
- View::assign('theme', 'black');
- }
+ View::assign('theme',$user['theme']);
return View();
}
}
@@ -234,6 +228,23 @@ class Index extends BaseController
'num' => $articleCount,
);
}
+
+ $admin = get_login_admin();
+ $adminGroup = Db::name('PositionGroup')->where(['pid' => $admin['position_id']])->column('group_id');
+ $adminLayout = Db::name('AdminGroup')->where('id', 'in', $adminGroup)->column('layouts');
+ $adminLayouts = [];
+ foreach ($adminLayout as $k => $v) {
+ $v = explode(',', $v);
+ $adminLayouts = array_merge($adminLayouts, $v);
+ }
+ $layouts = get_config('layout');
+ $layout_selected = [];
+ foreach ($layouts as $key =>$vo) {
+ if (!empty($adminLayouts) and in_array($vo['id'], $adminLayouts)) {
+ $layout_selected[] = $vo;
+ }
+ }
+ View::assign('layout_selected',$layout_selected);
View::assign('total', $total);
View::assign('handle', $handle);
View::assign('install', $install);
diff --git a/app/home/controller/Role.php b/app/home/controller/Role.php
index a414b17..75e188f 100644
--- a/app/home/controller/Role.php
+++ b/app/home/controller/Role.php
@@ -39,7 +39,9 @@ class Role extends BaseController
$param = get_params();
if (request()->isAjax()) {
$ruleData = isset($param['rule']) ? $param['rule'] : 0;
+ $layoutData = isset($param['layout']) ? $param['layout'] : 0;
$param['rules'] = implode(',', $ruleData);
+ $param['layouts'] = implode(',', $layoutData);
if (!empty($param['id']) && $param['id'] > 0) {
try {
validate(GroupCheck::class)->scene('edit')->check($param);
@@ -69,15 +71,29 @@ class Role extends BaseController
} else {
$id = isset($param['id']) ? $param['id'] : 0;
$rule = admin_rule();
+ $layouts = get_config('layout');
if ($id > 0) {
$rules = admin_group_info($id);
$role_rule = create_tree_list(0, $rule, $rules);
- $role = Db::name('AdminGroup')->where(['id' => $id])->find();
+ $role = Db::name('AdminGroup')->where(['id' => $id])->find();
+
+ $layout_selected = explode(',', $role['layouts']);
+ foreach ($layouts as $key =>&$vo) {
+ if (!empty($layout_selected) and in_array($vo['id'], $layout_selected)) {
+ $vo['checked'] = true;
+ } else {
+ $vo['checked'] = false;
+ }
+ }
View::assign('role', $role);
} else {
$role_rule = create_tree_list(0, $rule, []);
+ foreach ($layouts as $key =>&$vo) {
+ $vo['checked'] = false;
+ }
}
- View::assign('role_rule', $role_rule);
+ View::assign('role_rule', $role_rule);
+ View::assign('layout', $layouts);
View::assign('id', $id);
return view();
}
diff --git a/app/home/view/index/layout_action.html b/app/home/view/index/layout_action.html
new file mode 100644
index 0000000..6850440
--- /dev/null
+++ b/app/home/view/index/layout_action.html
@@ -0,0 +1,33 @@
+
备注内容 |
diff --git a/app/install/data/gouguoa.sql b/app/install/data/gouguoa.sql
index ad65085..9895771 100644
--- a/app/install/data/gouguoa.sql
+++ b/app/install/data/gouguoa.sql
@@ -390,6 +390,7 @@ CREATE TABLE `oa_admin_group` (
`title` varchar(255) NOT NULL DEFAULT '',
`status` int(1) NOT NULL DEFAULT 1,
`rules` text NULL COMMENT '用户组拥有的规则id',
+ `layouts` text NULL COMMENT '首页展示模块',
`desc` text NULL COMMENT '备注',
`create_time` int(11) NOT NULL DEFAULT 0,
`update_time` int(11) NOT NULL DEFAULT 0,
@@ -400,9 +401,9 @@ CREATE TABLE `oa_admin_group` (
-- ----------------------------
-- Records of cms_admin_group
-- ----------------------------
-INSERT INTO `oa_admin_group` VALUES (1, '超级员工权限', 1, '1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197', '超级员工权限,拥有系统的最高权限,不可修改。', 0, 0);
-INSERT INTO `oa_admin_group` VALUES (2, '总经理权限', 1, '2,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,3,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,4,77,78,79,80,81,82,83,84,85,5,86,87,88,89,90,91,92,6,93,96,97,7,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,8,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197', '总经理的管理权限,可根据公司的具体需求调整。', 0, 0);
-INSERT INTO `oa_admin_group` VALUES (3, '普通员工权限', 1, '5,89,90,91,92,6,93,96,97,7,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,8,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,137,138,139,140,141,142,143,144,145,146,147,149,150,151,152,153,154,155,156,157,158,160,161,162,163,164,165,166,167,168,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,189,190,191,192,193,194,195,196,197', '普通员工管理权限,可根据公司的具体需求调整。', 0, 0);
+INSERT INTO `oa_admin_group` VALUES (1, '超级员工权限', 1, '1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197', '1,2,3,4,5,6,7,8,9,10,11,12','超级员工权限,拥有系统的最高权限,不可修改。', 0, 0);
+INSERT INTO `oa_admin_group` VALUES (2, '总经理权限', 1, '2,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,3,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,4,77,78,79,80,81,82,83,84,85,5,86,87,88,89,90,91,92,6,93,96,97,7,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,8,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197','1,2,3,4,5,6,7,8,9,10,11,12', '总经理的管理权限,可根据公司的具体需求调整。', 0, 0);
+INSERT INTO `oa_admin_group` VALUES (3, '普通员工权限', 1, '5,89,90,91,92,6,93,96,97,7,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,8,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,137,138,139,140,141,142,143,144,145,146,147,149,150,151,152,153,154,155,156,157,158,160,161,162,163,164,165,166,167,168,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,189,190,191,192,193,194,195,196,197','1,2,3,4,5,6,7,8,9,10,11,12', '普通员工管理权限,可根据公司的具体需求调整。', 0, 0);
-- ----------------------------
-- Table structure for oa_data_auth
@@ -1303,54 +1304,6 @@ CREATE TABLE `oa_work_record` (
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COMMENT = '汇报工作发送记录表';
-
--- ----------------------------
--- Table structure for oa_customer_grade
--- ----------------------------
-DROP TABLE IF EXISTS `oa_customer_grade`;
-CREATE TABLE `oa_customer_grade` (
- `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
- `title` varchar(100) NOT NULL DEFAULT '' COMMENT '客户等级名称',
- `status` tinyint(1) NOT NULL DEFAULT 1 COMMENT '状态:-1删除 0禁用 1启用',
- `create_time` int(11) NOT NULL DEFAULT 0 COMMENT '创建时间',
- `update_time` int(11) NOT NULL DEFAULT 0 COMMENT '更新时间',
- PRIMARY KEY (`id`) USING BTREE
-) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COMMENT = '客户等级';
-
--- ----------------------------
--- Records of oa_customer_grade
--- ----------------------------
-INSERT INTO `oa_customer_grade` VALUES (1, '普通客户', 1, 1637987189, 0);
-INSERT INTO `oa_customer_grade` VALUES (2, 'VIP客户', 1, 1637987199, 0);
-INSERT INTO `oa_customer_grade` VALUES (3, '白银客户', 1, 1637987199, 0);
-INSERT INTO `oa_customer_grade` VALUES (4, '黄金客户', 1, 1637987199, 0);
-INSERT INTO `oa_customer_grade` VALUES (5, '钻石客户', 1, 1637987199, 0);
-
--- ----------------------------
--- Table structure for oa_customer_source
--- ----------------------------
-DROP TABLE IF EXISTS `oa_customer_source`;
-CREATE TABLE `oa_customer_source` (
- `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
- `title` varchar(100) NOT NULL DEFAULT '' COMMENT '客户渠道名称',
- `status` tinyint(1) NOT NULL DEFAULT 1 COMMENT '状态:-1删除 0禁用 1启用',
- `create_time` int(11) NOT NULL DEFAULT 0 COMMENT '创建时间',
- `update_time` int(11) NOT NULL DEFAULT 0 COMMENT '更新时间',
- PRIMARY KEY (`id`) USING BTREE
-) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COMMENT = '客户来源';
-
--- ----------------------------
--- Records of oa_customer_source
--- ----------------------------
-INSERT INTO `oa_customer_source` VALUES (1, '独立开发', 1, 1637987189, 0);
-INSERT INTO `oa_customer_source` VALUES (2, '微信公众号', 1, 1637987199, 0);
-INSERT INTO `oa_customer_source` VALUES (3, '今日头条', 1, 1637987199, 0);
-INSERT INTO `oa_customer_source` VALUES (4, '百度搜索', 1, 1637987199, 0);
-INSERT INTO `oa_customer_source` VALUES (5, '销售活动', 1, 1637987199, 0);
-INSERT INTO `oa_customer_source` VALUES (6, '电话来访', 1, 1637987199, 0);
-INSERT INTO `oa_customer_source` VALUES (7, '客户介绍', 1, 1637987199, 0);
-INSERT INTO `oa_customer_source` VALUES (8, '其他来源', 1, 1637987199, 0);
-
-- ----------------------------
-- Table structure for oa_customer_grade
-- ----------------------------
diff --git a/config/layout.php b/config/layout.php
new file mode 100644
index 0000000..27c3ccd
--- /dev/null
+++ b/config/layout.php
@@ -0,0 +1,76 @@
+ 1,
+ 'row' => 1,
+ 'name' => 'count',
+ 'title' => '模块统计',
+ ],
+ [
+ 'id' => 2,
+ 'row' => 1,
+ 'name' => 'event',
+ 'title' => '待办事项',
+ ],
+ [
+ 'id' => 3,
+ 'row' => 1,
+ 'name' => 'note',
+ 'title' => '企业公告',
+ ],
+ [
+ 'id' => 4,
+ 'row' => 1,
+ 'name' => 'article',
+ 'title' => '知识列表',
+ ],
+ [
+ 'id' => 5,
+ 'row' => 1,
+ 'name' => 'project',
+ 'title' => '项目列表',
+ ],
+ [
+ 'id' => 6,
+ 'row' => 1,
+ 'name' => 'task',
+ 'title' => '任务列表',
+ ],
+ [
+ 'id' => 7,
+ 'row' => 1,
+ 'name' => 'chartview',
+ 'title' => '今日员工活跃度',
+ ],
+ [
+ 'id' => 8,
+ 'row' => 1,
+ 'name' => 'chartyear',
+ 'title' => '年度员工活跃度',
+ ],
+ [
+ 'id' => 9,
+ 'row' => 2,
+ 'name' => 'fastentry',
+ 'title' => '快捷入口',
+ ],
+ [
+ 'id' => 10,
+ 'row' => 2,
+ 'name' => 'system',
+ 'title' => '系统信息',
+ ],
+ [
+ 'id' => 11,
+ 'row' => 2,
+ 'name' => 'ranking',
+ 'title' => '活跃员工',
+ ],
+ [
+ 'id' => 12,
+ 'row' => 2,
+ 'name' => 'action',
+ 'title' => '员工动态',
+ ]
+];
|