From e88e5a031cb82d5534800ceeeb9a5e4c9afa7182 Mon Sep 17 00:00:00 2001 From: hdm Date: Thu, 29 Dec 2022 23:38:32 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A6=96=E9=A1=B5=E5=B1=95=E7=A4=BA=E6=A8=A1?= =?UTF-8?q?=E5=9D=97=E5=8C=96=E7=AE=A1=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/home/controller/Api.php | 10 +- app/home/controller/Index.php | 25 +- app/home/controller/Role.php | 20 +- app/home/view/index/layout_action.html | 33 + app/home/view/index/layout_article.html | 26 + app/home/view/index/layout_chartview.html | 122 ++++ app/home/view/index/layout_chartyear.html | 84 +++ app/home/view/index/layout_count.html | 16 + app/home/view/index/layout_event.html | 104 +++ app/home/view/index/layout_fastentry.html | 70 ++ app/home/view/index/layout_note.html | 25 + app/home/view/index/layout_project.html | 34 + app/home/view/index/layout_ranking.html | 58 ++ app/home/view/index/layout_system.html | 67 ++ app/home/view/index/layout_task.html | 34 + app/home/view/index/main.html | 828 ++++------------------ app/home/view/role/add.html | 10 + app/install/data/gouguoa.sql | 55 +- config/layout.php | 76 ++ 19 files changed, 963 insertions(+), 734 deletions(-) create mode 100644 app/home/view/index/layout_action.html create mode 100644 app/home/view/index/layout_article.html create mode 100644 app/home/view/index/layout_chartview.html create mode 100644 app/home/view/index/layout_chartyear.html create mode 100644 app/home/view/index/layout_count.html create mode 100644 app/home/view/index/layout_event.html create mode 100644 app/home/view/index/layout_fastentry.html create mode 100644 app/home/view/index/layout_note.html create mode 100644 app/home/view/index/layout_project.html create mode 100644 app/home/view/index/layout_ranking.html create mode 100644 app/home/view/index/layout_system.html create mode 100644 app/home/view/index/layout_task.html create mode 100644 config/layout.php 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 @@ +
+

员工动态

