[baozhangchao] před 3 roky
rodič
revize
12dcfd9fde
1 změnil soubory, kde provedl 8 přidání a 13 odebrání
  1. 8
    13
      src/pages/resultPage.vue

+ 8
- 13
src/pages/resultPage.vue Zobrazit soubor

@@ -1,16 +1,7 @@
1 1
 <template>
2 2
   <div>
3
-    <img
4
-      class="bgi"
5
-      src="../../public/images/result/resultbgi.jpg"
6
-      width="100%"
7
-    />
8
-    <img
9
-      @click="onShare"
10
-      class="share"
11
-      src="../../public/images/result/sharebtn.png"
12
-      width="45%"
13
-    />
3
+    <img class="bgi" src="../../public/images/result/resultbgi.jpg" width="100%" />
4
+    <img @click="onShare" class="share" src="../../public/images/result/sharebtn.png" width="45%" />
14 5
     <img
15 6
       @click="close"
16 7
       v-show="isShare"
@@ -24,7 +15,7 @@
24 15
 export default {
25 16
   data() {
26 17
     return {
27
-      isShare:false
18
+      isShare: false
28 19
     }
29 20
   },
30 21
   methods: {
@@ -50,6 +41,10 @@ export default {
50 41
 .share {
51 42
   z-index: 3;
52 43
   position: absolute;
53
-  margin: 139vw 0 0 27.5vw;
44
+  top: 81vh;
45
+  /* align-items: center; */
46
+  /* width: 47%; */
47
+  /* margin: 0 auto; */
48
+  left: 27.5vw;
54 49
 }
55 50
 </style>