|
@@ -71,9 +71,13 @@
|
|
|
</ul>
|
|
|
|
|
|
<teleport to="body">
|
|
|
+ <logo />
|
|
|
<introduce v-if="showIntroduce" />
|
|
|
<telephone v-if="showTelephone" />
|
|
|
<clink v-if="showLink" />
|
|
|
+ <div class="tools-share" @click="onShare">
|
|
|
+ <img :src="require(`@/assets/images/icon2/share@2x.png`)" alt="" />
|
|
|
+ </div>
|
|
|
<div class="tools-more" @click="showMore = false" v-if="showMore">
|
|
|
<div class="list">
|
|
|
<div @click="onIsAutoRotate">
|
|
@@ -134,7 +138,7 @@ import {
|
|
|
} from "vue";
|
|
|
import { useStore } from "vuex";
|
|
|
import { useApp } from "@/app";
|
|
|
-
|
|
|
+import logo from "../logo.vue";
|
|
|
import introduce from "./control/text";
|
|
|
import telephone from "./control/telephone";
|
|
|
import clink from "./control/link";
|
|
@@ -330,6 +334,17 @@ onMounted(() => {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+.tools-share{
|
|
|
+ position: absolute;
|
|
|
+ right: 15px;
|
|
|
+ top: 16px;
|
|
|
+ z-index: 999;
|
|
|
+ img{
|
|
|
+ width: 24px;
|
|
|
+ height: 24px;
|
|
|
+ object-fit: contain;
|
|
|
+ }
|
|
|
+}
|
|
|
.tools-more{
|
|
|
position: absolute;
|
|
|
left: 0;
|