Browse Source

修复bug

DW-PC\DW 5 years ago
parent
commit
5e6cd1a7f4
1 changed files with 2 additions and 1 deletions
  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;
         });