Index.php 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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')->field('id,pid,title,ismenu,name,weigh,status,belong')->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 = config('site.goodstype');
  42. $categorydata = [0 => ['belong' => '0,1,2,3,4,5', 'title' => __('None')]];
  43. foreach ($this->rulelist as $k => $v) {
  44. $categorydata[$v['id']] = $v;
  45. }
  46. $this->view->assign("typeList", $typeList);
  47. $this->view->assign("parentList", $categorydata);
  48. $this->view->assign('ruledata', $ruledata);
  49. }
  50. /**
  51. * 查看
  52. */
  53. public function index()
  54. {
  55. //设置过滤方法
  56. $this->request->filter(['strip_tags']);
  57. if ($this->request->isAjax()) {
  58. $search = $this->request->request("search");
  59. $type = $this->request->request("type");
  60. //构造父类select列表选项数据
  61. $list = [];
  62. foreach ($this->rulelist as $k => $v) {
  63. if ($type == "all" || $type == null) {
  64. if($v['belong'] == 0)
  65. $list[] = $v;
  66. } elseif ($v['belong'] == $type) {
  67. $list[] = $v;
  68. }
  69. }
  70. $total = count($list);
  71. $result = array("total" => $total, "rows" => $list);
  72. return json($result);
  73. }
  74. return $this->view->fetch();
  75. }
  76. /**
  77. * 添加
  78. */
  79. public function add()
  80. {
  81. if ($this->request->isPost()) {
  82. $this->token();
  83. }
  84. return parent::add();
  85. }
  86. /**
  87. * 编辑
  88. */
  89. public function edit($ids = null)
  90. {
  91. if ($this->request->isPost()) {
  92. $this->token();
  93. }
  94. return parent::edit($ids);
  95. }
  96. /**
  97. * 删除
  98. */
  99. public function del($ids = "")
  100. {
  101. if (!$this->request->isPost()) {
  102. $this->error(__("Invalid parameters"));
  103. }
  104. $ids = $ids ? $ids : $this->request->post("ids");
  105. if ($ids) {
  106. $delIds = [];
  107. foreach (explode(',', $ids) as $k => $v) {
  108. $delIds = array_merge($delIds, Tree::instance()->getChildrenIds($v, true));
  109. }
  110. $delIds = array_unique($delIds);
  111. $count = $this->model->where('id', 'in', $delIds)->delete();
  112. if ($count) {
  113. $this->success();
  114. }
  115. }
  116. $this->error();
  117. }
  118. }