任务中心更新

This commit is contained in:
GaoHao 2024-12-05 15:46:54 +08:00
parent c7df084278
commit 30ceee0f2b
1 changed files with 33 additions and 99 deletions

View File

@ -22,10 +22,10 @@
<view class="subhead u-font-24">{{ item.subhead }}</view>
</view>
<view class="cell_right flex">
<view v-if=" item.type == 2 " class="btn u-font-24 text-bold opt">{{ item.btnText }}</view>
<view v-if=" item.type == 2 " class="btn u-font-24 text-bold opt" @click="goNav(item.url, item.type)">{{ item.btnText }}</view>
<view v-else-if=" item.type == 3 " class="btn u-font-24 text-bold disabled">{{ item.btnText }}</view>
<view v-else class="btn u-font-24 text-bold">{{ item.btnText }}</view>
<view v-if=" item.type ==4 " class="u-font-20 tip">查看奖品列表</view>
<view v-else class="btn u-font-24 text-bold" @click="goNav(item.url, item.type)">{{ item.btnText }}</view>
<view v-if=" item.type ==4 " class="u-font-20 tip" @click="goNav('/me/gift/gift', item.type)">查看奖品列表</view>
</view>
</view>
@ -42,49 +42,44 @@
return {
cellList: [
{
title: '分享奖励', type: 1, icon: '../../static/images/me/task_icon3.png', tip: '会员免费领', subhead: '分享好友即可获得', btnText:'立即领取'
title: '分享奖励', type: 1, url: '/me/invite/index', icon: '../../static/images/me/task_icon3.png', tip: '奖励888金币', subhead: '分享好友即可获得', btnText:'立即分享'
},
{
title: '每日签到奖励', type: 2, icon: '../../static/images/me/task_icon3.png', tip: '奖励金币', subhead: '每日付款满3笔即可获得', btnText:'立即看剧'
},
{
title: '每周打卡奖励', type: 3, icon: '', tip: '', subhead: '签到满7天即可获得丰富好礼', btnText:'剩余23次'
},
{
title: '每月打卡奖励1', type: 4, icon: '', tip: '', subhead: '当月签到满21天获得丰富好礼', btnText:'剩余233次'
},
{
title: '每月打卡奖励2', type: 5, icon: '../../static/images/me/task_icon4.png', tip: '奖励金币', subhead: '当月签到满21天即可免费领取', btnText:'立即领取'
},
{
title: '观看视频奖励', type: 6, icon: '../../static/images/me/task_icon3.png', tip: '奖励金币', subhead: '观看完整视频即可获得奖励', btnText:'立即领取'
title: '每日签到奖励', type: 2, url: '/pages/index/index', icon: '../../static/images/me/task_icon3.png', tip: '奖励8898金币', subhead: '每日付款满3笔即可获得', btnText:'立即看剧'
},
// {
// title: '', type: 3, url: '/me/invite/index', icon: '', tip: '', subhead: '7', btnText:'23'
// },
// {
// title: '1', type: 4, url: '/me/invite/index', icon: '', tip: '', subhead: '21', btnText:'233'
// },
// {
// title: '2', type: 5, url: '/me/invite/index', icon: '../../static/images/me/task_icon4.png', tip: '', subhead: '21', btnText:''
// },
// {
// title: '', type: 6, url: '/me/invite/index', icon: '../../static/images/me/task_icon3.png', tip: '', subhead: '', btnText:''
// },
]
}
},
onLoad() {
// #ifdef MP-WEIXIN || MP-TOUTIAO || MP-KUAISHOU
this.osName = uni.getSystemInfoSync().osName;
// #endif
// #ifdef APP
// #endif
// #ifdef MP-WEIXIN
// #endif
// #ifdef H5
// #endif
this.userName = uni.getStorageSync('userName')
},
methods: {
//
goNav(url,type) {
console.log(url)
if ( type == 2) {
uni.switchTab({
url: url
})
} else {
uni.navigateTo({
url: url
})
}
},
getvipdata() {
let data = {
userId: uni.getStorageSync('userId')
@ -100,69 +95,8 @@
})
},
callPay: function(response) {
if (typeof WeixinJSBridge === "undefined") {
if (document.addEventListener) {
document.addEventListener('WeixinJSBridgeReady', this.onBridgeReady(response), false);
} else if (document.attachEvent) {
document.attachEvent('WeixinJSBridgeReady', this.onBridgeReady(response));
document.attachEvent('onWeixinJSBridgeReady', this.onBridgeReady(response));
}
} else {
this.onBridgeReady(response);
}
},
onBridgeReady: function(response) {
let that = this;
if (!response.package) {
return;
}
console.log("response)))):" + JSON.stringify(response))
WeixinJSBridge.invoke(
'getBrandWCPayRequest', {
"appId": response.appid, //
"timeStamp": response.timestamp, //1970
"nonceStr": response.noncestr, //
"package": response.package,
"signType": response.signType, //
"paySign": response.sign //
},
function(res) {
if (res.err_msg === "get_brand_wcpay_request:ok") {
// 使,
//res.err_msgok
that.showPay = false
uni.showToast({
title: '支付成功',
icon: 'success'
})
let data = {
userId: uni.getStorageSync('userId')
}
that.$u.api.userVip(data).then(res => {
if (res.code == 0 && res.data && res.data
.isVip ==
2) {
uni.setStorageSync('isVIP', true)
} else {
uni.setStorageSync('isVIP', false)
}
})
setTimeout(d => {
let data = {
flag: true
}
uni.$emit('back', data)
uni.navigateBack(1)
}, 1000);
} else {
uni.hideLoading();
}
WeixinJSBridge.log(response.err_msg);
}
);
},
}
}
</script>