修复无法正常发送短信的问题

Signed-off-by: vilson <545522390@qq.com>
This commit is contained in:
vilson 2019-03-20 10:51:21 +08:00
parent d1f7b5880e
commit 8a0c166361

View File

@ -10,6 +10,7 @@ use service\LogService;
use service\NodeService; use service\NodeService;
use service\RandomService; use service\RandomService;
use mail\Mail; use mail\Mail;
use sms\Sms;
use think\Db; use think\Db;
use think\db\exception\DataNotFoundException; use think\db\exception\DataNotFoundException;
use think\db\exception\ModelNotFoundException; use think\db\exception\ModelNotFoundException;
@ -21,10 +22,9 @@ use think\facade\Validate;
/** /**
* 系统登录控制器 * @title 用户相关
* class Order * @description 接口说明
* @package app\admin\controller * @group 接口分组
* @author Vilson
*/ */
class Login extends BasicApi class Login extends BasicApi
{ {
@ -37,12 +37,16 @@ class Login extends BasicApi
} }
/** /**
* 用户登录 * @title 用户登录
* @return string * @description 用户登录
* @author PearProject
* @url /project/login
* @method POST
* @return void :名称
* @throws DataNotFoundException
* @throws DbException
* @throws ModelNotFoundException
* @throws \think\Exception * @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\exception\PDOException * @throws \think\exception\PDOException
*/ */
public function index() public function index()
@ -123,7 +127,7 @@ class Login extends BasicApi
$mobile = $this->request->post('mobile', ''); $mobile = $this->request->post('mobile', '');
$code = RandomService::numeric(6); $code = RandomService::numeric(6);
if (!config('sms.debug')) { if (!config('sms.debug')) {
$sms = new Mail(); $sms = new Sms();
$result = $sms->vSend($mobile, [ $result = $sms->vSend($mobile, [
'data' => [ 'data' => [
'project' => 'DWYsW1', 'project' => 'DWYsW1',