Commit 15de834d authored by 袁玲利's avatar 袁玲利

消费报告

parents cd449420 81424228
...@@ -1389,7 +1389,7 @@ ...@@ -1389,7 +1389,7 @@
<view id="leave-message-bar"> <view id="leave-message-bar">
</view> </view>
</view> --> </view> -->
<view v-if="tabIndex&&flag!=tabIndex && !(from == 'wechat' && auth == 'true')" class="school-report-footer"> <view v-if="tabIndex&&flag!=tabIndex" class="school-report-footer">
<view class="school-report-footer-item"> <view class="school-report-footer-item">
<view class="school-report-footer-item-txt"> <view class="school-report-footer-item-txt">
<text>到期后将无法查看完整报告</text> <text>到期后将无法查看完整报告</text>
...@@ -1897,6 +1897,7 @@ ...@@ -1897,6 +1897,7 @@
ScsApplicationList2: [], ScsApplicationList2: [],
sessionid: "", sessionid: "",
weixinOpenFlag: "", weixinOpenFlag: "",
productType: 0, // 3新版消费会员
}; };
}, },
computed: { computed: {
...@@ -1968,6 +1969,7 @@ ...@@ -1968,6 +1969,7 @@
this.usertype = getQueryParams("userType"); this.usertype = getQueryParams("userType");
this.sessionid = getQueryParams("seesionID"); this.sessionid = getQueryParams("seesionID");
this.weixinOpenFlag = getQueryParams("weixinOpenFlag"); this.weixinOpenFlag = getQueryParams("weixinOpenFlag");
this.productType = getQueryParams("weixinOpenFlag") || 0;
console.log( console.log(
this.auth == "false", this.auth == "false",
"个人用户鉴权", "个人用户鉴权",
...@@ -2024,6 +2026,7 @@ ...@@ -2024,6 +2026,7 @@
// this.$nextTick(() => { // this.$nextTick(() => {
// self.piechart(); // self.piechart();
// }); // });
// 检查会员信息的失效日期是否早于或等于2022年6月30日
if ( if (
new Date(this.memberInfo.invalidDate).getTime() <= new Date(this.memberInfo.invalidDate).getTime() <=
new Date("2022/06/30").getTime() new Date("2022/06/30").getTime()
...@@ -4752,9 +4755,17 @@ color: #FF8646;padding:13rpx 12rpx 30rpx 17rpx;`, ...@@ -4752,9 +4755,17 @@ color: #FF8646;padding:13rpx 12rpx 30rpx 17rpx;`,
}, },
// 跳转云平台权益中心-微信 // 跳转云平台权益中心-微信
async openAzMenber() { async openAzMenber() {
jWeixin.miniProgram.navigateTo({
url: "/pages_subpackB/pages/campuServiceConsumptionMembership/main", if(this.productType == 3){
}); jWeixin.miniProgram.navigateTo({
url: "/pages_subpackB/pages/campuServiceConsumptionMembership/main",
});
}else {
jWeixin.miniProgram.navigateTo({
url: "/pages_subpackB/pages/ToCloudOrder/ToCloudOrder",
});
}
}, },
// 跳转云平台权益中心-支付宝 // 跳转云平台权益中心-支付宝
async openAzMenber_() { async openAzMenber_() {
......
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