HouseCType.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <?php
  2. namespace app\admin\controller;
  3. use think\App;
  4. class HouseCType extends Auth
  5. {
  6. public function __construct(App $app = null) {
  7. parent::__construct($app);
  8. $this->model= new \app\common\model\HouseCType();
  9. $this->table= $this->model->table;
  10. }
  11. public function index(){
  12. if(request()->isAjax()){
  13. //分页参数
  14. $length = input('rows',10,'intval'); //每页条数
  15. $page = input('page',1,'intval'); //第几页
  16. $start = ($page - 1) * $length; //分页开始位置
  17. //排序
  18. $sortRow = input('sidx','id','trim'); //排序列
  19. $sort = input('sord','desc','trim'); //排序方式
  20. $order = $sortRow.' '.$sort;
  21. $title = input('title','','trim');
  22. if($title){
  23. $map[] = ['title','like','%'.$title.'%'];
  24. }
  25. $enable = input('enable','','trim');
  26. if($enable != ''){
  27. $map[] = ['enable','=',$enable];
  28. }
  29. $map[] = ['del','=',0];
  30. $map[] = ['org_id','=',$this->orgId];
  31. $map= empty($map) ? true: $map;
  32. //数据查询
  33. $lists = db($this->table)->where($map)->limit($start,$length)->order($order)->select();
  34. foreach ($lists as $k=>$v){
  35. $lists[$k]['cate_name'] = (new \app\common\model\House())->cate[$v['cate']];
  36. }
  37. //数据返回
  38. $totalCount = db($this->table)->where($map)->count();
  39. $totalPage = ceil($totalCount/$length);
  40. $result['page'] = $page;
  41. $result['total'] = $totalPage;
  42. $result['records'] = $totalCount;
  43. $result['rows'] = $lists;
  44. return json($result);
  45. }else{
  46. $this->assign('m_name','类型');
  47. return $this->fetch();
  48. }
  49. }
  50. /**
  51. * 新增/编辑
  52. */
  53. public function add($id=0){
  54. if(request()->isPost()){
  55. $res = $this->model->updates();
  56. if($res){
  57. $this->success('操作成功',url('index'));
  58. }else{
  59. $this->error($this->model->getError());
  60. }
  61. }else{
  62. if($id){
  63. $info =db($this->table)->where('id',$id)->find();
  64. $this->assign('info',$info);
  65. }
  66. $cate = (new \app\common\model\House())->getCate();
  67. $this->assign('cate',$cate);
  68. return $this->fetch();
  69. }
  70. }
  71. /**
  72. * 删除记录
  73. * @param int $id
  74. */
  75. public function del($id=0){
  76. if(!$id){
  77. $this->error('参数错误');
  78. }
  79. $res = db($this->table)->where('id',$id)->setField('del',1);
  80. if($res){
  81. $this->success('删除成功');
  82. }else{
  83. $this->error('删除失败');
  84. }
  85. }
  86. /**
  87. * 改变字段值
  88. * @param int $fv
  89. * @param string $fn
  90. * @param int $fv
  91. */
  92. public function changeField($id=0,$fn='',$fv=0){
  93. if(!$fn||!$id){
  94. $this->error('参数错误');
  95. }
  96. $res = db($this->table)->where('id',$id)->setField($fn,$fv);
  97. if($res){
  98. $this->success('操作成功');
  99. }else{
  100. $this->error('操作失败');
  101. }
  102. }
  103. }