|
@@ -23,13 +23,12 @@ $(function(){
|
|
|
$('.onSelect .preFirst').css('display', 'none')
|
|
|
$('.onSelect .next').css('display', 'none')
|
|
|
};
|
|
|
- if(window.location.hash){
|
|
|
+ if(window.location.hash&&window.location.hash.indexOf('2')>-1){
|
|
|
let hash = window.location.hash,
|
|
|
ind = [...hash][1];
|
|
|
-
|
|
|
$('.facJuan>div').eq(ind).show().siblings().hide();
|
|
|
$('.facTab span').eq(ind).addClass("facActive").siblings().removeClass('facActive');
|
|
|
- loadJuan()
|
|
|
+ loadJuan();
|
|
|
}else{
|
|
|
$('.facJuan>div').eq(0).show().siblings().hide();
|
|
|
$('.facTab span').eq(0).addClass("facActive").siblings().removeClass('facActive');
|
|
@@ -41,7 +40,6 @@ $(function(){
|
|
|
if(facIndex==2){
|
|
|
loadJuan()
|
|
|
}
|
|
|
-
|
|
|
})
|
|
|
|
|
|
//领劵
|
|
@@ -67,7 +65,6 @@ $(function(){
|
|
|
return;
|
|
|
}
|
|
|
msg('领取成功,请至个人中心查看。')
|
|
|
- console.log()
|
|
|
loadJuan()
|
|
|
}
|
|
|
})
|
|
@@ -92,6 +89,11 @@ $(function(){
|
|
|
return ;
|
|
|
}
|
|
|
let htmls = '';
|
|
|
+ if(!data.data.list.length){
|
|
|
+ htmls="<div class='Nodata'>暂无优惠劵<div>";
|
|
|
+ $('.listJ ul').html(htmls);
|
|
|
+ return;
|
|
|
+ }
|
|
|
data.data.list.map(item=>{
|
|
|
htmls+=`
|
|
|
<li>
|