|
@@ -193,7 +193,9 @@ func (c *YiDongController) ActivityExamine() {
|
|
|
} else {
|
|
|
if mapUserinfo[deMobile] != nil {
|
|
|
mapUserinfo[deMobile].YidongExamineStatus = v.ExamineStatus
|
|
|
- itemsAdd = append(itemsAdd, mapUserinfo[deMobile])
|
|
|
+ if v.ExamineStatus != 3 {
|
|
|
+ itemsAdd = append(itemsAdd, mapUserinfo[deMobile])
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -207,12 +209,14 @@ func (c *YiDongController) ActivityExamine() {
|
|
|
}
|
|
|
} else {
|
|
|
if mapMySchedule[deMobile] != nil {
|
|
|
- itemsMyAdd = append(itemsMyAdd, mapMySchedule[deMobile])
|
|
|
+ if v.ExamineStatus == 1 {
|
|
|
+ itemsMyAdd = append(itemsMyAdd, mapMySchedule[deMobile])
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- fmt.Println(delSignupMobile)
|
|
|
+ //fmt.Println(delSignupMobile)
|
|
|
|
|
|
//return
|
|
|
|
|
@@ -230,7 +234,7 @@ func (c *YiDongController) ActivityExamine() {
|
|
|
delSignupMobile = strings.TrimRight(delSignupMobile, ",")
|
|
|
if delSignupMobile != "" {
|
|
|
fmt.Println("处理要删除的报名信息")
|
|
|
- err = cygxActivity.DelCygxcActivitySignup(delMyMobile, activityId)
|
|
|
+ err = cygxActivity.DelCygxcActivitySignup(delSignupMobile, activityId)
|
|
|
if err != nil {
|
|
|
go alarm_msg.SendAlarmMsg("处理要删除的报名信息失败 DelCygxMyScheduleList:"+err.Error()+"活动ID"+activityIdYiDong, 3)
|
|
|
}
|