123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- 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 { getQuery } from "/src/utils/queryString";
- export default defineComponent({
- name: "studentB-guide",
- emits: ["close"],
- setup(props, { emit }) {
- const data = reactive({
- box: {},
- show: false,
- steps: [
- {
- ele: "",
- eleRect: {} as DOMRect,
- img: getImage("studentB1.png"),
- handStyle: {
- top: "-1.41rem",
- left: "1.4rem",
- transform: "rotate(180deg)",
- },
- imgStyle: {
- top: "-5.01rem",
- width: "6.48rem",
- height: "3.01rem",
- left: "1.2rem",
- },
- btnsStyle: {
- top: "-1.61rem",
- left: "3.2rem",
- },
- },
- {
- ele: "",
- img: getImage("studentB2.png"),
- handStyle: {
- top: "-1.39rem",
- left: "0.15rem",
- transform: "rotate(180deg)",
- },
- imgStyle: {
- top: "-5.01rem",
- width: "6.48rem",
- height: "3.01rem",
- },
- btnsStyle: {
- top: "-1.61rem",
- left: "1.3rem",
- },
- },
- {
- ele: "",
- img: getImage("studentB3.png"),
- handStyle: {
- top: "-1.39rem",
- left: "2.8rem",
- transform: "rotate(180deg)",
- },
- imgStyle: {
- top: "-4.5rem",
- width: "6.48rem",
- height: "3.01rem",
- left: "-2.9rem",
- },
- btnsStyle: {
- top: "-1.1rem",
- left: "-1.8rem",
- },
- },
- ],
- step: 0,
- });
- const tipShow = ref(false);
- const query: any = getQuery();
- const guideInfo = localStorage.getItem("guideInfo");
- if ((guideInfo && JSON.parse(guideInfo).studentB) || !query.showGuide) {
- tipShow.value = false;
- } else {
- tipShow.value = true;
- }
- const getStepELe = () => {
- console.log(`modeType${data.step}`);
- const ele: HTMLElement = document.getElementById(`modeType-${data.step}`)!;
- if (ele) {
- 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 >= 2) {
- endGuide();
- return;
- }
- data.step = data.step + 1;
- getStepELe();
- };
- const endGuide = () => {
- let guideInfo = JSON.parse(localStorage.getItem("guideInfo") || "{}") || null;
- if (!guideInfo) {
- guideInfo = { studentB: true };
- } else {
- guideInfo.studentB = true;
- }
- localStorage.setItem("guideInfo", JSON.stringify(guideInfo));
- tipShow.value = false;
- // localStorage.setItem('endC')
- };
- return () => (
- <Popup
- teleport="body"
- overlay={false}
- closeOnClickOverlay={false}
- class={["popup-custom", styles.guidePopup]}
- v-model:show={tipShow.value}
- >
- <div class={styles.content} onClick={() => handleNext()}>
- <div
- class={styles.backBtn}
- onClick={(e: Event) => {
- e.stopPropagation();
- endGuide();
- }}
- >
- 跳过
- </div>
- <div class={styles.box} style={data.box} id={`modeType-${data.step}`}>
- {data.steps.map((item: any, index) => (
- <div
- onClick={(e: Event) => e.stopPropagation()}
- class={styles.item}
- style={{
- display: index === data.step ? "" : "none",
- left: `${item.eleRect?.left}px`,
- top: `${item.eleRect?.top}px`,
- }}
- >
- <img class={styles.img} style={item.imgStyle} src={item.img} />
- <img class={styles.iconHead} style={item.handStyle} src={getImage("indexDot.png")} />
- <div class={styles.btns} style={item.btnsStyle}>
- {data.step + 1 == data.steps.length ? (
- <>
- <div class={[styles.studentNext]} onClick={() => endGuide()}>
- 完成
- </div>
- <div
- class={[styles.nextBtn]}
- style={{ "border-color": "#fff" }}
- onClick={() => {
- data.step = 0;
- getStepELe();
- }}
- >
- 再看一遍
- </div>
- </>
- ) : (
- <Button class={styles.studentNext} round type="primary" onClick={() => handleNext()}>
- 下一步 ({data.step + 1}/{data.steps.length})
- </Button>
- )}
- </div>
- </div>
- ))}
- </div>
- </div>
- </Popup>
- );
- },
- });
|