* 'couponV2.0' of https://codeup.aliyun.com/5f9118049cffa29cfdd3be1c/marketing/mobileclient:
  fix:修复落地页登录白名单不跳转问题
This commit is contained in:
Apple 2022-10-08 18:06:23 +08:00
commit f5bf04a9ee
1 changed files with 2 additions and 2 deletions

View File

@ -147,7 +147,7 @@
this.openDialog('正在加载商品...');
localStorage.setItem('entryLink', window.location.href);//存储起始页链接
setTimeout(() => {
if (this.pageType === 4) {
if (this.pageType === 4 || this.pageType === 8) {
window.location.href = './couponCollection.html';
} else {
window.location.href = '../homepage.html';
@ -236,7 +236,7 @@
this.openDialog('正在加载商品...');
localStorage.setItem('entryLink', window.location.href);//存储起始页链接
setTimeout(() => {
if (this.pageType === 4) {
if (this.pageType === 4 || this.pageType === 8) {
window.location.href = './couponCollection.html';
} else {
window.location.href = '../homepage.html';