|
@@ -158,12 +158,14 @@
|
|
|
var PageInit = function(){
|
|
|
$.ajax({
|
|
|
type: "post",
|
|
|
- url: "/active/livePage/status",
|
|
|
+ url: "/active/livePage/status?v="+new Date().getTime(),
|
|
|
data: {},
|
|
|
dataType: "json",
|
|
|
success: function(data){
|
|
|
- if(data.userId!=""){
|
|
|
+ if(data.userId!=undefined&&data.userId!=""){
|
|
|
isSub=true;
|
|
|
+ }else{
|
|
|
+ isSub=false;
|
|
|
}
|
|
|
//购买人数
|
|
|
if(data.liveactiveRTB){
|
|
@@ -188,7 +190,7 @@
|
|
|
subHandle: function () {
|
|
|
//点击立即抢购
|
|
|
$('.understand').on('click', function () {
|
|
|
- if (isSub&&false){
|
|
|
+ if (isSub){
|
|
|
window.location.href="/front/vipsubscribe/introducePage"
|
|
|
} else {
|
|
|
$androidActionSheet.fadeIn(200);
|
|
@@ -199,7 +201,7 @@
|
|
|
})
|
|
|
//点击了解VIP订阅
|
|
|
$(".j-button-confirm").on('click',function(){
|
|
|
- if (isSub&&false){
|
|
|
+ if (isSub){
|
|
|
window.location.href="/front/vipsubscribe/introducePage"
|
|
|
} else {
|
|
|
$androidActionSheet.fadeIn(200);
|