lisenzhou před 2 roky
rodič
revize
d30825e9af
1 změnil soubory, kde provedl 4 přidání a 10 odebrání
  1. 4
    10
      src/components/PopUp.vue

+ 4
- 10
src/components/PopUp.vue Zobrazit soubor

18
     default: () => {},
18
     default: () => {},
19
   },
19
   },
20
 });
20
 });
21
-
22
-
23
 </script>
21
 </script>
24
 
22
 
25
 <style lang="less" scoped>
23
 <style lang="less" scoped>
26
-
27
-
28
 .overlay {
24
 .overlay {
29
   position: fixed;
25
   position: fixed;
30
   top: 0;
26
   top: 0;
46
     display: flex;
42
     display: flex;
47
     flex-direction: column;
43
     flex-direction: column;
48
     // background: fff;
44
     // background: fff;
45
+    overflow-y: auto;
49
     .image {
46
     .image {
50
       width: 100%;
47
       width: 100%;
51
     }
48
     }
56
       text-indent: 42px;
53
       text-indent: 42px;
57
       margin-top: 50px;
54
       margin-top: 50px;
58
       color: #fff;
55
       color: #fff;
59
-      overflow-y: auto;
60
-    }
61
-
62
-    .text::-webkit-scrollbar {
63
-      display: none;
64
     }
56
     }
65
   }
57
   }
66
-
58
+  .warp::-webkit-scrollbar {
59
+    display: none;
60
+  }
67
   animation: fade-in; /*动画名称*/
61
   animation: fade-in; /*动画名称*/
68
   animation-duration: 0.7s; /*动画持续时间*/
62
   animation-duration: 0.7s; /*动画持续时间*/
69
 }
63
 }