*/ class Route extends \app\common\controller\Admin { /** * @return array|\Closure|mixed|string|\think\Collection|\think\response\Json * @throws SdException */ public function listData() { return $this->setJoin([ ['route', 'i.pid = route.id', 'left'], ]) ->setField('i.id,i.title,i.route,i.pid,route.title parent,i.type,i.weigh,i.icon,i.create_time') ->listsRequest(); } /** * @return array|mixed */ public function add() { return view(__FUNCTION__, [ 'type_data' => \app\admin\model\system\Route::getType(), ]); } /** * @param int $id * @return array|\think\response\View * @throws SdException */ public function edit($id = 0) { return view(__FUNCTION__, [ 'type_data' => \app\admin\model\system\Route::getType(), 'data' => $this->getModel()::getDataById($id)->getData(), ]); } public function beforeWrite(&$data) { if (!empty($data['route'])) { $data['route'] = strtr($data['route'], ['\\' => '/']); } } /** * 获取节点 * @param \app\admin\model\system\Route $route * @return \think\response\Json * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function getNode(\app\admin\model\system\Route $route) { return ResponseJson::mixin($route->getNode()); } /** * @param $id * @return bool|string * @throws \Throwable */ public function delete($id) { (new \app\admin\model\system\Route())->deleteRoute($id); return true; } }