Без опису
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\admin\controller;
  14. use think\Db;
  15. use think\Page;
  16. class Uiset extends Base
  17. {
  18. public $theme_style;
  19. public $templateArr = array();
  20. /*
  21. * 初始化操作
  22. */
  23. public function _initialize() {
  24. parent::_initialize();
  25. $this->theme_style = 'pc';
  26. /*模板列表*/
  27. if (file_exists(ROOT_PATH.'template/'.TPL_THEME.'pc/uiset.txt')) {
  28. array_push($this->templateArr, 'pc');
  29. }
  30. if (file_exists(ROOT_PATH.'template/'.TPL_THEME.'mobile/uiset.txt')) {
  31. array_push($this->templateArr, 'mobile');
  32. }
  33. /*--end*/
  34. /*权限控制 by 小虎哥*/
  35. $admin_info = session('admin_info');
  36. if (0 < intval($admin_info['role_id'])) {
  37. $auth_role_info = $admin_info['auth_role_info'];
  38. $permission = $auth_role_info['permission'];
  39. $auth_rule = get_auth_rule();
  40. $all_auths = []; // 系统全部权限对应的菜单ID
  41. $admin_auths = []; // 用户当前拥有权限对应的菜单ID
  42. $diff_auths = []; // 用户没有被授权的权限对应的菜单ID
  43. foreach($auth_rule as $key => $val){
  44. $all_auths = array_merge($all_auths, explode(',', $val['menu_id']), explode(',', $val['menu_id2']));
  45. if (in_array($val['id'], $permission['rules'])) {
  46. $admin_auths = array_merge($admin_auths, explode(',', $val['menu_id']), explode(',', $val['menu_id2']));
  47. }
  48. }
  49. $all_auths = array_unique($all_auths);
  50. $admin_auths = array_unique($admin_auths);
  51. $diff_auths = array_diff($all_auths, $admin_auths);
  52. if(in_array(2002, $diff_auths)){
  53. $this->error('您没有操作权限,请联系超级管理员分配权限');
  54. }
  55. }
  56. /*--end*/
  57. }
  58. /**
  59. * PC调试外观
  60. */
  61. public function pc()
  62. {
  63. // 支持子目录
  64. $index_url = ROOT_DIR.'/index.php?m=home&c=Index&a=index&uiset=on&v=pc&lang='.$this->admin_lang;
  65. $this->redirect($index_url);
  66. }
  67. /**
  68. * 手机调试外观
  69. */
  70. public function mobile()
  71. {
  72. // 支持子目录
  73. $index_url = ROOT_DIR.'/index.php?m=home&c=Index&a=index&uiset=on&v=mobile&lang='.$this->admin_lang;
  74. $this->redirect($index_url);
  75. }
  76. /**
  77. * 调试外观
  78. */
  79. public function index()
  80. {
  81. return $this->fetch();
  82. }
  83. /**
  84. * 数据列表
  85. */
  86. public function ui_index()
  87. {
  88. $condition = array();
  89. // 获取到所有GET参数
  90. $param = input('param.');
  91. /*模板主题*/
  92. $param['theme_style'] = $this->theme_style = input('param.theme_style/s', 'pc');
  93. /*--end*/
  94. // 应用搜索条件
  95. foreach (['keywords','theme_style'] as $key) {
  96. if (isset($param[$key]) && $param[$key] !== '') {
  97. if ($key == 'keywords') {
  98. $condition['a.page|a.type|a.name'] = array('eq', "%{$param[$key]}%");
  99. } else if ($key == 'theme_style') {
  100. $condition['a.'.$key] = array('eq', TPL_THEME.$param[$key]);
  101. } else {
  102. $condition['a.'.$key] = array('eq', $param[$key]);
  103. }
  104. }
  105. }
  106. /*多语言*/
  107. $condition['a.lang'] = $this->admin_lang;
  108. /*--end*/
  109. $list = array();
  110. $uiconfigM = Db::name('ui_config');
  111. $count = $uiconfigM->alias('a')->where($condition)->count('id');// 查询满足要求的总记录数
  112. $Page = $pager = new Page($count, config('paginate.list_rows'));// 实例化分页类 传入总记录数和每页显示的记录数
  113. $list = $uiconfigM->alias('a')->where($condition)->order('id desc')->limit($Page->firstRow.','.$Page->listRows)->select();
  114. $show = $Page->show();// 分页显示输出
  115. $this->assign('page',$show);// 赋值分页输出
  116. $this->assign('list',$list);// 赋值数据集
  117. $this->assign('pager',$pager);// 赋值分页对象
  118. $this->assign('theme_style',$this->theme_style);// 模板主题
  119. $this->assign('templateArr',$this->templateArr);// 模板列表
  120. return $this->fetch();
  121. }
  122. /**
  123. * 删除
  124. */
  125. public function del()
  126. {
  127. $id_arr = input('del_id/a');
  128. $id_arr = eyIntval($id_arr);
  129. if(!empty($id_arr)){
  130. $result = Db::name('ui_config')->where("id",'IN',$id_arr)->getAllWithIndex('name');
  131. $r = Db::name('ui_config')->where("id",'IN',$id_arr)->delete();
  132. if($r){
  133. \think\Cache::clear('ui_config');
  134. delFile(RUNTIME_PATH.'ui/'.$result['theme_style']);
  135. adminLog('删除可视化数据 e-id:'.implode(array_keys($result)));
  136. $this->success('删除成功');
  137. }else{
  138. $this->error('删除失败');
  139. }
  140. }else{
  141. $this->error('参数有误');
  142. }
  143. }
  144. }