更多
+
+
    +
    +
    + \ No newline at end of file diff --git a/app/home/view/index/layout_article.html b/app/home/view/index/layout_article.html new file mode 100644 index 0000000..72f89b3 --- /dev/null +++ b/app/home/view/index/layout_article.html @@ -0,0 +1,26 @@ +
    +
    +
    +
    知识列表
    +
    +
    +
    +
    +
    +
    + \ No newline at end of file diff --git a/app/home/view/index/layout_chartview.html b/app/home/view/index/layout_chartview.html new file mode 100644 index 0000000..22f4339 --- /dev/null +++ b/app/home/view/index/layout_chartview.html @@ -0,0 +1,122 @@ +
    +
    +
    +
    +
    +
    +
    + \ No newline at end of file diff --git a/app/home/view/index/layout_chartyear.html b/app/home/view/index/layout_chartyear.html new file mode 100644 index 0000000..58bca31 --- /dev/null +++ b/app/home/view/index/layout_chartyear.html @@ -0,0 +1,84 @@ +
    +
    +
    +
    +
    +
    +
    + \ No newline at end of file diff --git a/app/home/view/index/layout_count.html b/app/home/view/index/layout_count.html new file mode 100644 index 0000000..c4108a6 --- /dev/null +++ b/app/home/view/index/layout_count.html @@ -0,0 +1,16 @@ +
    +
    +
    + + + {volist name="$total" id="vo"} + + {/volist} + +
    +
    {$vo.name}
    +
    {$vo.num}
    +
    +
    +
    +
    \ No newline at end of file diff --git a/app/home/view/index/layout_event.html b/app/home/view/index/layout_event.html new file mode 100644 index 0000000..b1879d6 --- /dev/null +++ b/app/home/view/index/layout_event.html @@ -0,0 +1,104 @@ +
    + + +
    \ No newline at end of file diff --git a/app/home/view/index/layout_fastentry.html b/app/home/view/index/layout_fastentry.html new file mode 100644 index 0000000..92bb213 --- /dev/null +++ b/app/home/view/index/layout_fastentry.html @@ -0,0 +1,70 @@ +
    + +
    + \ No newline at end of file diff --git a/app/home/view/index/layout_note.html b/app/home/view/index/layout_note.html new file mode 100644 index 0000000..f232ce2 --- /dev/null +++ b/app/home/view/index/layout_note.html @@ -0,0 +1,25 @@ +
    +
    +
    +
    公告列表
    +
    +
    +
    +
    +
    +
    + \ No newline at end of file diff --git a/app/home/view/index/layout_project.html b/app/home/view/index/layout_project.html new file mode 100644 index 0000000..4063e2d --- /dev/null +++ b/app/home/view/index/layout_project.html @@ -0,0 +1,34 @@ +
    +
    +
    +
    项目列表
    +
    +
    +
    +
    +
    +
    + \ No newline at end of file diff --git a/app/home/view/index/layout_ranking.html b/app/home/view/index/layout_ranking.html new file mode 100644 index 0000000..dfda04c --- /dev/null +++ b/app/home/view/index/layout_ranking.html @@ -0,0 +1,58 @@ +
    +

    最活跃员工最近30天前十的活跃度

    +
    +
    +
    +
    + \ No newline at end of file diff --git a/app/home/view/index/layout_system.html b/app/home/view/index/layout_system.html new file mode 100644 index 0000000..fc169ef --- /dev/null +++ b/app/home/view/index/layout_system.html @@ -0,0 +1,67 @@ +
    +
    系统信息
    +
    + + {if condition="($install == true)"} + + + + {/if} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    提醒:发现app目录下的install文件夹没删除,为了系统的安全,请手动去删除。
    服务器系统{:get_system_info('os')}PHP版本{:get_system_info('php')}
    上传附件限制{:get_system_info('upload_max_filesize')}执行时间限制{:get_system_info('max_execution_time')}
    勾股OA{:CMS_VERSION}勾股OA文档
    ThinkPHP版本{$TP_VERSION}TP6文档
    Layui版本{:LAYUI_VERSION}Layui文档
    合作联系微信号:hdm588,业务合作、功能定制请备注
    QQ交流群搜Q群:24641076(满),46924914
    或点击 gougucms交流群
    同系列开源软件勾股CMS勾股BLOG勾股DEV勾股ADMIN
    🍗🍗
    给作者加鸡腿
    🍗🍗
    + +
    +
    +
    + \ No newline at end of file diff --git a/app/home/view/index/layout_task.html b/app/home/view/index/layout_task.html new file mode 100644 index 0000000..fc92827 --- /dev/null +++ b/app/home/view/index/layout_task.html @@ -0,0 +1,34 @@ +
    +
    +
    +
    任务列表
    +
    +
    +
    +
    +
    +
    + \ No newline at end of file diff --git a/app/home/view/index/main.html b/app/home/view/index/main.html index 6d3d108..2bc2541 100644 --- a/app/home/view/index/main.html +++ b/app/home/view/index/main.html @@ -34,271 +34,65 @@
    -
    -
    -
    - - - {volist name="$total" id="vo"} - - {/volist} - -
    -
    {$vo.name}
    -
    {$vo.num}
    -
    -
    -
    -
    - + {volist name="$layout_selected" id="layout"} -
    -
    -
    -
    -
      -
    • 企业公告

    • -
    • 知识列表

    • -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - {gt name=":isModule('project')" value="0"} -
    -
    项目列表
    -
    -
    -
    -
    -
    -
    任务列表
    -
    -
    -
    -
    - {/gt} -
    -
    -
    -
    -
    -
    -
    -
    + {if ( $layout.row == 1) AND ( $layout.name == 'count') } + {include file="/index/layout_count" /} + {/if} + + {if ( $layout.row == 1) AND ( $layout.name == 'event') } + {include file="/index/layout_event" /} + {/if} + + {if ( $layout.row == 1) AND ( $layout.name == 'note') } + {include file="/index/layout_note" /} + {/if} + + {if ( $layout.row == 1) AND ( $layout.name == 'article') } + {include file="/index/layout_article" /} + {/if} + + {gt name=":isModule('project')" value="0"} + + {if ( $layout.row == 1) AND ( $layout.name == 'project') } + {include file="/index/layout_project" /} + {/if} + + {if ( $layout.row == 1) AND ( $layout.name == 'task') } + {include file="/index/layout_task" /} + {/if} + + {/gt} + + {if ( $layout.row == 1) AND ( $layout.name == 'chartview') } + {include file="/index/layout_chartview" /} + {/if} + + {if ( $layout.row == 1) AND ( $layout.name == 'chartyear') } + {include file="/index/layout_chartyear" /} + {/if} + + {/volist}
    - -
    -
    系统信息
    -
    - - {if condition="($install == true)"} - - - - {/if} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    提醒:发现app目录下的install文件夹没删除,为了系统的安全,请手动去删除。
    服务器系统{:get_system_info('os')}PHP版本{:get_system_info('php')}
    上传附件限制{:get_system_info('upload_max_filesize')}执行时间限制{:get_system_info('max_execution_time')}
    勾股OA{:CMS_VERSION}勾股OA文档
    ThinkPHP版本{$TP_VERSION}TP6文档
    Layui版本{:LAYUI_VERSION}Layui文档
    合作联系微信号:hdm588,业务合作、功能定制请备注
    QQ交流群搜Q群:24641076(满),46924914
    或点击 gougucms交流群
    同系列开源软件勾股CMS勾股BLOG勾股DEV勾股ADMIN
    🍗🍗
    给作者加鸡腿
    🍗🍗
    - -
    -
    -
    -
    -

    最活跃员工最近30天前十的活跃度

    -
    -
    -
    -
    -
    -

    员工动态

    更多
    -
    -
      -
      -
      + {volist name="$layout_selected" id="layout"} + + {if ( $layout.row == 2) AND ( $layout.name == 'fastentry') } + {include file="/index/layout_fastentry" /} + {/if} + + {if ( $layout.row == 2) AND ( $layout.name == 'system') } + {include file="/index/layout_system" /} + {/if} + + {if ( $layout.row == 2) AND ( $layout.name == 'ranking') } + {include file="/index/layout_ranking" /} + {/if} + + {if ( $layout.row == 2) AND ( $layout.name == 'action') } + {include file="/index/layout_action" /} + {/if} + {/volist}
      @@ -309,149 +103,53 @@ {block name="script"} {/block} \ No newline at end of file diff --git a/app/home/view/role/add.html b/app/home/view/role/add.html index 1882ca1..1a94bb9 100644 --- a/app/home/view/role/add.html +++ b/app/home/view/role/add.html @@ -77,6 +77,16 @@ + + 首页展示模块 + + {volist name="layout" id="vo"} +
      + +
      + {/volist} + + 备注内容 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' => '员工动态', + ] +];