瀏覽代碼

更新

master
huangjiajun 5 月之前
父節點
當前提交
6a2c9b20b8
共有 1 個文件被更改,包括 9 次插入7 次删除
  1. +9
    -7
      app/admin/hdl/hdl_scheme.go

+ 9
- 7
app/admin/hdl/hdl_scheme.go 查看文件

@@ -43,13 +43,15 @@ func SchemeList(c *gin.Context) {
e.OutErr(c, e.ERR_DB_ORM, err2.Error())
return
}
temp.EnterpriseList = append(temp.EnterpriseList, struct {
Id int `json:"id"`
Name string `json:"name"`
}{
Id: enterprise.Id,
Name: enterprise.Name,
})
if enterprise != nil {
temp.EnterpriseList = append(temp.EnterpriseList, struct {
Id int `json:"id"`
Name string `json:"name"`
}{
Id: enterprise.Id,
Name: enterprise.Name,
})
}
}
result = append(result, &temp)
}


Loading…
取消
儲存