|
@@ -5,6 +5,7 @@ import (
|
|
|
"fmt"
|
|
|
reqv3 "github.com/imroc/req/v3"
|
|
|
"github.com/suyuan32/simple-admin-core/rpc/types/core"
|
|
|
+ "strings"
|
|
|
"wechat-api/ent"
|
|
|
"wechat-api/ent/predicate"
|
|
|
"wechat-api/ent/usagetotal"
|
|
@@ -105,7 +106,10 @@ func (l *GetWxListLogic) GetWxList(req *types.WxListReq) (*types.WxListResp, err
|
|
|
for _, v := range data.List {
|
|
|
// 创建 hookClient 客户端
|
|
|
serverInfo := serverSet[v.ServerID]
|
|
|
-
|
|
|
+ serverName := serverInfo.Name
|
|
|
+ if strings.HasPrefix(strings.ToUpper(v.Port), "PC-") {
|
|
|
+ serverName = "本地版"
|
|
|
+ }
|
|
|
var loginStatus uint8 = 0
|
|
|
hookClient := hook.NewHook(serverInfo.PrivateIP, serverInfo.AdminPort, v.Port)
|
|
|
if v.ServerID > 0 {
|
|
@@ -205,6 +209,7 @@ func (l *GetWxListLogic) GetWxList(req *types.WxListReq) (*types.WxListResp, err
|
|
|
Examples: &v.Edges.Agent.Examples,
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
resp.Data.Data = append(resp.Data.Data,
|
|
|
types.WxInfo{
|
|
|
BaseIDInfo: types.BaseIDInfo{
|
|
@@ -214,7 +219,7 @@ func (l *GetWxListLogic) GetWxList(req *types.WxListReq) (*types.WxListResp, err
|
|
|
},
|
|
|
Status: &loginStatus,
|
|
|
ServerId: &v.ServerID,
|
|
|
- ServerName: &serverInfo.Name,
|
|
|
+ ServerName: &serverName,
|
|
|
Port: &v.Port,
|
|
|
ProcessId: &processID,
|
|
|
Callback: &v.Callback,
|