| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <?php
- /**
- +-----------------------------------------------------------------------------------------------
- * GouGuOPEN [ 左手研发,右手开源,未来可期!]
- +-----------------------------------------------------------------------------------------------
- * @Copyright (c) 2021~2024 http://www.gouguoa.com All rights reserved.
- +-----------------------------------------------------------------------------------------------
- * @Licensed 勾股OA,开源且可免费使用,但并不是自由软件,未经授权许可不能去除勾股OA的相关版权信息
- +-----------------------------------------------------------------------------------------------
- * @Author 勾股工作室 <hdm58@qq.com>
- +-----------------------------------------------------------------------------------------------
- */
- declare (strict_types = 1);
- namespace app\home\controller;
- use app\base\BaseController;
- use think\exception\ValidateException;
- use think\facade\Db;
- use think\facade\View;
- class dataauth extends BaseController
- {
- public function index()
- {
- if (request()->isAjax()) {
- $list = Db::name('DataAuth')->select();
- return to_assign(0, '', $list);
- } else {
- return view();
- }
- }
- //编辑配置信息
- public function edit()
- {
- $param = get_params();
- if (request()->isAjax()) {
- $param['update_time'] = time();
- $res = Db::name('DataAuth')->strict(false)->field(true)->update($param);
- if ($res) {
- add_log('edit', $param['id'], $param);
- }
- return to_assign();
- } else {
- $id = isset($param['id']) ? $param['id'] : 0;
- $detail = $this->auth_detail($id);
- $module = strtolower(app('http')->getName());
- $class = strtolower(app('request')->controller());
- $action = strtolower(app('request')->action());
- $template = $module . '/view/' . $class . '/' . $detail['name'] . '.html';
- View::assign('detail', $detail);
- if (isTemplate($template)) {
- return view($detail['name']);
- } else {
- return view('../../base/view/common/errortemplate', ['file' => $template]);
- }
- }
- }
-
- public function auth_detail($id)
- {
- $detail = Db::name('DataAuth')->where('id',$id)->find();
- // 日常办公
- if($detail['name'] =='office_admin'){
- $conf_1_str = Db::name('Admin')->where('id', 'in', $detail['conf_1'])->column('name');
- $detail['conf_1_str'] = implode(',', $conf_1_str);
- $conf_3_str = Db::name('Admin')->where('id', 'in', $detail['conf_3'])->column('name');
- $detail['conf_3_str'] = implode(',', $conf_3_str);
- }
- if($detail['name'] =='finance_admin'){
- $conf_1_str = Db::name('Admin')->where('id', 'in', $detail['conf_1'])->column('name');
- $detail['conf_1_str'] = implode(',', $conf_1_str);
- $conf_2_str = Db::name('Admin')->where('id', 'in', $detail['conf_2'])->column('name');
- $detail['conf_2_str'] = implode(',', $conf_2_str);
- $conf_3_str = Db::name('Admin')->where('id', 'in', $detail['conf_3'])->column('name');
- $detail['conf_3_str'] = implode(',', $conf_3_str);
- $conf_4_str = Db::name('Admin')->where('id', 'in', $detail['conf_4'])->column('name');
- $detail['conf_4_str'] = implode(',', $conf_4_str);
- $conf_5_str = Db::name('Admin')->where('id', 'in', $detail['conf_5'])->column('name');
- $detail['conf_5_str'] = implode(',', $conf_5_str);
- }
- if($detail['name'] =='customer_admin'){
- $conf_1_str = Db::name('Admin')->where('id', 'in', $detail['conf_1'])->column('name');
- $detail['conf_1_str'] = implode(',', $conf_1_str);
- }
- if($detail['name'] =='contract_admin'){
- $conf_1_str = Db::name('Admin')->where('id', 'in', $detail['conf_1'])->column('name');
- $detail['conf_1_str'] = implode(',', $conf_1_str);
- }
- if($detail['name'] =='project_admin'){
- $conf_1_str = Db::name('Admin')->where('id', 'in', $detail['conf_1'])->column('name');
- $detail['conf_1_str'] = implode(',', $conf_1_str);
- }
- if($detail['name'] =='disk_admin'){
- $conf_1_str = Db::name('Admin')->where('id', 'in', $detail['conf_1'])->column('name');
- $detail['conf_1_str'] = implode(',', $conf_1_str);
- }
- return $detail;
- }
- }
|