Browse Source

实名

master
huangjiajun 1 day ago
parent
commit
ec3a86ad2a
3 changed files with 4 additions and 1 deletions
  1. +2
    -1
      app/hdl/ModuleSetting.go
  2. +1
    -0
      app/md/realname_auth_base.go
  3. +1
    -0
      app/svc/svc_user_real_name.go

+ 2
- 1
app/hdl/ModuleSetting.go View File

@@ -18,7 +18,7 @@ import (
// @Accept json
// @Produce json
// @param Authorization header string true "验证参数Bearer和token空格拼接"
// @Param mod_name_value query string true "页面名称类型值(1:首页 2:会员中心 3:底部导航 4:邀请下载落地页 5:邀请海报 7:下载渠道 8:贡献值 9:蛋蛋分 10:商务合作 11:资质证书 12:提现页 13:提现到账户)"
// @Param mod_name_value query string true "页面名称类型值(1:首页 2:会员中心 3:底部导航 4:邀请下载落地页 5:邀请海报 7:下载渠道 8:贡献值 9:蛋蛋分 10:商务合作 11:资质证书 12:提现页 13:提现到账户 14实名认证)"
// @Success 200 {object} md.GetModuleSettingResp "具体数据"
// @Failure 400 {object} md.Response "具体错误"
// @Router /api/v1/getModuleSetting [GET]
@@ -38,6 +38,7 @@ func GetModuleSetting(c *gin.Context) {
"11": "qualification_certificate",
"12": "withdraw",
"13": "withdraw_account",
"14": "user_real_name",
}
val, ok := modNameMap[modName]
if !ok {


+ 1
- 0
app/md/realname_auth_base.go View File

@@ -3,6 +3,7 @@ package md
type RealNameAuthBasicData struct {
AuthState string `json:"auth_state" example:"0未申请 1申请通过 3申请失败"`
IsNeedGetEnergy string `json:"is_need_get_energy" example:"0不需要获取能量 1弹窗提示 前往蛋蛋乐园获取能量"`
TipStr string `json:"tip_str"`
}
type RealNameAuthAddRequest struct {
RealName string `json:"real_name"`


+ 1
- 0
app/svc/svc_user_real_name.go View File

@@ -22,6 +22,7 @@ func GetRealNameAuthBase(c *gin.Context) {
var res = &md.RealNameAuthBasicData{
AuthState: "0",
IsNeedGetEnergy: "1",
TipStr: "请前往蛋蛋乐园获取能量",
}

res.AuthState = "0"


Loading…
Cancel
Save