作者 潘浩文
1 个管道 的构建 通过 耗费 0 秒

测试反馈修改

... ... @@ -162,7 +162,12 @@ class BrandController extends WeChatBaseController
//点赞ajax接口
public function like()
{
$re = $this->checkUser();
$re=Db::name('users')->where(['open_id'=>session('wechat_user')['id']])->find();
if (!$re['mobile']){
return 3;
}else{
return $re;
}
$param = $this->request->param();
$like = new LikeService();
return $like->like($param['id'], 1, $re['id']);
... ...
... ... @@ -338,6 +338,9 @@
$(".commentnum").html(num)
window.location.reload();
}
else if (data==3){
window.location.href="{:url('user/register/register')}";
}
}
})
})
... ...