wangchuanjin 1 рік тому
батько
коміт
3864deb362

+ 1 - 1
pushfollowent/push/job/pushjob.go

@@ -172,7 +172,7 @@ func (p *PushJob) doPush(pusher Pusher, taskType int, u *FollowInfo) (pushResult
 //微信远程调用,实现模板发送消息
 func (p *PushJob) sendWeixin(u *FollowInfo) bool {
 	url := ""
-	suffix1, suffix2 := "您关注的企业", ""
+	suffix1, suffix2 := "您关注的", ""
 	if len(u.Follows) == 1 {
 		suffix2 = "有招标动态"
 		url = Se.EncodeString(u.Id+util.If(IsObjectIdHex(u.Id), ",_id,", ",positionId,").(string)+strconv.Itoa(int(time.Now().Unix()))+",followEntDetail") + "__" + encrypt.EncodeArticleId2ByCheck(fmt.Sprint(u.Follows[0].Id)) + "__"

+ 1 - 1
pushfollowproject/push/job/pushjob.go

@@ -164,7 +164,7 @@ func (p *PushJob) doPush(pusher Pusher, taskType int, u *FollowInfo) (pushResult
 
 //
 func (p *PushJob) sendWeixin(u *FollowInfo) bool {
-	suffix1, suffix2 := "您关注的项目", ""
+	suffix1, suffix2 := "您关注的", ""
 	if len(u.Follows) > 1 {
 		suffix2 = "等"
 	}

+ 1 - 1
pushownermonitor/push/job/pushjob.go

@@ -172,7 +172,7 @@ func (p *PushJob) doPush(pusher Pusher, taskType int, u *ownermonitor.OwnerMonit
 //微信远程调用,实现模板发送消息
 func (p *PushJob) sendWeixin(u *ownermonitor.OwnerMonitorInfo) bool {
 	url := ""
-	suffix1, suffix2 := "您监控的业主", ""
+	suffix1, suffix2 := "您监控的", ""
 	if len(u.OwnerMonitors) == 1 {
 		suffix2 = "有招标动态"
 		url = Se.EncodeString(u.Id+util.If(IsObjectIdHex(u.Id), ",_id,", ",positionId,").(string)+strconv.Itoa(int(time.Now().Unix()))+",") + "__" + Se.EncodeString(fmt.Sprintf(Config.WxTplMsg.OneUrl, u.OwnerMonitors[0].EntName))