瀏覽代碼

更新

master
huangjiajun 1 周之前
父節點
當前提交
7115e80054
共有 1 個檔案被更改,包括 4 行新增0 行删除
  1. +4
    -0
      app/hdl/hdl_index.go

+ 4
- 0
app/hdl/hdl_index.go 查看文件

@@ -26,12 +26,16 @@ func Base(c *gin.Context) {
res := map[string]string{
"account_id": utils.IntToStr(user.AdmId),
"name": name,
"is_super": "0",
"account": user.Username,
"logo": "",
"label": "",
"seo_logo": "",
"seo_title": "",
}
if user.IsSuperAdministrator == 1 {
res["is_super"] = "1"
}
NewAdminRoleDb := implement.NewAdminRoleDb(svc.MasterDb(c))
role, _ := NewAdminRoleDb.GetAdminRoleByAdminId(user.AdmId)
if role != nil {


Loading…
取消
儲存