Property.php 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <?php
  2. namespace app\admin\controller;
  3. use app\common\controller\Backend;
  4. use think\Db;
  5. use think\exception\PDOException;
  6. /**
  7. * 物业管理管理
  8. *
  9. * @icon fa fa-circle-o
  10. */
  11. class Property extends Backend
  12. {
  13. /**
  14. * Property模型对象
  15. * @var \app\admin\model\Property
  16. */
  17. protected $model = null;
  18. public function _initialize()
  19. {
  20. parent::_initialize();
  21. $this->model = new \app\admin\model\Property;
  22. }
  23. /**
  24. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  25. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  26. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  27. */
  28. /**
  29. * 查看
  30. */
  31. public function index()
  32. {
  33. //设置过滤方法
  34. if ($this->request->isAjax()) {
  35. //如果发送的来源是Selectpage,则转发到Selectpage
  36. if ($this->request->request('keyField')) {
  37. return $this->selectpage();
  38. }
  39. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  40. $total = $this->model
  41. ->where($where)
  42. ->where('is_delete','0')
  43. ->order($sort, $order)
  44. ->count();
  45. $list = $this->model
  46. ->where($where)
  47. ->where('is_delete','0')
  48. ->with('admin')
  49. ->order($sort, $order)
  50. ->limit($offset, $limit)
  51. ->select();
  52. $list = collection($list)->toArray();
  53. $result = array("total" => $total, "rows" => $list);
  54. return json($result);
  55. }
  56. return $this->view->fetch();
  57. }
  58. public function ajax_list(){
  59. $list = $this->model
  60. ->field('id,p_name')
  61. ->where('is_delete','0')
  62. ->order('id desc')
  63. ->select();
  64. // return json(['list' => $list, 'total' => $total]);
  65. return json(['list' => $list, 'total' => '2']);
  66. }
  67. /**
  68. * 删除
  69. */
  70. public function del($ids = "")
  71. {
  72. if ($ids) {
  73. $pk = $this->model->getPk();
  74. $adminIds = $this->getDataLimitAdminIds();
  75. if (is_array($adminIds)) {
  76. $this->model->where($this->dataLimitField, 'in', $adminIds);
  77. }
  78. $list = $this->model->where($pk, 'in', $ids)->select();
  79. $count = 0;
  80. Db::startTrans();
  81. try {
  82. foreach ($list as $k => $v) {
  83. $count += $v->save(['is_delete'=>1]);
  84. }
  85. Db::commit();
  86. } catch (PDOException $e) {
  87. Db::rollback();
  88. $this->error($e->getMessage());
  89. } catch (Exception $e) {
  90. Db::rollback();
  91. $this->error($e->getMessage());
  92. }
  93. if ($count) {
  94. $this->success();
  95. } else {
  96. $this->error(__('No rows were deleted'));
  97. }
  98. }
  99. $this->error(__('Parameter %s can not be empty', 'ids'));
  100. }
  101. }