瀏覽代碼

魔域万圣节专题添加文字

PC-20180523CIYM\Administrator 4 年之前
父節點
當前提交
9f933efbf1

+ 2 - 2
2019专题/1910魔域万圣节专题/src/_index.html

@@ -20,7 +20,7 @@
 
     <div class="o-wrap page-index">
         <div class="mod-part mod-primary popup-container">
-            <i class="btn-popup"></i>
+            <i class="btn-popup" data-msg=""></i>
             <p class="text">活动时间:2019年10月24日至11月10日</p>
             <div class="popup-wrap">
                 <p class="mask"></p>
@@ -149,7 +149,7 @@
         <div class="mod-part mod-map popup-container">
             <div class="mod-inner">
                 <p class="text">地点:深圳欢乐谷   活动时间:10月11日至11月中旬</p>
-                <i class="btn-popup"></i>
+                <i class="btn-popup" data-msg=""></i>
                 <div class="popup-wrap">
                     <p class="mask"></p>
                     <i class="close-popup">&times;</i>

+ 5 - 0
2019专题/1910魔域万圣节专题/src/modules/page/index.js

@@ -566,8 +566,13 @@ var C = {
     popupShow: function () {
         $('.btn-popup').click(function () {
             var $this = $(this),
+                msgAttr = $this.attr('data-msg'),
                 $container = $this.parents('.popup-container'),
                 $popupInner = $container.find('.popup-wrap');
+            if (typeof(msgAttr) != 'undefined') {
+                V.showTip(msgAttr || '敬请期待!');
+                return false;
+            }
             $popupInner.fadeIn();
         });
         $('.close-popup').click(function () {