Index.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. <?php
  2. namespace app\admin\controller\document;
  3. use app\common\controller\Backend;
  4. use app\common\model\Document;
  5. use fast\Tree;
  6. /**
  7. * 文档
  8. *
  9. * @icon fa fa-circle-o
  10. */
  11. class Index extends Backend
  12. {
  13. /**
  14. * Document模型对象
  15. * @var \app\common\model\Document
  16. */
  17. protected $model = null;
  18. protected $rulelist = [];
  19. protected $multiFields = 'ismenu,status';
  20. public function _initialize()
  21. {
  22. parent::_initialize();
  23. $this->model = new \app\common\model\Document;
  24. $this->view->assign("statusList", $this->model->getStatusList());
  25. // 必须将结果集转换为数组
  26. $ruleList = collection($this->model->order('weigh', 'desc')->select())->toArray();
  27. foreach ($ruleList as $k => &$v) {
  28. $v['title'] = __($v['title']);
  29. // $v['remark'] = __($v['remark']);
  30. }
  31. unset($v);
  32. Tree::instance()->init($ruleList);
  33. $this->rulelist = Tree::instance()->getTreeList(Tree::instance()->getTreeArray(0), 'title');
  34. $ruledata = [0 => __('None')];
  35. foreach ($this->rulelist as $k => &$v) {
  36. if (!$v['ismenu']) {
  37. continue;
  38. }
  39. $ruledata[$v['id']] = $v['title'];
  40. }
  41. $typeList = [
  42. 0 => '好柿购',
  43. 1 => '多享柿',
  44. 2 => '门柿购',
  45. 3 => '海柿购',
  46. 4 => '柿知识'
  47. ];
  48. $categorydata = [0,1,2,3,4];
  49. foreach ($this->rulelist as $k => $v) {
  50. $categorydata[$v['id']] = $v;
  51. }
  52. $this->view->assign("typeList", $typeList);
  53. $this->view->assign("parentList", $categorydata);
  54. // $belong = ['好柿购','多享柿'];
  55. $this->view->assign('ruledata', $ruledata);
  56. // $this->view->assign('belong', $belong);
  57. }
  58. /**
  59. * 查看
  60. */
  61. public function index()
  62. {
  63. //设置过滤方法
  64. $this->request->filter(['strip_tags']);
  65. if ($this->request->isAjax()) {
  66. $search = $this->request->request("search");
  67. $type = $this->request->request("type");
  68. //构造父类select列表选项数据
  69. $list = [];
  70. foreach ($this->rulelist as $k => $v) {
  71. if ($type == "all" || $type == null) {
  72. if($v['belong'] == 0)
  73. $list[] = $v;
  74. } elseif ($v['belong'] == $type) {
  75. $list[] = $v;
  76. }
  77. }
  78. $total = count($list);
  79. $result = array("total" => $total, "rows" => $list);
  80. return json($result);
  81. }
  82. return $this->view->fetch();
  83. }
  84. /**
  85. * 添加
  86. */
  87. public function add()
  88. {
  89. if ($this->request->isPost()) {
  90. $this->token();
  91. }
  92. return parent::add();
  93. }
  94. /**
  95. * 编辑
  96. */
  97. public function edit($ids = null)
  98. {
  99. if ($this->request->isPost()) {
  100. $this->token();
  101. }
  102. return parent::edit($ids);
  103. }
  104. /**
  105. * 删除
  106. */
  107. public function del($ids = "")
  108. {
  109. if (!$this->request->isPost()) {
  110. $this->error(__("Invalid parameters"));
  111. }
  112. $ids = $ids ? $ids : $this->request->post("ids");
  113. if ($ids) {
  114. $delIds = [];
  115. foreach (explode(',', $ids) as $k => $v) {
  116. $delIds = array_merge($delIds, Tree::instance()->getChildrenIds($v, true));
  117. }
  118. $delIds = array_unique($delIds);
  119. $count = $this->model->where('id', 'in', $delIds)->delete();
  120. if ($count) {
  121. $this->success();
  122. }
  123. }
  124. $this->error();
  125. }
  126. }