1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
| <template>
| <div id="mobileActivity">
| <div class="mobileActivity_in">showActivity</div>
| </div>
| </template>
|
| <script>
| import { mapGetters } from "vuex";
| export default {
| name: "mobileActivity",
| computed: {
| ...mapGetters(["showActivity"]),
| },
| };
| </script>
| <style lang="scss" scoped>
| #mobileActivity {
| position: fixed;
| top: 0px;
| left: 0px;
| width: 100%;
| height: 100%;
| background-color: rgba($color: #000000, $alpha: 0.3);
| z-index: 999;
| display: flex;
| align-items: center;
| justify-content: center;
| .mobileActivity_in {
| border-radius: 25px 25px 10px 10px;
| width: 70%;
| height: 50%;
| background-color: #fff;
| box-sizing: border-box;
| padding: 10px;
| }
| }
| </style>
|
|