|
|
@@ -63,7 +63,7 @@ https://oss-mbh5.colormaprun.com/card/#/pages/bm/style4/rankList
|
|
|
|
|
|
<my-popup ref="mypopup" :config="popupRuleConfig" :dataList="popupDataList" :acttime="acttime"></my-popup>
|
|
|
<my-popup ref="mypopupExchg" :config="popupExchgConfig" :dataList="popupExchgList"></my-popup>
|
|
|
- <my-popup ref="mypopupMessage" :dataList="popupMessageList"></my-popup>
|
|
|
+ <my-popup ref="mypopupMessage" :dataList="popupMessageList" @noMoreRemindersClick="onNoMoreRemindersClick"></my-popup>
|
|
|
|
|
|
</view>
|
|
|
</view>
|
|
|
@@ -504,7 +504,7 @@ https://oss-mbh5.colormaprun.com/card/#/pages/bm/style4/rankList
|
|
|
"height": "30px"
|
|
|
},
|
|
|
"title": "赛事规则",
|
|
|
- "content": "<p style='margin-bottom:12px;'>① 选择所在校区,参赛时间自由、路线随机</p> <p style='margin-bottom:12px;'>② 准确填报院系,共筑个人与院系荣耀</p> <p style='margin-bottom:12px;'>③ 打点1次1积分,途经点正确答题1积分,多次完赛,点数累加</p> <p style='margin-bottom:12px;'>④ 正常完赛累计积分,未完赛积分不计入</p>",
|
|
|
+ "content": "<p style='margin-bottom:12px;'>① 选择所在校区,参赛时间自由、路线随机</p> <p style='margin-bottom:12px;'>② 准确填报院系,共筑个人与院系荣耀</p> <p style='margin-bottom:12px;'>③ 打点1次1积分,途经点正确答题1积分,多次完赛,点数累加</p> <p style='margin-bottom:12px;'>④ 正常完赛累计积分,未完赛积分不计入</p>⑤ 请勿借助骑行工具参赛",
|
|
|
"imageList": []
|
|
|
}
|
|
|
},
|
|
|
@@ -703,6 +703,7 @@ https://oss-mbh5.colormaprun.com/card/#/pages/bm/style4/rankList
|
|
|
}
|
|
|
},
|
|
|
],
|
|
|
+
|
|
|
"param": {
|
|
|
"labelRightAnswerNum": "文化输出"
|
|
|
}
|
|
|
@@ -1014,19 +1015,34 @@ https://oss-mbh5.colormaprun.com/card/#/pages/bm/style4/rankList
|
|
|
popupData.data.title = unReadMessageRs[i].mqTitle;
|
|
|
popupData.data.message = unReadMessageRs[i].mqMessage;
|
|
|
this.popupMessageList.push(popupData);
|
|
|
-
|
|
|
+
|
|
|
// this.mqIdListStr += this.unReadMessageRs[i].mqId;
|
|
|
// if (i < this.unReadMessageRs.length - 1) {
|
|
|
// this.mqIdListStr += ",";
|
|
|
// }
|
|
|
}
|
|
|
+
|
|
|
+ // this.popupMessageList.push(
|
|
|
+ // {
|
|
|
+ // type: 6, // 6: 通知
|
|
|
+ // data: {
|
|
|
+ // mqType: 3,
|
|
|
+ // title: "特别提醒",
|
|
|
+ // message: `本次比赛的目的为体验校园文化,提升身体素质,让大家感受和熟悉定向运动魅力及技巧。<br>
|
|
|
+ // 在此特别提醒:<br>
|
|
|
+ // 无论是驰骋校园,还是漫步秋色,<b>“勿以轮带步,唯愿步量途”。让我们用脚步来丈量这片共同热爱的家园</b>,见证山大123周年的辉煌时刻!<br>
|
|
|
+ // <div style='text-align: right;'>山东大学体育委员会</div>`
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // );
|
|
|
+ // console.log("popupMessageList", this.popupMessageList);
|
|
|
|
|
|
if (this.popupMessageList.length > 0) {
|
|
|
const messageValue = uni.getStorageSync(this.messageKey);
|
|
|
console.log("messageValue:", messageValue);
|
|
|
if (!messageValue) {
|
|
|
this.$refs.mypopupMessage.popupOpen();
|
|
|
- uni.setStorageSync(this.messageKey, true);
|
|
|
+ // uni.setStorageSync(this.messageKey, true);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
@@ -1036,6 +1052,10 @@ https://oss-mbh5.colormaprun.com/card/#/pages/bm/style4/rankList
|
|
|
},
|
|
|
});
|
|
|
},
|
|
|
+ onNoMoreRemindersClick() {
|
|
|
+ this.$refs.mypopupMessage.popupClose();
|
|
|
+ uni.setStorageSync(this.messageKey, true);
|
|
|
+ },
|
|
|
// 标记消息已读
|
|
|
readMessage() {
|
|
|
uni.request({
|