|
@@ -59,7 +59,7 @@ func (this *UserController) Detail() {
|
|
|
// @Description 获取短信验证码接口
|
|
|
// @Param Mobile query string true "手机号码"
|
|
|
// @Param AreaNum query string true "地区编码"
|
|
|
-// @Success 200 {object} models.UserDetail
|
|
|
+// @Success Ret=200 获取成功
|
|
|
// @router /getSmsCode [get]
|
|
|
func (this *UserCommonController) GetSmsCode() {
|
|
|
br := new(models.BaseResponse).Init()
|
|
@@ -69,7 +69,7 @@ func (this *UserCommonController) GetSmsCode() {
|
|
|
}()
|
|
|
mobile := this.GetString("Mobile")
|
|
|
if mobile == "" {
|
|
|
- br.Msg="请输入手机号"
|
|
|
+ br.Msg = "请输入手机号"
|
|
|
return
|
|
|
}
|
|
|
areaNum := this.GetString("AreaNum")
|
|
@@ -105,7 +105,7 @@ func (this *UserCommonController) GetSmsCode() {
|
|
|
// @Title 校验短信验证码
|
|
|
// @Description 校验短信验证码接口
|
|
|
// @Param request body models.CheckSmsCodeReq true "type json string"
|
|
|
-// @Success 200 {object} models.LoginResp
|
|
|
+// @Success Ret=200 校验成功
|
|
|
// @router /checkSmsCode [post]
|
|
|
func (this *UserCommonController) CheckSmsCode() {
|
|
|
br := new(models.BaseResponse).Init()
|
|
@@ -154,7 +154,7 @@ func (this *UserCommonController) CheckSmsCode() {
|
|
|
// @Title 获取邮件验证码
|
|
|
// @Description 获取邮件验证码接口
|
|
|
// @Param Email query string true "手机号码"
|
|
|
-// @Success 200 {object} models.UserDetail
|
|
|
+// @Success Ret=200 获取成功
|
|
|
// @router /getEmailCode [get]
|
|
|
func (this *UserCommonController) GetEmailCode() {
|
|
|
br := new(models.BaseResponse).Init()
|
|
@@ -190,11 +190,10 @@ func (this *UserCommonController) GetEmailCode() {
|
|
|
br.Success = true
|
|
|
}
|
|
|
|
|
|
-
|
|
|
// @Title 校验邮箱验证码
|
|
|
// @Description 校验邮箱验证码接口
|
|
|
// @Param request body models.CheckEmailCodeReq true "type json string"
|
|
|
-// @Success 200 {object} models.LoginResp
|
|
|
+// @Success Ret=200 校验成功
|
|
|
// @router /checkEmailCode [post]
|
|
|
func (this *UserCommonController) CheckEmailCode() {
|
|
|
br := new(models.BaseResponse).Init()
|
|
@@ -242,9 +241,57 @@ func (this *UserCommonController) CheckEmailCode() {
|
|
|
|
|
|
/*
|
|
|
$app->post('api/user/login',"UserController@login");//登录
|
|
|
-$app->post('api/user/apply',"UserController@apply");//申请试用
|
|
|
*/
|
|
|
|
|
|
+// @Title 申请试用
|
|
|
+// @Description 申请试用接口
|
|
|
+// @Param request body models.ApplyReq true "type json string"
|
|
|
+// @Success 200 {object} models.LoginResp
|
|
|
+// @router /apply [post]
|
|
|
+func (this *UserController) Apply() {
|
|
|
+ br := new(models.BaseResponse).Init()
|
|
|
+ defer func() {
|
|
|
+ this.Data["json"] = br
|
|
|
+ this.ServeJSON()
|
|
|
+ }()
|
|
|
+ user := this.User
|
|
|
+ if user == nil {
|
|
|
+ br.Msg = "请登录"
|
|
|
+ br.ErrMsg = "请登录"
|
|
|
+ br.Ret = 408
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ var req models.ApplyReq
|
|
|
+ err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "参数解析异常!"
|
|
|
+ br.ErrMsg = "参数解析失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ realName := req.RealName
|
|
|
+ userId := user.UserId
|
|
|
+ if req.ApplyMethod == 2 {
|
|
|
+ if realName == "" {
|
|
|
+ br.Msg = "姓名不能为空!"
|
|
|
+ return
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if realName == "" {
|
|
|
+ realName = user.RealName
|
|
|
+ }
|
|
|
+ err = models.Apply(userId, req.ApplyMethod, user.Mobile, user.Email, req.CompanyName, realName, user.OpenId)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "申请失败!"
|
|
|
+ br.ErrMsg = "申请失败,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ br.Ret = 200
|
|
|
+ br.Success = true
|
|
|
+ br.Msg = "申请成功"
|
|
|
+}
|
|
|
+
|
|
|
// @Title 是否小套餐客户
|
|
|
// @Description 是否小套餐客户接口
|
|
|
// @Success 200 {object} models.SmallLimitResp
|