Model.php 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. <?php
  2. namespace app\admin\controller;
  3. use app\BaseController;
  4. use think\App;
  5. use think\facade\Db;
  6. class Model extends BaseController
  7. {
  8. public $post="";
  9. public function __construct(App $app)
  10. {
  11. parent::__construct($app);
  12. $this->post=$this->request->post();
  13. }
  14. public function list(){
  15. $where=[["is_del","=",0]];
  16. $name = isset($this->post['name']) && $this->post['name'] !==""? trim($this->post['name']):"";
  17. if($name!==""){
  18. $where[]=["name","like","%$name%"];
  19. }
  20. $pid = isset($this->post['pid']) && $this->post['pid'] !==""?intval($this->post['pid']) :"";
  21. if($pid!==""){
  22. $where[]=["pid","=",$pid];
  23. }
  24. $level = isset($this->post['level']) && $this->post['level'] !==""? intval($this->post['level']):"";
  25. if($level!==""){
  26. $where[]=["level","=",$level];
  27. }
  28. $status = isset($this->post['status']) && $this->post['status'] !==""? intval($this->post['status']):"";
  29. if ($status!==""){
  30. $where[]=["status","=",$status];
  31. }
  32. $company_type = isset($this->post['company_type']) && $this->post['company_type'] !==""? intval($this->post['company_type']):"";
  33. if ($company_type!==""){
  34. $where[]=["company_type","=",$company_type];
  35. }
  36. $list = Db::name('model')->where($where)->order("addtime desc")->select();
  37. $data=[];
  38. foreach ($list as $value){
  39. $temp = Db::name("model")->where(['pid'=>$value['id'],'is_del'=>0])->order("addtime desc")->select();
  40. $value['child']=$temp;
  41. $data[]=$value;
  42. }
  43. return app_show(0,"获取成功",$data);
  44. }
  45. //public function create(){
  46. // $name = isset($this->post['name']) && $this->post['name'] !=="" ? trim($this->post['name']):"";
  47. // if($name==""){
  48. // return error_show(0,"参数name不能为空");
  49. // }
  50. // $level = isset($this->post['level']) && $this->post['level'] !== "" ? intval($this->post['level']) : "";
  51. // $rename = Db::name('model')->where(['name'=>$name,'level'=>$level,'is_del'=>0])->find();
  52. // if(!empty($rename)){
  53. // return error_show(1002,"模块名称已存在");
  54. // }
  55. // $pid = isset($this->post['pid']) && $this->post['pid'] !=="" ? trim($this->post['pid']) :"";
  56. // if($pid===""){
  57. // return error_show(1002,"父级id不能为空");
  58. // }
  59. // if($pid!=0){
  60. // $spid = Db::name('model')->where(['id'=>$pid, 'is_del'=>0])->find();
  61. // if(empty($spid)){
  62. // return error_show(1004,"父级不能为空");
  63. // }
  64. // }
  65. //
  66. // $level =1;
  67. // if ($pid !== 0) {
  68. // $levl=Db::name('model')->where(['id'=>$pid])->find();
  69. // if(empty($levl)){
  70. // return error_show(1002,"未找到父级数据");
  71. // }
  72. // $level =$levl['level']+1;
  73. // }
  74. // $status= isset($this->post['status']) && $this->post['status'] !==""?intval($this->post['status']):"1";
  75. // $data = [
  76. // "name"=>$name,
  77. // "pid"=>$pid,
  78. // "status"=>$status,
  79. // "level"=>$level,
  80. // "is_del"=>0,
  81. // "addtime"=>date("Y-m-d H:i:s"),
  82. // "updatetime"=>date("Y-m-d H:i:s")
  83. // ];
  84. // $datainfo = Db::name('model')->insert($data);
  85. // if($datainfo){
  86. // return error_show(0,"添加成功");
  87. // }else{
  88. // return error_show(1002,"添加失败");
  89. // }
  90. //}
  91. //public function edit(){
  92. // $id = isset($this->post['id']) && $this->post['id'] !=="" ? intval($this->post['id']) :"";
  93. // if($id==""){
  94. // return error_show(1002,"参数id不能为空");
  95. // }
  96. // $info =Db::name('model')->where(['id'=>$id,'is_del'=>0])->find();
  97. // if(empty($info)){
  98. // return error_show(1004,"未找到数据");
  99. // }
  100. // $name = isset($this->post['name']) && $this->post['name'] !=="" ? trim($this->post['name']):"";
  101. // if($name==""){
  102. // return error_show(0,"参数name不能为空");
  103. // }
  104. // $level = isset($this->post['level']) && $this->post['level'] !== "" ? intval($this->post['level']) : "";
  105. // $rename = Db::name('model')->where(['name'=>$name,'level'=>$level,'is_del'=>0])->find();
  106. // if(!empty($rename)){
  107. // return error_show(1002,"模块名称已存在");
  108. // }
  109. // $pid = isset($this->post['pid']) && $this->post['pid'] !=="" ? trim($this->post['pid']) :"";
  110. // if($pid===""){
  111. // return error_show(1002,"父级id不能为空");
  112. // }
  113. // if($pid!=0){
  114. // $spid = Db::name('model')->where(['id'=>$pid, 'is_del'=>0])->find();
  115. // if(empty($spid)){
  116. // return error_show(1004,"父级不能为空");
  117. // }
  118. // }
  119. // $status= isset($this->post['status']) && $this->post['status'] !==""?intval($this->post['status']):"1";
  120. // $data = [
  121. // "name"=>$name,
  122. // "pid"=>$pid,
  123. // "status"=>$status,
  124. // "level"=>$level,
  125. // "is_del"=>0,
  126. // "addtime"=>date("Y-m-d H:i:s"),
  127. // "updatetime"=>date("Y-m-d H:i:s")
  128. // ];
  129. // $datainfo=Db::name('model')->where($info)->save($data);
  130. // if($datainfo){
  131. // return error_show(0,"更新成功");
  132. // }else{
  133. // return error_show(1002,"更新失败");
  134. // }
  135. //}
  136. //public function info(){
  137. // $id = isset($this->post['id']) && $this->post['id'] !=="" ? intval($this->post['id']) :"";
  138. // if($id==""){
  139. // return error_show(1002,"参数id不能为空");
  140. // }
  141. // $idinfo = Db::name('model')->where(['id'=>$id,'is_del'=>0])->find();
  142. // return app_show(0,"获取成功",$idinfo);
  143. //}
  144. //public function del(){
  145. // $id = isset($this->post['id']) && $this->post['id'] !==""? intval($this->post['id']) :"";
  146. // if($id==""){
  147. // return error_show(1002,"参数不能为空");
  148. // }
  149. // $info=Db::name('model')->where(['id'=>$id,'is_del'=>0])->find();
  150. // if(empty($info)){
  151. // return error_show(1002,"未找到数据");
  152. // }
  153. // $str['is_del']=1;
  154. // $str['updatetime']=date("Y-m-d H:i:s");
  155. // $info=Db::name('model')->where($info)->save($str);
  156. // return $info ? app_show(0,"删除成功") :error_show(1002,"删除失败");
  157. //}
  158. }