| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- /**
- *
- * @copyright ©2020 点小铺
- * @author hanj
- * @link: https://dyuit.com
- * Created by VSCode
- */
- namespace app\store\controller;
- use app\store\model\store\User as StoreUser;
- use think\Session;
- /**
- * 商户认证
- * Class Passport
- * @package app\store\controller
- */
- class Passport extends Controller
- {
- /**
- * 商户后台登录
- * @return array|bool|mixed
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function login()
- {
- if ($this->request->isAjax()) {
- $model = new StoreUser;
- if ($model->login($this->postData('User'))) {
- return $this->renderSuccess('登录成功', url('index/index'));
- }
- return $this->renderError($model->getError() ?: '登录失败');
- }
- $this->view->engine->layout(false);
- return $this->fetch('login', [
- // 系统版本号
- 'version' => get_version()
- ]);
- }
- /**
- * 退出登录
- */
- public function logout()
- {
- Session::clear('dyu_store');
- $this->redirect('passport/login');
- }
- }
|