Link.php 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. <?php
  2. namespace app\admin\controller\shopro;
  3. use app\common\controller\Backend;
  4. use app\admin\model\shopro\Link as LinkModel;
  5. use app\admin\controller\shopro\Base;
  6. use think\Db;
  7. use think\exception\PDOException;
  8. use think\exception\ValidateException;
  9. use Exception;
  10. /**
  11. * 页面链接
  12. *
  13. * @icon fa fa-circle-o
  14. */
  15. class Link extends Base
  16. {
  17. /**
  18. * Link模型对象
  19. * @var \app\admin\model\shopro\Link
  20. */
  21. protected $model = null;
  22. public function _initialize()
  23. {
  24. parent::_initialize();
  25. $this->model = new \app\admin\model\shopro\Link;
  26. }
  27. /**
  28. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  29. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  30. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  31. */
  32. /**
  33. * 查看
  34. */
  35. public function index()
  36. {
  37. //设置过滤方法
  38. $this->request->filter(['strip_tags', 'trim']);
  39. if ($this->request->isAjax()) {
  40. $group = $this->model->group('group')->with('children')->field('group')->select();
  41. $list = collection($group)->toArray();
  42. return $this->success('链接列表', null, $list);
  43. }
  44. return $this->view->fetch();
  45. }
  46. /**
  47. * 添加
  48. */
  49. public function add()
  50. {
  51. if ($this->request->isPost()) {
  52. $params = $this->request->post();
  53. if ($params) {
  54. $params = json_decode($params['data'], true);
  55. $result = false;
  56. Db::startTrans();
  57. try {
  58. $result = $this->model->allowField(true)->save($params);
  59. Db::commit();
  60. } catch (ValidateException $e) {
  61. Db::rollback();
  62. $this->error($e->getMessage());
  63. } catch (PDOException $e) {
  64. Db::rollback();
  65. $this->error($e->getMessage());
  66. } catch (Exception $e) {
  67. Db::rollback();
  68. $this->error($e->getMessage());
  69. }
  70. if ($result !== false) {
  71. $this->success();
  72. } else {
  73. $this->error(__('No rows were inserted'));
  74. }
  75. }
  76. $this->error(__('Parameter %s can not be empty', ''));
  77. }
  78. return $this->view->fetch();
  79. }
  80. /**
  81. * 编辑
  82. */
  83. public function edit($id = null)
  84. {
  85. $row = $this->model->get($id);
  86. if (!$row) {
  87. $this->error(__('No Results were found'));
  88. }
  89. if ($this->request->isPost()) {
  90. $params = $this->request->post();
  91. if ($params) {
  92. $params = json_decode($params['data'], true);
  93. $result = false;
  94. Db::startTrans();
  95. try {
  96. $result = $row->allowField(true)->save($params);
  97. Db::commit();
  98. } catch (ValidateException $e) {
  99. Db::rollback();
  100. $this->error($e->getMessage());
  101. } catch (PDOException $e) {
  102. Db::rollback();
  103. $this->error($e->getMessage());
  104. } catch (Exception $e) {
  105. Db::rollback();
  106. $this->error($e->getMessage());
  107. }
  108. if ($result !== false) {
  109. $this->success();
  110. } else {
  111. $this->error(__('No rows were updated'));
  112. }
  113. }
  114. $this->error(__('Parameter %s can not be empty', ''));
  115. }
  116. $this->assignconfig("row", $row);
  117. return $this->view->fetch();
  118. }
  119. /**
  120. * 选择链接
  121. */
  122. public function select()
  123. {
  124. if ($this->request->isAjax()) {
  125. return $this->index();
  126. }
  127. return $this->view->fetch();
  128. }
  129. }