diff --git a/homepage.html b/homepage.html index c3634cc..fc3b9d1 100644 --- a/homepage.html +++ b/homepage.html @@ -101,7 +101,7 @@
立即兑换
@@ -512,7 +512,7 @@ /* 直冲、立减金商品状态为 1 时可兑换。 * 红包商品状态为 1 8 时也可兑换 */ - if (gstatus == 1 || (row.type === 3 && [1, 8].includes(row.available))) { + if (gstatus == 1 || (row.period_type != 2 && row.period_type != 3 && row.type === 3 && [1, 8].includes(row.available))) { // 跳转商品详情页面 if (this.showType == 1) { //白名单 localStorage.setItem('token', row.token); @@ -593,7 +593,7 @@ if (item.available === 1) { return true; } else if (item.available === 8) { - if (item.type === 3) { + if (item.type === 3 && item.period_type != 2 && item.period_type != 3) { return true; } else { return false; diff --git a/packkey/homepage.html b/packkey/homepage.html index 1fd5f8b..32da9b5 100644 --- a/packkey/homepage.html +++ b/packkey/homepage.html @@ -103,7 +103,7 @@
立即兑换
@@ -506,7 +506,7 @@ /* 直冲、立减金商品状态为 1 时可兑换。 * 红包商品状态为 1 8 时也可兑换 */ - if (gstatus == 1 || (row.type === 3 && [1, 8].includes(row.available))) { + if (gstatus == 1 || (row.period_type != 2 && row.period_type != 3 && row.type === 3 && [1, 8].includes(row.available))) { // 跳转商品详情页面 if (this.showType == 1) { //白名单 localStorage.setItem('token', row.token); @@ -587,7 +587,7 @@ if (item.available === 1) { return true; } else if (item.available === 8) { - if (item.type === 3) { + if (item.type === 3 && item.period_type != 2 && item.period_type != 3) { return true; } else { return false; diff --git a/xw-pages/homepage.html b/xw-pages/homepage.html index cc7f0dc..d42ceb9 100644 --- a/xw-pages/homepage.html +++ b/xw-pages/homepage.html @@ -110,7 +110,7 @@
立即兑换
@@ -527,7 +527,7 @@ /* 直冲、立减金商品状态为 1 时可兑换。 * 红包商品状态为 1 8 时也可兑换 */ - if (gstatus == 1 || (row.type === 3 && [1, 8].includes(row.available))) { + if (gstatus == 1 || (row.period_type != 2 && row.period_type != 3 && row.type === 3 && [1, 8].includes(row.available))) { // 跳转商品详情页面 if (this.showType == 1) { //白名单 localStorage.setItem('token', row.token); @@ -608,7 +608,7 @@ if (item.available === 1) { return true; } else if (item.available === 8) { - if (item.type === 3) { + if (item.type === 3 && item.period_type != 2 && item.period_type != 3) { return true; } else { return false;