|
@@ -100,7 +100,7 @@ func (this *YanxuanSpecialMessageController) MessageAdd() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
+
|
|
|
|
|
|
|
|
|
|
func (this *YanxuanSpecialMessageController) MessageManageList() {
|
|
func (this *YanxuanSpecialMessageController) MessageManageList() {
|
|
@@ -120,16 +120,18 @@ func (this *YanxuanSpecialMessageController) MessageManageList() {
|
|
pageSize, _ := this.GetInt("PageSize")
|
|
pageSize, _ := this.GetInt("PageSize")
|
|
currentIndex, _ := this.GetInt("CurrentIndex")
|
|
currentIndex, _ := this.GetInt("CurrentIndex")
|
|
messageType, _ := this.GetInt("MessageType", 1)
|
|
messageType, _ := this.GetInt("MessageType", 1)
|
|
- messageId, _ := this.GetInt("MessageId")
|
|
+ messageId, _ := this.GetInt("WxMessageId")
|
|
- messagerDetail, err := models.GetCygxYanxuanSpecialMessagerDetailById(messageId)
|
|
|
|
- if err != nil {
|
|
|
|
- br.Msg = "获取失败"
|
|
|
|
- br.ErrMsg = "获取失败, Err:" + err.Error()
|
|
|
|
- return
|
|
|
|
- }
|
|
|
|
resp := new(models.YanxuanSpecialMessageManageRespListResp)
|
|
resp := new(models.YanxuanSpecialMessageManageRespListResp)
|
|
- if messagerDetail.Status == -1 {
|
|
+ if messageId > 0 {
|
|
- resp.IsDelete = true
|
|
+ messagerDetail, err := models.GetCygxYanxuanSpecialMessagerDetailById(messageId)
|
|
|
|
+ if err != nil {
|
|
|
|
+ br.Msg = "获取失败"
|
|
|
|
+ br.ErrMsg = "获取失败, Err:" + err.Error()
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ if messagerDetail.Status == -1 {
|
|
|
|
+ resp.IsDelete = true
|
|
|
|
+ }
|
|
}
|
|
}
|
|
var startSize int
|
|
var startSize int
|
|
if pageSize <= 0 {
|
|
if pageSize <= 0 {
|