Commit 72702036 by 谭新宇

广告只在扫描二维码进入时显示一次

parent 22f3750a
...@@ -107,6 +107,12 @@ function transPage(_pageNumber, _activityCode, _token, _addParam) { ...@@ -107,6 +107,12 @@ function transPage(_pageNumber, _activityCode, _token, _addParam) {
// _form.appendChild(inputToken); // _form.appendChild(inputToken);
// document.body.appendChild(_form); // document.body.appendChild(_form);
// _form.submit(); // _form.submit();
// 活动页面内返回到首页不显示广告
if(_pageNumber === '1' && url.indexOf('noshowad=1') === -1) {
url = url + '&noshowad=1';
}
window.location.href = url; window.location.href = url;
} }
...@@ -728,6 +734,9 @@ function compressImage(file, callback) { ...@@ -728,6 +734,9 @@ function compressImage(file, callback) {
/* ---------------------补充功能逻辑--------------------- */ /* ---------------------补充功能逻辑--------------------- */
// 添加进入N秒广告 // 添加进入N秒广告
function appendAdvertisement() { function appendAdvertisement() {
// 活动页内跳转不显示广告
var noshowad = getQueryString('noshowad');
if(noshowad === null) {
$("#adImgdiv").remove(); $("#adImgdiv").remove();
// 广告时间 // 广告时间
var time = getQueryString('adtime'); var time = getQueryString('adtime');
...@@ -763,6 +772,7 @@ function appendAdvertisement() { ...@@ -763,6 +772,7 @@ function appendAdvertisement() {
}).show(); }).show();
}); });
} }
}
} }
// 添加赞助商文案 // 添加赞助商文案
......
...@@ -261,6 +261,7 @@ function getPlayerList(playerListData) { ...@@ -261,6 +261,7 @@ function getPlayerList(playerListData) {
var i = 0 var i = 0
var item = $(".item",list)[0]; var item = $(".item",list)[0];
var tempItem = list.clone(); var tempItem = list.clone();
// 清空子元素 // 清空子元素
tempItem.empty().show(); tempItem.empty().show();
if(playerListData.records.length) { if(playerListData.records.length) {
...@@ -272,7 +273,8 @@ function getPlayerList(playerListData) { ...@@ -272,7 +273,8 @@ function getPlayerList(playerListData) {
// 名称替换 // 名称替换
$('.user-name',item).text(playerListData.records[i].name); $('.user-name',item).text(playerListData.records[i].name);
// 机构名称替换 // 机构名称替换
if(rules.acActivityOrgs.length === 0){ // 特殊处理
if(rules.acActivityOrgs.length === 0 || activityCode === 'HD1190904175331' || activityCode === 'HD1190904172515'){
$('.vote-struct',item).remove(); $('.vote-struct',item).remove();
}else { }else {
$('.vote-struct',item).text(playerListData.records[i].orgName); $('.vote-struct',item).text(playerListData.records[i].orgName);
......
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