Browse Source

修复bug

DW-PC\DW 5 năm trước cách đây
mục cha
commit
5e6cd1a7f4
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  1. 2 1
      2019专题/特炫宣传页/src/modules/page/share.js

+ 2 - 1
2019专题/特炫宣传页/src/modules/page/share.js

@@ -28,7 +28,8 @@ class Index {
     bindEvent() {
         var self = this;
 
-        $("body").on("click", ".mask-wrap", function() {
+        $("body").on("click", ".mask-wrap", function(event) {
+            event.stopPropagation()
             $(this).remove();
             return false;
         });