*/ class Index extends Admin { public function exceptMiddleware() { return [PowerAuth::class]; } /** * 登录 * @param AdministratorsModel $administrators * @return string * @throws \Exception */ public function login(AdministratorsModel $administrators) { if($this->request->isPost()){ $data = $this->request->post(); $this->validate($data, AdministratorsValidate::class . '.login'); return ResponseJson::mixin($administrators->login(data_only($data, ['account', 'password']))); } return $this->fetch('login'); } /** * 框架主体 * @param Route $route * @return \think\response\View * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function main(Route $route) { return view('index', [ 'menu' => $route->getMenu(), ]); } /** * 主页 * @param Route $route * @return \think\response\View * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function home(Route $route) { $route_data = array_filter($route->getMenuRoute(), fn($v) => ($v['pid'] != 0)); return view('', compact('route_data')); } /** * @param string $table * @return \think\response\Json */ public function dataAuth(string $table = '') { $data_auth = array_column(config('admin.data_auth'), null, 'table'); if (empty($data_auth[$table])){ return ResponseJson::success(); } try { $data = Db::name($table)->where(BaseModel::getSoftDeleteData()) ->field("id value, {$data_auth[$table]['field']} name") ->select(); } catch (\Exception $exception) { $data = []; } return ResponseJson::success($data); } /** * 退出登录 * @return \think\response\Redirect|void */ public function loginOut() { session(null); return redirect(admin_url('login')); } }