You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.1 KiB
45 lines
1.1 KiB
<?php
|
|
|
|
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|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');
|
|
}
|
|
|
|
/**
|
|
* 退出登录
|
|
*/
|
|
public function logout()
|
|
{
|
|
Session::clear('yoshop_store');
|
|
$this->redirect('passport/login');
|
|
}
|
|
|
|
}
|
|
|