DengBiao hace 1 año
padre
commit
ee5a601c93
Se han modificado 1 ficheros con 6 adiciones y 4 borrados
  1. +6
    -4
      app/admin/hdl/hdl_role.go

+ 6
- 4
app/admin/hdl/hdl_role.go Ver fichero

@@ -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{


Cargando…
Cancelar
Guardar