Gg.php 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. <?php
  2. namespace app\admin\controller;
  3. use app\common\controller\Backend;
  4. use think\Db;
  5. use think\exception\PDOException;
  6. use think\exception\ValidateException;
  7. /**
  8. * 广告位
  9. *
  10. * @icon fa fa-gg
  11. */
  12. class Gg extends Backend
  13. {
  14. /**
  15. * Gg模型对象
  16. * @var \app\admin\model\Gg
  17. */
  18. protected $model = null;
  19. public function _initialize()
  20. {
  21. parent::_initialize();
  22. $this->model = new \app\admin\model\Gg;
  23. }
  24. public function import()
  25. {
  26. parent::import();
  27. }
  28. /**
  29. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  30. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  31. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  32. */
  33. /**
  34. * 添加
  35. */
  36. public function add()
  37. {
  38. if ($this->request->isPost()) {
  39. $params = $this->request->post("row/a");
  40. $param = $this->request->post();
  41. if ($params) {
  42. $params = $this->preExcludeFields($params);
  43. $params['type'] = $param['type'];
  44. if ($this->dataLimit && $this->dataLimitFieldAutoFill) {
  45. $params[$this->dataLimitField] = $this->auth->id;
  46. }
  47. $result = false;
  48. Db::startTrans();
  49. try {
  50. //是否采用模型验证
  51. if ($this->modelValidate) {
  52. $name = str_replace("\\model\\", "\\validate\\", get_class($this->model));
  53. $validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.add' : $name) : $this->modelValidate;
  54. $this->model->validateFailException(true)->validate($validate);
  55. }
  56. $result = $this->model->allowField(true)->save($params);
  57. Db::commit();
  58. } catch (ValidateException $e) {
  59. Db::rollback();
  60. $this->error($e->getMessage());
  61. } catch (PDOException $e) {
  62. Db::rollback();
  63. $this->error($e->getMessage());
  64. } catch (Exception $e) {
  65. Db::rollback();
  66. $this->error($e->getMessage());
  67. }
  68. if ($result !== false) {
  69. $this->success();
  70. } else {
  71. $this->error(__('No rows were inserted'));
  72. }
  73. }
  74. $this->error(__('Parameter %s can not be empty', ''));
  75. }
  76. return $this->view->fetch();
  77. }
  78. /**
  79. * 编辑
  80. */
  81. public function edit($ids = null)
  82. {
  83. $row = $this->model->get($ids);
  84. if (!$row) {
  85. $this->error(__('No Results were found'));
  86. }
  87. $adminIds = $this->getDataLimitAdminIds();
  88. if (is_array($adminIds)) {
  89. if (!in_array($row[$this->dataLimitField], $adminIds)) {
  90. $this->error(__('You have no permission'));
  91. }
  92. }
  93. if ($this->request->isPost()) {
  94. $params = $this->request->post("row/a");
  95. if ($params) {
  96. $params = $this->preExcludeFields($params);
  97. $result = false;
  98. Db::startTrans();
  99. try {
  100. //是否采用模型验证
  101. if ($this->modelValidate) {
  102. $name = str_replace("\\model\\", "\\validate\\", get_class($this->model));
  103. $validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.edit' : $name) : $this->modelValidate;
  104. $row->validateFailException(true)->validate($validate);
  105. }
  106. $result = $row->allowField(true)->save($params);
  107. Db::commit();
  108. } catch (ValidateException $e) {
  109. Db::rollback();
  110. $this->error($e->getMessage());
  111. } catch (PDOException $e) {
  112. Db::rollback();
  113. $this->error($e->getMessage());
  114. } catch (Exception $e) {
  115. Db::rollback();
  116. $this->error($e->getMessage());
  117. }
  118. if ($result !== false) {
  119. $this->success();
  120. } else {
  121. $this->error(__('No rows were updated'));
  122. }
  123. }
  124. $this->error(__('Parameter %s can not be empty', ''));
  125. }
  126. $this->view->assign("row", $row);
  127. $this->assignconfig('type',$row['type']);
  128. return $this->view->fetch();
  129. }
  130. // 添加删除一级列表返回数据格式
  131. public function indexx()
  132. {
  133. $data = Db::name('city')->field('id,name')->select();
  134. $re = [
  135. ['id' =>'1','name'=>'纯图'],
  136. ['id' =>'2','name'=>'图文']
  137. ];
  138. if($this->request->request("keyValue")){
  139. return ['total'=>1, 'list'=>$re[$this->request->request("keyValue")-1]];
  140. }
  141. return json(['list' => $re, 'total' => count($re)]);
  142. }
  143. }