This commit is contained in:
yangduo 2025-02-21 13:52:17 +08:00
parent ed88b4adbe
commit 1bd28eaff6
2 changed files with 2 additions and 2 deletions

View File

@ -10,6 +10,6 @@
"wx_msg_notify_token": "kingsome",
"wx_msg_notify_encoding_aes_key": "2LO2BseGYDjPRK6xSf0Opv3PzWtOq2c3d8NhZHAVYbL",
"wx_nofity_host": "https://payservice-test.kingsome.cn",
"wx_link_title": "点我购买",
"wx_link_title": "点我购买 %s",
"wx_link_description": "完成支付后返回游戏查看"
}

View File

@ -379,7 +379,7 @@ func (this *MainServiceApi) WxMsgNotify(c *gin.Context) {
Url string `json:"url"`
Thumb_url string `json:"thumb_url"`
}{
Title: mt.Table.Config.GetWxLinkTitle() + " " + itemname,
Title: fmt.Sprintf(mt.Table.Config.GetWxLinkTitle(), itemname),
Description: mt.Table.Config.GetWxLinkDescription(),
Url: clickurl,
Thumb_url: thumburl,