huangjiajun pirms 2 nedēļām
vecāks
revīzija
8e8b3a6adf
1 mainītis faili ar 11 papildinājumiem un 3 dzēšanām
  1. +11
    -3
      app/hdl/hdl_set_center.go

+ 11
- 3
app/hdl/hdl_set_center.go Parādīt failu

@@ -443,7 +443,7 @@ func AppletUnauthorized(c *gin.Context) {
// @Router /api/setCenter/share/index [GET]
func ShareIndex(c *gin.Context) {
masterId := svc.GetMasterId(c)
userAppDomainDb := implement.NewUserAppDomainDb(db.DBs[masterId])
userAppDomainDb := implement.NewUserAppDomainDb(db.Db)
agent, err := userAppDomainDb.GetAppDomainByType("agent", masterId)
if err != nil {
e.OutErr(c, e.ERR_DB_ORM, err.Error())
@@ -454,10 +454,18 @@ func ShareIndex(c *gin.Context) {
e.OutErr(c, e.ERR_DB_ORM, err.Error())
return
}
agentDomain := ""
if agent != nil {
agentDomain = agent.Domain
}
mediumDomain := ""
if medium != nil {
mediumDomain = medium.Domain
}
e.OutSuc(c, md.ShareIndexResp{
MasterId: masterId,
AgentDomain: agent.Domain,
MediumDomain: medium.Domain,
AgentDomain: agentDomain,
MediumDomain: mediumDomain,
}, nil)
return
}


Notiek ielāde…
Atcelt
Saglabāt