Commit c570ecb4 authored by Mac's avatar Mac

跟团游 优惠券

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