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"; import { getGuidance, setGuidance } from "./api"; import { headTopData } from "/src/page-instrument/header-top/index"; 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: "5.1rem", 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.6rem", 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.8rem", 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:'-5.5rem' }, 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.3rem", 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 guideInfo = ref({} as any) const getAllGuidance = async()=>{ try{ const res = await getGuidance({guideTag:'guideInfo'}) if(res.data){ guideInfo.value = JSON.parse(res.data?.guideValue) || null }else{ guideInfo.value = {} } if (guideInfo.value && guideInfo.value.studnetT) { tipShow.value = false; } else { tipShow.value = headTopData.modeType !== "init" ? true : false; } }catch(e){ console.log(e) } // const guideInfo = localStorage.getItem('teacher-guideInfo'); } getAllGuidance() 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 = async()=>{ // let guideInfo = JSON.parse(localStorage.getItem('guideInfo') || '{}') || null if(!guideInfo.value){ guideInfo.value = {studnetT:true} }else{ guideInfo.value.studnetT = true } // localStorage.setItem('guideInfo',JSON.stringify(guideInfo)) try{ const res = await setGuidance({guideTag:'guideInfo',guideValue:JSON.stringify(guideInfo.value)}) }catch(e){ console.log(e) } 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(); }} > 再看一遍
) : ( )}
))}
); }, });