Config.php 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. <?php
  2. namespace app\admin\controller;
  3. use app\admin\model\ConfigModel;
  4. use think\Db;
  5. class Config extends Base
  6. {
  7. /**
  8. * [index 配置列表]
  9. */
  10. public function index(){
  11. if(request()->isAjax ()){
  12. extract(input());
  13. $map = [];
  14. if(isset($type)&&$type!=""){
  15. $map['type'] = $type;
  16. }
  17. if(isset($group)&&$group!=""){
  18. $map['group'] = $group;
  19. }
  20. if(isset($key)&&$key!="")
  21. {
  22. $map['title|name'] = ['like',"%" . $key . "%"];
  23. }
  24. if(isset($start)&&$start!=""&&isset($end)&&$end=="")
  25. {
  26. $map['create_time'] = ['>= time',$start];
  27. }
  28. if(isset($end)&&$end!=""&&isset($start)&&$start=="")
  29. {
  30. $map['create_time'] = ['<= time',$end];
  31. }
  32. if(isset($start)&&$start!=""&&isset($end)&&$end!="")
  33. {
  34. $map['create_time'] = ['between time',[$start,$end]];
  35. }
  36. $field=input('field');//字段
  37. $order=input('order');//排序方式
  38. if($field && $order){
  39. $od=$field." ".$order;
  40. }else{
  41. $od="create_time desc";
  42. }
  43. $config = new ConfigModel();
  44. $Nowpage = input('page') ? input('page'):1;
  45. $limits = input("limit")?input("limit"):10;
  46. $lists = $config->getAllConfig($map, $Nowpage, $limits,$od);
  47. $count = $config->getAllCount($map);//计算总页面
  48. return json(['code'=>220,'msg'=>'','count'=>$count,'data'=>$lists]);
  49. }
  50. $this->assign ('type',config('config_type_list'));
  51. $this->assign ('group',config('config_group_list'));
  52. return $this->fetch("config/index");
  53. }
  54. /**
  55. * [add_config 添加配置]
  56. */
  57. public function add_config()
  58. {
  59. if(request()->isPost()){
  60. extract(input());
  61. $param = input('post.');
  62. if(!isset($status)){
  63. $param['status'] = 2;
  64. }
  65. $config = new ConfigModel();
  66. $flag = $config->insertConfig($param);
  67. cache('db_config_data',null);
  68. return json(['code' => $flag['code'], 'data' => $flag['data'], 'msg' => $flag['msg']]);
  69. }
  70. return $this->fetch();
  71. }
  72. /**
  73. * 验证配置标识的唯一性
  74. */
  75. public function checkConfig(){
  76. extract(input());
  77. $user = new ConfigModel();
  78. if(isset($id)&&$id!=""){
  79. $uid = $id;
  80. }else{
  81. $uid = '';
  82. }
  83. $flag = $user->checkConfig($name,$uid);
  84. return json(['code' => $flag['code'], 'msg' => $flag['msg']]);
  85. }
  86. /**
  87. * [edit_config 编辑配置]
  88. */
  89. public function edit_config()
  90. {
  91. $config = new ConfigModel();
  92. if(request()->isPost()){
  93. $param = input('post.');
  94. $flag = $config->editConfig($param);
  95. return json(['code' => $flag['code'], 'data' => $flag['data'], 'msg' => $flag['msg']]);
  96. }
  97. $id = input('param.id');
  98. $info = $config->getOneConfig($id);
  99. $this->assign('info', $info);
  100. // dump($info);die;
  101. return $this->fetch();
  102. }
  103. /**
  104. * [del_config 删除配置]
  105. * @author
  106. */
  107. public function del_config()
  108. {
  109. $id = input('param.id');
  110. $config = new ConfigModel();
  111. $flag = $config->delConfig($id);
  112. return json(['code' => $flag['code'], 'data' => $flag['data'], 'msg' => $flag['msg']]);
  113. }
  114. /**
  115. * [user_state 配置状态]
  116. * @author
  117. */
  118. public function status_config()
  119. {
  120. extract(input());
  121. $config = new ConfigModel();
  122. $flag = $config->configState($id,$num);
  123. return json(['code' => $flag['code'], 'data' => $flag['data'], 'msg' => $flag['msg']]);
  124. }
  125. /**
  126. * [获取某个标签的配置参数]
  127. * @author
  128. */
  129. public function group() {
  130. $id = input('id',1);
  131. $type = config('config_group_list');
  132. $list = Db::name("Config")->where(array('status'=>1,'group'=>$id))->field('id,name,title,extra,value,remark,type')->order('sort')->select();
  133. $this->assign('list',$list);
  134. $this->assign('id',$id);
  135. return $this->fetch();
  136. }
  137. /**
  138. * [批量保存配置]
  139. * @author
  140. */
  141. public function save($config){
  142. $id = input('param.id');
  143. $conf = new ConfigModel();
  144. $flag = $conf->configSave($config);
  145. if($flag['code']==200){
  146. cache('db_config_data',null);
  147. }
  148. return json(['code' => $flag['code'], 'data' => $flag['data'], 'msg' => $flag['msg']]);
  149. }
  150. /**
  151. * batchDelConfig 批量删除配置
  152. * @return \think\response\Json
  153. */
  154. public function batchDelConfig(){
  155. extract(input());
  156. $config = new ConfigModel();
  157. if(empty($ids)){
  158. return json(['code'=>100,'msg'=>'请选择要删除的记录!']);
  159. }
  160. $flag = $config->batchDelConfig($ids);
  161. return json(['code' => $flag['code'], 'msg' => $flag['msg']]);
  162. }
  163. /**
  164. * usingConfig 批量启用
  165. * @return \think\response\Json
  166. */
  167. public function usingConfig(){
  168. extract(input());
  169. $list = [];
  170. if($ids){
  171. $ids = explode(',',$ids);
  172. for($i=0;$i<count($ids);$i++){
  173. $param = [
  174. 'id'=>$ids[$i],
  175. 'status'=>1
  176. ];
  177. $list[] = $param;
  178. }
  179. }
  180. $conf = new ConfigModel();
  181. $flag = $conf->usingConfig($list);
  182. return json(['code' => $flag['code'], 'msg' => $flag['msg']]);
  183. }
  184. /**
  185. * 批量禁用配置
  186. * @return \think\response\Json
  187. */
  188. public function forbiddenConfig(){
  189. extract(input());
  190. $list = [];
  191. if($ids){
  192. $ids = explode(',',$ids);
  193. for($i=0;$i<count($ids);$i++){
  194. $param = [
  195. 'id'=>$ids[$i],
  196. 'status'=>2
  197. ];
  198. $list[] = $param;
  199. }
  200. }
  201. $conf = new ConfigModel();
  202. $flag = $conf->forbiddenConfig($list);
  203. return json(['code' => $flag['code'], 'msg' => $flag['msg']]);
  204. }
  205. }