huangjiajun 1 个月前
父节点
当前提交
0afdd977ed
共有 1 个文件被更改,包括 7 次插入5 次删除
  1. +7
    -5
      app/store/hdl/hdl_user.go

+ 7
- 5
app/store/hdl/hdl_user.go 查看文件

@@ -23,11 +23,12 @@ import (
func User(c *gin.Context) {
user := svc.GetUser(c)
res := map[string]string{
"head_img": user.Profile.AvatarUrl,
"nickname": user.Info.Nickname,
"phone": user.Info.Phone,
"state": "0",
"info": "",
"head_img": user.Profile.AvatarUrl,
"nickname": user.Info.Nickname,
"phone": user.Info.Phone,
"state": "0",
"info": "",
"store_type": "0",
}
storeCheck := db.StoreAuditByUid(svc.MasterDb(c), user.Info.Uid)
if storeCheck != nil {
@@ -47,6 +48,7 @@ func User(c *gin.Context) {
} else if storeCheck != nil && storeCheck.State == 2 {
res["state"] = "3"
}
res["store_type"] = utils.IntToStr(userParty.StoreType)
}
e.OutSuc(c, res, nil)
return


正在加载...
取消
保存