修改bug
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
<template>
|
||||
<div class="circle-btn flexcenter" @click="circleState = true">
|
||||
<div class="circle-inside flexcenter">
|
||||
<div class="circle-btn flexcenter">
|
||||
<div class="circle-inside flexcenter" @click="circleState = !circleState">
|
||||
<img class="circle-bj" src="@/assets/img/publicImage/half-circle-green.svg" />
|
||||
<img class="circle-icon" src="@/assets/img/publicImage/consult-hollow-out.png" />
|
||||
<div class="circle-text">咨询</div>
|
||||
</div>
|
||||
<div class="circle-pop flexacenter" v-if="circleState">
|
||||
<img class="close-icon" src="@/assets/img/publicImage/circle-close.png" alt=""
|
||||
@click.stop="circleState = false">
|
||||
@click.stop="circleState = !circleState">
|
||||
<img class="circle-bj" src="@/assets/img/publicImage/circle-pop-bj.svg">
|
||||
<img class="circle-bj-green" src="@/assets/img/publicImage/circle-pop-bj-green.svg">
|
||||
<div class="circle-title flexacenter">欢迎联系 <b>{{ wechat['nickname'] }}</b> 咨询房源</div>
|
||||
@@ -40,7 +40,6 @@ let circleState = ref(false)
|
||||
.circle-btn {
|
||||
position: fixed;
|
||||
bottom: 98px;
|
||||
// right: 58px;
|
||||
right: calc((100vw - 1200px) / 2 - 75px);
|
||||
|
||||
width: 60px;
|
||||
|
||||
@@ -8,10 +8,8 @@ import { ref, watch, onMounted, getCurrentInstance, nextTick, createApp } from '
|
||||
import store from '@/store/index';
|
||||
|
||||
|
||||
let showLoginModal = ref(false);
|
||||
|
||||
watch(() => store.state.showloginmodal, (newValue) => {
|
||||
// store.state.showloginmodal = false
|
||||
if (newValue) init1()
|
||||
});
|
||||
|
||||
@@ -68,7 +66,6 @@ const executeScripts = () => {
|
||||
const newScript = document.createElement('script');
|
||||
newScript.src = script.src;
|
||||
newScript.onload = () => {
|
||||
console.log('外部脚本已加载');
|
||||
// 可以在这里使用外部脚本提供的功能
|
||||
};
|
||||
document.body.appendChild(newScript);
|
||||
|
||||
@@ -54,9 +54,9 @@ const props = defineProps({
|
||||
background-color: rgba(255, 255, 255, 1);
|
||||
border-radius: 50%;
|
||||
overflow: hidden;
|
||||
-moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.12156862745098);
|
||||
-webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.12156862745098);
|
||||
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.12156862745098);
|
||||
// -moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.12156862745098);
|
||||
// -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.12156862745098);
|
||||
// box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.12156862745098);
|
||||
margin-bottom: 33px;
|
||||
|
||||
.QRcode-img {
|
||||
|
||||
Reference in New Issue
Block a user