SubmitEdit.php 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <?php
  2. namespace app\admin\controller\submit;
  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 SubmitEdit extends Backend
  12. {
  13. /**
  14. * SubmitEdit模型对象
  15. * @var \app\admin\model\submit\SubmitEdit
  16. */
  17. protected $model = null;
  18. public function _initialize()
  19. {
  20. parent::_initialize();
  21. $this->model = new \app\admin\model\submit\SubmitEdit;
  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. $this->request->filter(['strip_tags']);
  35. if ($this->request->isAjax()) {
  36. //如果发送的来源是Selectpage,则转发到Selectpage
  37. if ($this->request->request('keyField')) {
  38. return $this->selectpage();
  39. }
  40. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  41. $where_and=['is_delete'=>'0','type'=>'0'];
  42. $total = $this->model
  43. ->where($where)
  44. ->where($where_and)
  45. ->order($sort, $order)
  46. ->count();
  47. $list = $this->model
  48. ->where($where)
  49. ->where($where_and)
  50. ->with(['member','type','village','dong','danyuan','hu'])
  51. ->order($sort, $order)
  52. ->limit($offset, $limit)
  53. ->select();
  54. $list = collection($list)->toArray();
  55. foreach ($list as $k=>$v){
  56. $list[$k]['fang']=$v['village']['name']." ".$v['dong']['name']." ".$v['danyuan']['name']." ".$v['hu']['name'];
  57. }
  58. $result = array("total" => $total, "rows" => $list);
  59. return json($result);
  60. }
  61. return $this->view->fetch();
  62. }
  63. /**
  64. * 删除
  65. */
  66. public function del($ids = "")
  67. {
  68. if ($ids) {
  69. $pk = $this->model->getPk();
  70. $adminIds = $this->getDataLimitAdminIds();
  71. if (is_array($adminIds)) {
  72. $this->model->where($this->dataLimitField, 'in', $adminIds);
  73. }
  74. $list = $this->model->where($pk, 'in', $ids)->select();
  75. $count = 0;
  76. Db::startTrans();
  77. try {
  78. foreach ($list as $k => $v) {
  79. $count += $v->save(['is_delete'=>1]);
  80. }
  81. Db::commit();
  82. } catch (PDOException $e) {
  83. Db::rollback();
  84. $this->error($e->getMessage());
  85. } catch (Exception $e) {
  86. Db::rollback();
  87. $this->error($e->getMessage());
  88. }
  89. if ($count) {
  90. $this->success();
  91. } else {
  92. $this->error(__('No rows were deleted'));
  93. }
  94. }
  95. $this->error(__('Parameter %s can not be empty', 'ids'));
  96. }
  97. }