Commit 4b433665 by 李嘉林

开播提醒

parent e3c4e087
......@@ -15,8 +15,8 @@ export default {
name: "",
data() {
return {
liveId:0,
startTime:null,
liveId: 0,
startTime: null
};
},
components: {
......@@ -24,35 +24,66 @@ export default {
},
computed: {},
created() {},
onLoad(options){
onLoad(options) {
let params = JSON.parse(options.params);
this.liveId=params.liveId;
console.log(this.info,'--------------------126')
this.startTime=this.info.startTime;
this.liveId = params.liveId;
console.log(this.info, "--------------------126");
this.startTime = this.info.startTime;
},
mounted() {},
methods: {
// 开播提醒
remind() {
console.log("点击开播,'------------34")
console.log("点击开播,'------------34");
try {
const subscribeMessageObj = this.$store.state.subscribeMessageObj;
if (
subscribeMessageObj &&
Object.keys(subscribeMessageObj).length > 0
) {
// TODO 开播订阅
const tmplIds = [];
for (var key in subscribeMessageObj) {
// 改成开播key
if (key == "gift_be_expire") {
tmplIds.push(subscribeMessageObj[key]);
}
}
if (tmplIds.length > 0) {
wx.requestSubscribeMessage({
tmplIds: tmplIds,
success(res) {
console.log("message success response: ", res);
},
fail(res) {
console.log("message fail response: ", res);
}
});
}
}
} catch (err) {
console.error("subscribeMessage-err", err);
}
},
// 是否登录
isLogin(){
let _this=this;
isLogin() {
let _this = this;
wx.getStorage({
key: "sessionid",
success(res) {
_this.remind();
},
fail(res) {
console.log("未登录------150")
console.log("未登录------150");
// 跳转登录页
let backUrl='/lived/main';
let query={
liveId:_this.liveId,
fromType:"mini",
}
let url = `/pages/login/main?back=${backUrl}&params=${JSON.stringify(query)}`;
let backUrl = "/lived/main";
let query = {
liveId: _this.liveId,
fromType: "mini"
};
let url = `/pages/login/main?back=${backUrl}&params=${JSON.stringify(
query
)}`;
wx.navigateTo({
url: url
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment