import { Button, Popup } from "vant"; import { } from "vant"; import { defineComponent, nextTick, onMounted, reactive, ref, watch } from "vue"; import styles from "./index.module.less"; import { getImage } from "./images"; import { useRoute } from "vue-router"; import { getQuery } from "/src/utils/queryString"; export default defineComponent({ name: "studnetT-guide", emits: ["close"], setup(props, { emit }) { const data = reactive({ box: {}, show: false, steps: [ { ele: "", eleRect: {} as DOMRect, img: getImage("studnetT1.png"), handStyle: { top: "1.3rem", left:'0.3rem' }, imgStyle: { top: "1.9rem", width:'5.64rem', height:'2.77rem', left:'-2rem' }, btnsStyle: { top: "4.9rem", left:'-0.7rem' }, }, { ele: "", img: getImage("studnetT2.png"), handStyle: { top: "1.3rem", left:'0.3rem', }, imgStyle: { top: "1.9rem", width:'5.46rem', height:'2.3rem', left:'-2rem' }, btnsStyle: { top: "4.9rem", left:'-0.7rem' }, }, { ele: "", img: getImage("studnetT3.png"), handStyle: { top: "1.3rem", left:'0.3rem', }, imgStyle: { top: "1.9rem", width:'5.46rem', height:'2.30rem', left:'-2rem' }, btnsStyle: { top: "4.6rem", left:'-0.7rem' }, }, { ele: "", img: getImage("studnetT4.png"), handStyle: { top: "1.3rem", left:'0.3rem', }, imgStyle: { top: "1.8rem", width:'5.46rem', height:'2.30rem', left:'-2rem' }, btnsStyle: { top: "4.6rem", left:'-0.7rem' }, }, { ele: "", img: getImage("studnetT5.png"), handStyle: { top: "1.3rem", left:'0.3rem', }, imgStyle: { top: "1.8rem", width:'5.46rem', height:'2.6rem', left:'-3rem' }, btnsStyle: { top: "4.6rem", left:'-1.3rem' }, }, { ele: "", img: getImage("studnetT6.png"), handStyle: { top: "1.3rem", left:'0.3rem', }, imgStyle: { top: "1.62rem", width:'5.46rem', height:'2.30rem', left:'-3.2rem' }, btnsStyle: { top: "4.3rem", left:'-1.8rem' }, }, { ele: "", eleRect: {} as DOMRect, img: getImage("studnetT7.png"), handStyle: { top: "1.3rem", left:'0.3rem', }, imgStyle: { top: "1.62rem", width:'5.46rem', height:'2.3rem', left:'-5.5rem' }, btnsStyle: { top: "4.2rem", left:'-3.7rem' }, }, { ele: "", eleRect: {} as DOMRect, img: getImage("studnetT8.png"), handStyle: { top: "-1.38rem", left:'.45rem', transform: 'rotate(180deg)' }, imgStyle: { top: "-3.8rem", width:'5.46rem', height:'2.28rem', left:'-5rem' }, btnsStyle: { top: "-1.2rem", left:'-4.3rem' }, }, ], step: 0, }); const tipShow = ref(false) const query: any = getQuery(); const guideInfo = localStorage.getItem('guideInfo') if(guideInfo&&JSON.parse(guideInfo).studnetT || !query.showGuide){ tipShow.value =false }else { tipShow.value =true } const getStepELe = () => { console.log(`studnetT${data.step}`) const ele: HTMLElement = document.getElementById(`studnetT-${data.step}`)!; if (ele) { if (ele.style.display === 'none'){ handleNext() return } const eleRect = ele.getBoundingClientRect(); data.box = { left: eleRect.x + "px", top: eleRect.y + "px", width: eleRect.width + "px", height: eleRect.height + "px", }; } }; onMounted(() => { getStepELe(); }); const handleNext = () => { if (data.step >= 7) { endGuide(); return; } data.step = data.step + 1; getStepELe(); }; const endGuide = ()=>{ let guideInfo = JSON.parse(localStorage.getItem('guideInfo') || '{}') || null if(!guideInfo){ guideInfo = {studnetT:true} }else{ guideInfo.studnetT = true } localStorage.setItem('guideInfo',JSON.stringify(guideInfo)) tipShow.value = false // localStorage.setItem('endC') } return () => (
handleNext()}> {data.step!=data.steps.length-1&&
{ e.stopPropagation(); endGuide() }} > 跳过
}
{data.steps.map((item: any, index) => (
e.stopPropagation()} class={styles.item} style={{ display: index === data.step ? "" : "none", left: `${item.eleRect?.left}px`, top: `${item.eleRect?.top}px`, }} >
{data.step + 1 == data.steps.length ? ( <>
endGuide()}> 完成
{ data.step = 0; getStepELe(); }} > 再看一遍
) : ( )}
))}
); }, });