diff --git a/homepage.html b/homepage.html index 9f9f389..baa274b 100644 --- a/homepage.html +++ b/homepage.html @@ -390,6 +390,10 @@ let ua = window.navigator.userAgent.toLowerCase();/* 判断是否web-view打开 */ if ((res.data && res.data.length == 1) || /miniProgram/i.test(ua)) {//单个商品直接进入详情页面 const product = res.data[0]; + /* 满足3个条件进入此判断 仅兑换一次 在线查看卡密商品 则卡密页面不能返回 */ + if (product.restrict == 1 && product.type == 1 && product.entity.card_show == 2) { + sessionStorage.setItem('backShow', 1); + } /* 满足3个条件进入此判断 仅兑换一次 已兑换 在线查看卡密商品 */ if (product.exchange == 1 && product.restrict == 1 && product.type == 1 && product.entity.card_show == 2) { return req @@ -401,7 +405,6 @@ .then(({ data, code, }) => { if (code === 200) { sessionStorage.setItem('orderNumber', data[0].order_number); - sessionStorage.setItem('backShow', 1); window.location.href = './coupon/lookCard.html'; } });