|
@@ -1,6 +1,12 @@
|
|
|
<template>
|
|
|
<div class="loader-container">
|
|
|
- <div class="loader"></div>
|
|
|
+ <div
|
|
|
+ style="height: 100%; width: 100%; background: #000; position: relative"
|
|
|
+ v-if="$userAgent.isWx && !$userAgent.isMiniProgram"
|
|
|
+ >
|
|
|
+ <img src="@/assets/image/point.png" alt="" class="point">
|
|
|
+ </div>
|
|
|
+ <div class="loader" v-else></div>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -17,6 +23,10 @@ export default {
|
|
|
return {};
|
|
|
},
|
|
|
mounted() {
|
|
|
+ if (this.$userAgent.isWx && !this.$userAgent.isMiniProgram) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
const {
|
|
|
invitationUserName,
|
|
|
operateActivityId,
|
|
@@ -84,6 +94,14 @@ export default {
|
|
|
height: 100%;
|
|
|
width: 100%;
|
|
|
}
|
|
|
+.point{
|
|
|
+ position: absolute;
|
|
|
+ top: 5%;
|
|
|
+ right: 5%;
|
|
|
+ width: 250px;
|
|
|
+ height: 250px;
|
|
|
+}
|
|
|
+
|
|
|
.loader {
|
|
|
position: relative;
|
|
|
width: 2.5em;
|