|
@@ -1,4 +1,4 @@
|
|
|
-<?php /* Smarty version 2.6.17, created on 2018-05-28 12:10:52
|
|
|
+<?php /* Smarty version 2.6.17, created on 2018-05-29 11:54:42
|
|
|
compiled from events_turntable.html */ ?>
|
|
|
<?php $_smarty_tpl_vars = $this->_tpl_vars;
|
|
|
$this->_smarty_include(array('smarty_include_tpl_file' => "header.html", 'smarty_include_vars' => array()));
|
|
@@ -103,6 +103,27 @@ unset($_smarty_tpl_vars);
|
|
|
<div class="v_tips_box v_tips_box3" id="ks-tips"></div>
|
|
|
|
|
|
<script>
|
|
|
+var goUrl = '';
|
|
|
+function go_page(){
|
|
|
+ location.href = goUrl;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+function showErrorMsg(data_msg){
|
|
|
+ $('.v_close_btn').show();
|
|
|
+ $('#error_msg').html(data_msg);
|
|
|
+ $('#error_tips_box').fadeIn(200);
|
|
|
+ $('.a_cover').fadeIn(200);
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+function showErrorMsgGoPage(data_msg){
|
|
|
+ $('.v_close_btn').show();
|
|
|
+ $('#error_msg').html(data_msg);
|
|
|
+ $('#error_tips_box').fadeIn();
|
|
|
+ $('.a_cover').fadeIn();
|
|
|
+ setInterval("go_page();",seconds+100);
|
|
|
+}
|
|
|
|
|
|
$("#award_btn").on('click', function(){
|
|
|
var time = 2000;//设置抽奖loading时间
|
|
@@ -166,8 +187,21 @@ KISSY.use('node, io, xtemplate, anim', function (S, Node, IO, XTemplate, Anim) {
|
|
|
, data: {events_id: '<?php echo $this->_tpl_vars['turntableData']['events']['id']; ?>
|
|
|
'}
|
|
|
, success: function (data) {
|
|
|
- drawResult = data;
|
|
|
- return false;
|
|
|
+ if (data.ok) {
|
|
|
+ drawResult = data;
|
|
|
+ return false;
|
|
|
+ } else {
|
|
|
+ if(data.msg.url){
|
|
|
+ loadLogin();
|
|
|
+ //goUrl = '<?php echo $this->_tpl_vars['loginUrl']; ?>
|
|
|
+';
|
|
|
+ //showErrorMsgGoPage('本活动需登录后才可以参与');
|
|
|
+ return;
|
|
|
+ } else {
|
|
|
+ $("#luck_loading").hide();
|
|
|
+ $("#luck_result").show();
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
, error: function (NULL, textStatus) {
|
|
|
alert("请求服务器失败,原因:"+textStatus);
|