diff --git a/src/components/public/viewMap.vue b/src/components/public/viewMap.vue
index f0599ad..db20391 100644
--- a/src/components/public/viewMap.vue
+++ b/src/components/public/viewMap.vue
@@ -73,7 +73,7 @@ const showPop = () => show.value = !show.value
width: 100vw;
height: 100vh;
background: rgba(0, 0, 0, 0.698039215686274);
- z-index: 1000;
+ z-index: 1002;
}
.pop {
diff --git a/src/views/apartmentDetail.vue b/src/views/apartmentDetail.vue
index 5416395..0529382 100644
--- a/src/views/apartmentDetail.vue
+++ b/src/views/apartmentDetail.vue
@@ -152,8 +152,8 @@
{{ info.location || '位置' }}
-
+
@@ -217,7 +217,7 @@
@@ -321,8 +321,6 @@
微信扫码添加,备注“寄托”
-
-
@@ -339,7 +337,7 @@ import footerpage from '@/components/footer/footer.vue'
import viewMap from '@/components/public/viewMap.vue'
import transmitBtn from '@/components/public/transmitBtn.vue'
-import { transmit } from '@/utils/util.js'
+import { copyToClipboard } from '@/utils/util.js'
const uniqid = "aWqSz58aKKvn"
// uniqid=aWqSz58aKKvn
const { proxy } = getCurrentInstance()
@@ -482,13 +480,10 @@ const dualBrandData = () => {
}
// 点击转发
-const handleTransmit = () => {
-
- // let url = location.href
- // transmit(`${info.value['title']} - ${url}`)
- // copyToClipboard(`${info.value['title']} - ${url}`).then(() => {
- // ElMessage.success("复制成功!!!")
- // })
+const copy = (value) => {
+ copyToClipboard(value).then(() => {
+ ElMessage.success("复制成功!!!")
+ })
}
let contactReservationState = ref(false) // 联系预订客服的弹窗状态
@@ -1144,6 +1139,7 @@ const handleMediaBtn = (type, index) => {
min-height: 24px;
a {
+ cursor: pointer;
color: #7F7F7F;
text-decoration: underline;
}