Commit 4407f5a9 authored by zhengke's avatar zhengke

x

parent bab04b56
......@@ -378,3 +378,39 @@ p{
height: 0.2rem;
margin-left: 0.15rem;
}
.Noticewarp{
overflow: hidden;
height: 0.3rem;
line-height: 0.3rem;
width: 100%;
position: absolute;
top:2.7rem;
z-index:999;
}
.Noticewarp .scroll {
width: 200%;
float: left;
position: relative;
}
.Noticewarp a {
color: #fff;
width: auto;
float: left;
padding:0 0.2rem;
height:0.3rem;
text-decoration: none;
margin-right:0.1rem;
border-radius:1rem;
background: rgba(0,0,0,0.5);
font-size:0.1rem;
display: inline-block;
}
.scroll a img{
width:0.25rem;
vertical-align: middle;
position: relative;
top:-0.02rem;
}
.Noticewarp a:last-child{
margin-right:0;
}
\ No newline at end of file
......@@ -23,6 +23,11 @@
<body>
<div id="box">
<div class="Noticewarp" id="demo">
<div class="scroll" id="demo1">
</div>
<div id="demo2"></div>
</div>
<div class="wx_bg">
<img src="../images/qsywx.png" alt="" />
</div>
......@@ -171,6 +176,72 @@
<script type="text/javascript" src="../js/yql.js"></script>
<script>
//横向滚动-->
var demo = document.getElementById("demo");
var demo1 = document.getElementById("demo1");
var demo2 = document.getElementById("demo2");
var lastRequestTime=null;
demo2.innerHTML = document.getElementById("demo1").innerHTML;
function Marquee() {
if (demo.scrollLeft - demo2.offsetWidth >= 0) {
demo.scrollLeft -= demo1.offsetWidth;
} else {
demo.scrollLeft++;
}
}
var myvar = setInterval(Marquee, 50);
function getTicketList(couponId){
let minTimer=1*60*1000;
let maxTimer=5*60*1000;
let selectTime = -1;
if(this.lastRequestTime){
selectTime=this.lastRequestTime;
}
let msg={
selectTime:selectTime,
CouponId:30
}
$.ajax({
type: "POST",
url: `${getApiUrl().urlPost}`,
contentType: "application/json",
data: getAjaxData("sellorder_get_GetCounponOrderRedis", msg),
async: false,
success: function (res) {
if (res.resultCode === 1) {
let dataList=res.data;
let CountLen=dataList.length;
var TotalSecond=CountLen*16*1000;
if(TotalSecond>maxTimer){
TotalSecond=maxTimer;
}else if(TotalSecond<minTimer){
TotalSecond=minTimer;
}
var str=''
for(var i=0;i<dataList.length;i++){
str+=`<a href="#">
<img src="${dataList[i].customerPhoto}"/>
${dataList[i].customerName}抢到了优惠券
</a>`
}
$('#demo1').html(str);
setTimeout(() => {
getTicketList(couponId);
}, TotalSecond);
}
},
error: function (res) {
}
})
var date = new Date();
var d = date.getFullYear() + "-" + (date.getMonth() + 1) + "-" + date.getDate() + " " +date.getHours()+ ":" + date.getMinutes()+":"+date.getSeconds();
this.lastRequestTime=d
}
let href = window.location.href;
// let href='https://127.0.0.1:5500/html/GT_activities.html?customerId=1549&accountId=1182&token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE1NzM0NjY2NjMuMCwiZXhwIjoxNTczNTUzMDYzLjAsInVzZXJJbmZvIjp7InVpZCI6IjExODIiLCJyZXF1ZXN0RnJvbSI6NH19.hX2b2MqSWYmWS0k3YsthxW-T6UxarIm5rdbqCVQtxdQ&secretKey=5d5e16254bd741c486fe2b83b42171d2&platform=app';
let login = true; //判断是否登录
......@@ -264,7 +335,7 @@
success: function(res) {
if (res.resultCode === 1) {
getTicketList(res.data.couponId);
let num = res.data.repertory; //优惠券总共数量
// let num = 5000; //优惠券总共数量
$('.box_title_2 p').html(res.data.redemptionPrice + '元抢购');
......
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