You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.6 KiB
60 lines
1.6 KiB
<div class="footer">
|
|
<div class="container">
|
|
<p>Copyright © {:date("Y")} 深圳文化产权交易所有限公司</p>
|
|
</div>
|
|
</div>
|
|
{if condition="CONTROLLER_NAME eq 'Index' and ACTION_NAME neq 'video'"}
|
|
<div class="right_fixd">
|
|
<div class="item" onclick="tgcheck()" style="width:31%;">
|
|
<i class="glyphicon glyphicon-edit"></i>
|
|
<span class="desc">我要托管</span>
|
|
</div>
|
|
<div class="item" onclick="actcheck()" style="width:31%;">
|
|
<i class="glyphicon glyphicon-list"></i>
|
|
<span class="desc">活动报名</span>
|
|
</div>
|
|
<div class="item" onclick="fbcheck()" style="width:31%;">
|
|
<i class="glyphicon glyphicon-envelope"></i>
|
|
<span class="desc">联系我们</span>
|
|
</div>
|
|
</div>
|
|
{/if}
|
|
<script>
|
|
<!--点击我要托管开始-->
|
|
function tgcheck(){
|
|
$.ajax({type:"POST",
|
|
url:"{:url('index/tg_check')}",
|
|
data:"",
|
|
async: false,
|
|
success:function (data) {
|
|
window.location.href=data.url;
|
|
}
|
|
})
|
|
}
|
|
function actcheck(){
|
|
$.ajax({type:"POST",
|
|
url:"{:url('index/tg_check')}",
|
|
data:"",
|
|
async: false,
|
|
success:function (data) {
|
|
if(data.code){
|
|
window.location.href="{:url('activity/index')}";
|
|
}else{
|
|
window.location.href=data.url;
|
|
}
|
|
}
|
|
})
|
|
}
|
|
function fbcheck(){
|
|
$.ajax({type:"POST",
|
|
url:"{:url('index/fb_check')}",
|
|
data:"",
|
|
async: false,
|
|
success:function (data) {
|
|
window.location.href=data.url;
|
|
}
|
|
})
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|