model = new \app\admin\model\Personalactivetype; // 必须将结果集转换为数组 $ruleList = \think\Db::name("personal_active_type")->field('id,name,pid,weigh')->order('weigh DESC,id ASC')->select(); Tree::instance()->init($ruleList); $this->rulelist = Tree::instance()->getTreeList(Tree::instance()->getTreeArray(0), 'name'); $ruledata = [0 => __('None')]; foreach ($this->rulelist as $k => &$v) { $v['name'] = str_replace(' ', '', $v['name']); $ruledata[$v['id']] = $v['name']; } unset($v); $this->view->assign('ruledata', $ruledata); $this->view->assign("parentList", $ruledata); } /** * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法 * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑 * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改 */ /** * 查看 */ public function index() { if ($this->request->isAjax()) { $list = $this->rulelist; $total = count($this->rulelist); $result = array("total" => $total, "rows" => $list); return json($result); } return $this->view->fetch(); } }