作者 lyh

gx异步执行更新列表页

... ... @@ -37,7 +37,7 @@ class UserLoginLogic
*/
public function login(){
//先验证手机号是否在项目中存在
$info = $this->model->list(['mobile'=>$this->param['mobile'],'status'=>$this->model::STATUS_ZERO],['id','is_password']);
$info = $this->model->list(['mobile'=>$this->param['mobile'],'status'=>$this->model::STATUS_ZERO],['id','is_password','project_id']);
if($info === false){
$this->fail('当前用户不存在或者被禁用',Code::USER_REGISTER_ERROE);
}
... ...
<?php
/**
* @remark :
* @name :AiVideo.php
* @author :lyh
* @method :post
* @time :2025/3/5 14:03
*/
namespace App\Models\Ai;
use App\Models\Base;
/**
* @remark :ai视频
* @name :AiVideo
* @author :lyh
* @method :post
* @time :2025/3/5 14:04
*/
class AiVideo extends Base
{
protected $table = 'gl_ai_video';
}
... ...