DengBiao 1 vuosi sitten
vanhempi
commit
ee5a601c93
1 muutettua tiedostoa jossa 6 lisäystä ja 4 poistoa
  1. +6
    -4
      app/admin/hdl/hdl_role.go

+ 6
- 4
app/admin/hdl/hdl_role.go Näytä tiedosto

@@ -313,10 +313,12 @@ func AdminList(c *gin.Context) {
}
var enterpriseList []map[string]interface{}
for _, v1 := range adminEnterpriseList {
enterpriseList = append(enterpriseList, map[string]interface{}{
"name": v1.Enterprise.Name,
"id": v1.Enterprise.Id,
})
if v1.Enterprise.Id != 0 {
enterpriseList = append(enterpriseList, map[string]interface{}{
"name": v1.Enterprise.Name,
"id": v1.Enterprise.Id,
})
}
}

result = append(result, md.AdminListResp{


Ladataan…
Peruuta
Tallenna