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
38
39
40
41
| <template>
| <div class="operateMes">
| <p class="operateText">
| {{content}}
| </p>
| </div>
| </template>
|
| <script>
| export default {
| props: {
| content: {
| type: String,
| default: ''
| },
| }
| }
| </script>
|
| <style lang="postcss" scope>
| .operateMes {
| position: absolute;
| left: 50%;
| top: 50%;
| transform: translate(-50%,-50%);
| width: 160px;
| height: 68px;
| background-color: rgba(0,0,0,.6);
| border-radius: 4px;
| display: flex;
| align-items: center;
| justify-content: center;
| & .operateText {
| height: 20px;
| font-size: 14px;
| font-weight: 400;
| color: rgb(255,255,255);
| line-height: 20px;
| }
| }
| </style>
|
|