Commit 3a670de9 authored by 华国豪's avatar 华国豪 🙄

1

parent f0fee144
...@@ -25,6 +25,10 @@ ...@@ -25,6 +25,10 @@
opacity: 0; opacity: 0;
text-align: center; text-align: center;
} }
.main .box.nomove{
top: 40%;
opacity: 1;
}
.main .box.move{ .main .box.move{
top: 40%; top: 40%;
opacity: 1; opacity: 1;
...@@ -68,26 +72,29 @@ ...@@ -68,26 +72,29 @@
<script type="text/javascript" src="https://res.wx.qq.com/open/js/jweixin-1.3.2.js"></script> <script type="text/javascript" src="https://res.wx.qq.com/open/js/jweixin-1.3.2.js"></script>
<script> <script>
if (!JSON.parse(localStorage.RushbuyTime)) { let buyIf = {}
alert('没有localStorage.RushbuyTime' + localStorage.RushbuyTime) if (localStorage.buyInfo) {
buyIf = JSON.parse(localStorage.buyInfo)
}else {
window.location.href = 'https://activity.oytour.com/html/GT_activities.html';
}
if (buyIf.platform == 'app') {
move(1)
} else {
move(2)
} }
let RushbuyTime = JSON.parse(localStorage.RushbuyTime) let RushbuyTime = localStorage.RushbuyTime ? JSON.parse(localStorage.RushbuyTime) : {RushbuyTime: ''}
$(
function(){
$('#RushbuyTime').html(`有效期截止:` + RushbuyTime.RushbuyTime) $('#RushbuyTime').html(`有效期截止:` + RushbuyTime.RushbuyTime)
function move(t){
if (t === 1) {
$('.box').addClass('nomove')
} else {
setTimeout(function(){ setTimeout(function(){
$('.box').addClass('move') $('.box').addClass('move')
}, 500) }, 500)
} }
)
let buyIf = {}
if (localStorage.buyInfo) {
buyIf = JSON.parse(localStorage.buyInfo)
}else {
window.location.href = 'https://activity.oytour.com/html/GT_activities.html';
} }
$('.anniu').click(function () { $('.anniu').click(function () {
var loadingFlag; var loadingFlag;
if (buyIf.platform == 'app') { if (buyIf.platform == 'app') {
window.postMessage(JSON.stringify({'action': 'showHud', 'message': '抢购中...'})); window.postMessage(JSON.stringify({'action': 'showHud', 'message': '抢购中...'}));
......
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