Commit c570ecb4 authored by Mac's avatar Mac

跟团游 优惠券

parent d3a1c757
......@@ -24,7 +24,7 @@
<div class="box_title">
<img src="../images/G@3x.png" alt="" class="G_img">
<h5>
重磅福利第一弹
</h5>
<div style="width: 90%;height: 1px;background: #C72220;margin: 0 auto"></div>
<div class="box_limit">
......@@ -94,8 +94,8 @@
<script type="text/javascript" src="../js/layer/layer.js"></script>
<script>
// let href = 'http://activity.oytour.com/html/Appmd/draw.html?customerId=1549&accountId=1182&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE1NzE5NzA5MDUuMCwiZXhwIjoxNTc0NTYyOTA1LjAsInVzZXJJbmZvIjp7InVpZCI6IjExODIiLCJyZXF1ZXN0RnJvbSI6M319.vlAcXCx4C_0KOmfLm4cLRxU28gTHmuMK6jgJtwjsSPM&secretKey=5d5e16254bd741c486fe2b83b42171d2';
let href = window.location.href;
let href = 'http://activity.oytour.com/html/Appmd/draw.html?customerId=1549&accountId=1182&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE1NzE5NzA5MDUuMCwiZXhwIjoxNTc0NTYyOTA1LjAsInVzZXJJbmZvIjp7InVpZCI6IjExODIiLCJyZXF1ZXN0RnJvbSI6M319.vlAcXCx4C_0KOmfLm4cLRxU28gTHmuMK6jgJtwjsSPM&secretKey=5d5e16254bd741c486fe2b83b42171d2';
// let href = window.location.href;
let param = href.split('?')[1].split("&") ? href.split('?')[1].split("&") : null;
let token = param[2].split('=')[1];
......@@ -116,24 +116,34 @@
contentType: "application/json",
data: getJavaA({}, token),
async: false,
success: function (res) {
if (res.resultCode === 1) {
let num = res.data.repertory ; //优惠券总共数量
// let num = 1; //优惠券总共数量
$('.box_title_2 p').html(res.data.redemptionPrice +'元抢购');
$('.box_title h5').html(res.data.remark);
$('.explain p').html('使用说明'+ '<br/>' + res.data.instructions );
$('.dataStatistics').dataStatistics({max:num,min:num,len:3,add:true,price:res.data.redemptionPrice}); //刚进入页面不执行动画
$('.dataStatistics').dataStatistics({
max:num,
min:num,
len:3,
add:true,
price:res.data.redemptionPrice,
couponId:res.data.couponId
}); //刚进入页面不执行动画
let activityStartDate = new Date(res.data.activityStartDate.replace('T',' ').replace(/-/g,'/')).getTime(); //活动开始时间
let activityEndDate = new Date(res.data.activityEndDate.replace('T',' ').replace(/-/g,'/')).getTime(); //活动结束时间
let nowDate = new Date(res.data.currentTime.replace('T',' ').replace(/-/g,'/')).getTime(); //服务器时间
// let activityEndDate = new Date('2019-11-05T17:39:00').getTime(); //活动结束时间
// let activityStartDate = new Date('2019-11-06T10:37:10').getTime();
let nowDate = new Date().getTime(); //现在时间
//判断当前时间是否到了抢购时间
if(activityStartDate >= nowDate){ //没到抢购时间 显示抢购的具体时间
......@@ -208,10 +218,15 @@
let expirationDate = (res.data.expirationDate).split('T')[0].replace(/-/g,'.');
$('.img_bg_p2').html('有效期截止:'+expirationDate)
}else {
$('.dataStatistics').dataStatistics({max:0,min:0,len:3,add:true}); //刚进入页面不执行动画
}
},
error: function (res) {
layer.msg(res.message)
$('.dataStatistics').dataStatistics({max:0,min:0,len:3,add:true}); //刚进入页面不执行动画
}
});
......
......@@ -6,6 +6,7 @@ $.fn.dataStatistics = function(options){
time : 60000, //时长
len:6, //数字是几位数
price:0, //金额
couponId:0, //订单id
},options || {});
var ths = this;//解决this指向问题
......@@ -64,13 +65,6 @@ $.fn.dataStatistics = function(options){
difference =options.max-options.min;//要执行动画的次数
}
//后一位数
function increase() {
//执行次数为0时,停止执行
if (difference<1) {
clearInterval(timer1);
if(nownumber == 0){ //优惠券没有的时候处理
clearInterval(timer2); //优惠券用完 清楚定时器
......@@ -86,6 +80,13 @@ $.fn.dataStatistics = function(options){
layer.msg('优惠券被抢光了!')
}
//后一位数
function increase() {
//执行次数为0时,停止执行
if (difference<1) {
clearInterval(timer1);
return false;
}
......@@ -140,6 +141,8 @@ $.fn.dataStatistics = function(options){
if(nownumber > 0){
let num = nownumber - res.data.repertory ; // 算出动画执行的次数
nownumber = res.data.repertory; // 算出现在的数字
// let num = 475 ; // 算出动画执行的次数
// nownumber = 0; // 算出现在的数字
if(num>0){
run(num)
......@@ -151,7 +154,7 @@ $.fn.dataStatistics = function(options){
let activityEndDate = new Date(res.data.activityEndDate.replace('T',' ').replace(/-/g,'/')).getTime();
let nowDate = new Date().getTime();
let nowDate = new Date(res.data.currentTime.replace('T',' ').replace(/-/g,'/')).getTime(); //服务器时间
if(activityStartDate >= nowDate){//活动还没开始
clearInterval(timer2);
......@@ -211,7 +214,7 @@ $.fn.dataStatistics = function(options){
type: "POST",
url: `${getApiUrl().urlJava}api/appActivity/PanicBuyingCoupon`,
contentType: "application/json",
data: getJavaA({}, token),
data: getJavaA({redemptionPrice:options.price,couponId:options.couponId}, token),
async: false,
success: function (res) {
window.postMessage(JSON.stringify({'action' : 'dismissHud'}));
......@@ -231,17 +234,18 @@ $.fn.dataStatistics = function(options){
'action' : 'jump', // showToast->一个提示信息 showHud->一个黑色的loading
'page' : 'payment',
'pageData' : {
'lineId' : 324,
'title':'title',
'price':options.price,
'couponId' : res.data.couponId,
'title':title,
'price':res.data.preferPrice,
'backKey':'reload'
}
}
window.postMessage(JSON.stringify(data));
}else {
layer.msg(res.message)
window.postMessage(JSON.stringify({'action' : 'showToast', 'message' : res.message}));
window.location.reload()
}
},
error: function (res) {
......@@ -257,10 +261,10 @@ $.fn.dataStatistics = function(options){
}else {
if($('.img_btn p').text() == '活动结束'){
layer.msg('活动已结束')
window.location.reload()
}else {
layer.msg('活动还未开始')
window.location.reload()
}
}
......
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