登录后订阅时间过短弹窗提示,如果是使用用户弹窗提示
This commit is contained in:
@@ -10,6 +10,7 @@
|
||||
:mask="afficheMask"
|
||||
:keyboard="false"
|
||||
:destroyOnClose="true"
|
||||
:zIndex="10004"
|
||||
>
|
||||
<div class="affiche_bg"></div>
|
||||
<div class="affiche_btn">
|
||||
@@ -28,7 +29,9 @@
|
||||
<script lang="ts">
|
||||
import { defineComponent, h, ref ,computed,reactive, nextTick} from "vue";
|
||||
// import { Https } from "@/tool/https";
|
||||
import { setCookie, getCookie, WriteCookie } from "@/tool/cookie";
|
||||
// import { getCookie } from "@/tool/cookie";
|
||||
import { openGuide,driverObj__ } from "@/tool/guide";
|
||||
// import domTurnImg from '@/tool/domTurnImg'
|
||||
|
||||
export default defineComponent({
|
||||
@@ -55,13 +58,10 @@ export default defineComponent({
|
||||
methods: {
|
||||
init(text:any){
|
||||
this.affiche = true
|
||||
|
||||
this.afficheTitle = text.title
|
||||
console.log(text.str);
|
||||
let title = 'System Reminder'
|
||||
this.afficheTitle = text.title||title
|
||||
nextTick().then(()=>{
|
||||
let afficheStr:any = document.getElementById('afficheStr')
|
||||
console.log(afficheStr);
|
||||
|
||||
afficheStr.innerHTML = text.str
|
||||
})
|
||||
|
||||
@@ -69,6 +69,8 @@ export default defineComponent({
|
||||
},
|
||||
cancelDsign(){
|
||||
this.affiche = false
|
||||
sessionStorage.setItem('isTimeOne', JSON.stringify(true));
|
||||
openGuide()
|
||||
},
|
||||
},
|
||||
});
|
||||
@@ -90,7 +92,8 @@ export default defineComponent({
|
||||
background: none;
|
||||
}
|
||||
.affiche_bg{
|
||||
backdrop-filter: blur(3rem);
|
||||
// backdrop-filter: blur(3rem);
|
||||
background: #fff;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
|
||||
Reference in New Issue
Block a user