wcj 6 years ago
parent
commit
ee3431c57c
1 changed files with 3 additions and 1 deletions
  1. 3 1
      core/src/qfw/manage/message.go

+ 3 - 1
core/src/qfw/manage/message.go

@@ -3,6 +3,7 @@ package manage
 import (
 	"fmt"
 	"html/template"
+	"log"
 	. "qfw/coreconfig"
 	"qfw/coreutil"
 	"qfw/util"
@@ -217,7 +218,7 @@ func sendMes(id, title, subtitle, url, pic string) error {
 					"url":      url,
 				})
 			}()
-
+			log.Println(title)
 			coreutil.AppPushServiceCall(map[string]interface{}{
 				"phoneType":   ponetype,
 				"otherPushId": opushid,
@@ -227,6 +228,7 @@ func sendMes(id, title, subtitle, url, pic string) error {
 				"type":        "message",
 				"content":     pic,
 				"descript":    subtitle,
+				"title":       title,
 				"extend": map[string]interface{}{
 					"s_id": id,
 				},