|
@@ -1,7 +1,7 @@
|
|
|
import { PropType, Teleport, defineComponent, nextTick, onMounted, onUnmounted, ref } from "vue";
|
|
|
import { Config, DriveStep, PopoverDOM, State, driver } from "driver.js";
|
|
|
import "driver.js/dist/driver.css";
|
|
|
-import state from "/src/state";
|
|
|
+import state, { IPlatform } from "/src/state";
|
|
|
import { getGuidance, setGuidance } from "../guide-page/api";
|
|
|
|
|
|
const endGuide = (guideInfo: any) => {
|
|
@@ -22,6 +22,12 @@ type ButtonStatus = {
|
|
|
modelTypeStatus?: Boolean;
|
|
|
/** 播放模式 演唱 演奏 */
|
|
|
playType?: Boolean;
|
|
|
+ /** 返回和标题 */
|
|
|
+ backTitle?: Boolean;
|
|
|
+ /** 返回显示的标题类型 文本 TEXT 按钮 IMG */
|
|
|
+ titleType?: String;
|
|
|
+ /** 原声 true 范唱 false */
|
|
|
+ originPlayType?: Boolean;
|
|
|
};
|
|
|
|
|
|
/** 练习模式 */
|
|
@@ -47,22 +53,34 @@ export const PractiseDriver = defineComponent({
|
|
|
};
|
|
|
|
|
|
const driverOptions = (): Config => {
|
|
|
- // 指法
|
|
|
- let length = state.setting.displayFingering ? 10 : 9;
|
|
|
+ let length = 10;
|
|
|
+ // 显示指法
|
|
|
+ if (!state.setting.displayFingering) {
|
|
|
+ length -= 1;
|
|
|
+ }
|
|
|
+
|
|
|
// 声部
|
|
|
if (!props.statusAll.subjectStatus) {
|
|
|
length -= 1;
|
|
|
}
|
|
|
- // 练习模式
|
|
|
- if(!props.statusAll.modelTypeStatus) {
|
|
|
+ if (!props.statusAll.playType) {
|
|
|
length -= 1;
|
|
|
}
|
|
|
|
|
|
- if(!props.statusAll.playType) {
|
|
|
- length -= 1;
|
|
|
+ // pc端不显示标题和模式切换引导
|
|
|
+ if(state.platform === IPlatform.PC) {
|
|
|
+ length -= 2;
|
|
|
+ } else {
|
|
|
+ // 判断是否有标题
|
|
|
+ if (!props.statusAll.backTitle || props.statusAll.titleType === "NONE") {
|
|
|
+ length -= 1;
|
|
|
+ }
|
|
|
+ // 练习模式
|
|
|
+ if (!props.statusAll.modelTypeStatus) {
|
|
|
+ length -= 1;
|
|
|
+ }
|
|
|
}
|
|
|
-
|
|
|
- console.log(props.statusAll, 'statusAll', length)
|
|
|
+ console.log(props.statusAll, "statusAll", length);
|
|
|
|
|
|
let options: Config = {
|
|
|
showProgress: false,
|
|
@@ -94,11 +112,11 @@ export const PractiseDriver = defineComponent({
|
|
|
options.config.stagePadding = 0;
|
|
|
},
|
|
|
},
|
|
|
- }
|
|
|
+ },
|
|
|
] as DriveStep[],
|
|
|
};
|
|
|
|
|
|
- if(props.statusAll.playType) {
|
|
|
+ if (props.statusAll.playType) {
|
|
|
options.steps?.push({
|
|
|
element: ".driver-2",
|
|
|
popover: {
|
|
@@ -122,7 +140,7 @@ export const PractiseDriver = defineComponent({
|
|
|
popover: {
|
|
|
title: "",
|
|
|
description: "",
|
|
|
- popoverClass: "popoverClass popoverClass3",
|
|
|
+ popoverClass: props.statusAll.originPlayType ? "popoverClass popoverClass3" : "popoverClass popoverClass11",
|
|
|
align: "start",
|
|
|
side: "top",
|
|
|
nextBtnText: `下一步 (${options.steps.length + 1}/${length})`,
|
|
@@ -164,7 +182,6 @@ export const PractiseDriver = defineComponent({
|
|
|
}
|
|
|
);
|
|
|
|
|
|
-
|
|
|
if (props.statusAll.subjectStatus) {
|
|
|
options.steps?.push({
|
|
|
element: ".driver-10",
|
|
@@ -183,113 +200,136 @@ export const PractiseDriver = defineComponent({
|
|
|
});
|
|
|
}
|
|
|
|
|
|
- options.steps?.push({
|
|
|
- element: ".driver-6",
|
|
|
- popover: {
|
|
|
- title: "",
|
|
|
- description: "",
|
|
|
- popoverClass: "popoverClass popoverClass6",
|
|
|
- align: "start",
|
|
|
- side: "top",
|
|
|
- nextBtnText: `下一步 (${options.steps.length + 1}/${length})`, //"下一步6/" + length,
|
|
|
- showButtons: ["next"],
|
|
|
- onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
|
|
|
- driverInitialPosition(popover, options);
|
|
|
- },
|
|
|
- },
|
|
|
- });
|
|
|
- // 是否有指法图
|
|
|
- if (state.setting.displayFingering) {
|
|
|
- // 乐器方向不一样引导位置不一样
|
|
|
- options.steps?.push({
|
|
|
- element: ".driver-7",
|
|
|
- popover: {
|
|
|
- title: "",
|
|
|
- description: "",
|
|
|
- popoverClass: `popoverClass ${state.fingeringInfo.direction === "transverse" ? "popoverClass7" : "popoverClass7-1"}`,
|
|
|
- align: state.fingeringInfo.direction === "transverse" ? "start" : "center",
|
|
|
- side: state.fingeringInfo.direction === "transverse" ? "top" : "left",
|
|
|
- nextBtnText: `下一步 (${options.steps?.length + 1}/${length})`,
|
|
|
- showButtons: ["next"],
|
|
|
- onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
|
|
|
- if (state.fingeringInfo.direction === "transverse") driverInitialPosition(popover, options);
|
|
|
- },
|
|
|
- onCloseClick: () => {
|
|
|
- onDriverClose();
|
|
|
- },
|
|
|
- },
|
|
|
- });
|
|
|
- }
|
|
|
-
|
|
|
- if(!props.statusAll.modelTypeStatus) {
|
|
|
- options.steps?.push({
|
|
|
- //.van-notice-bar__content
|
|
|
- element: ".driver-8",
|
|
|
- popover: {
|
|
|
- title: "",
|
|
|
- description: "",
|
|
|
- popoverClass: "popoverClass popoverClass8 popoverClose",
|
|
|
- align: "start",
|
|
|
- side: "bottom",
|
|
|
- prevBtnText: "再看一遍",
|
|
|
- doneBtnText: "完成",
|
|
|
- showButtons: ["next", "previous"],
|
|
|
- onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
|
|
|
- options.config.stageRadius = 1000;
|
|
|
- options.config.stagePadding = 0;
|
|
|
- try {
|
|
|
- const rect = options.state.activeElement?.getBoundingClientRect();
|
|
|
- popover.wrapper.style.marginLeft = (rect?.width || 0) / 2 - 4 + "px";
|
|
|
- } catch {}
|
|
|
+
|
|
|
+ if (state.platform === IPlatform.PC) {
|
|
|
+ if (state.setting.displayFingering) {
|
|
|
+ options.steps?.push({
|
|
|
+ element: ".driver-6",
|
|
|
+ popover: {
|
|
|
+ title: "",
|
|
|
+ description: "",
|
|
|
+ popoverClass: "popoverClass popoverClass6",
|
|
|
+ align: "start",
|
|
|
+ side: "top",
|
|
|
+ nextBtnText: `下一步 (${options.steps.length + 1}/${length})`, //"下一步6/" + length,
|
|
|
+ showButtons: ["next"],
|
|
|
+ onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
|
|
|
+ driverInitialPosition(popover, options);
|
|
|
+ },
|
|
|
},
|
|
|
- onPrevClick: () => {
|
|
|
- driverObj.drive(0);
|
|
|
+ });
|
|
|
+ // 是否有指法图
|
|
|
+ // 乐器方向不一样引导位置不一样
|
|
|
+ options.steps?.push({
|
|
|
+ element: ".driver-7",
|
|
|
+ popover: {
|
|
|
+ title: "",
|
|
|
+ description: "",
|
|
|
+ popoverClass: `popoverClass ${state.fingeringInfo.direction === "transverse" ? "popoverClass7 popoverClose" : "popoverClass7-1 popoverClose"}`,
|
|
|
+ align: state.fingeringInfo.direction === "transverse" ? "start" : "center",
|
|
|
+ side: state.fingeringInfo.direction === "transverse" ? "top" : "left",
|
|
|
+ prevBtnText: "再看一遍",
|
|
|
+ doneBtnText: "完成",
|
|
|
+ showButtons: ["next", "previous"],
|
|
|
+ onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
|
|
|
+ if (state.fingeringInfo.direction === "transverse") driverInitialPosition(popover, options);
|
|
|
+ },
|
|
|
+ onPrevClick: () => {
|
|
|
+ driverObj.drive(0);
|
|
|
+ },
|
|
|
+ onNextClick: () => {
|
|
|
+ onDriverClose();
|
|
|
+ },
|
|
|
},
|
|
|
- onNextClick: () => {
|
|
|
- onDriverClose();
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ options.steps?.push({
|
|
|
+ element: ".driver-6",
|
|
|
+ popover: {
|
|
|
+ title: "",
|
|
|
+ description: "",
|
|
|
+ popoverClass: "popoverClass popoverClass6 popoverClose",
|
|
|
+ align: "start",
|
|
|
+ side: "top",
|
|
|
+ prevBtnText: "再看一遍",
|
|
|
+ doneBtnText: "完成",
|
|
|
+ showButtons: ["next", "previous"],
|
|
|
+ onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
|
|
|
+ driverInitialPosition(popover, options);
|
|
|
+ },
|
|
|
+ onPrevClick: () => {
|
|
|
+ driverObj.drive(0);
|
|
|
+ },
|
|
|
+ onNextClick: () => {
|
|
|
+ onDriverClose();
|
|
|
+ },
|
|
|
},
|
|
|
- },
|
|
|
- });
|
|
|
+ });
|
|
|
+ }
|
|
|
} else {
|
|
|
- options.steps?.push(
|
|
|
- {
|
|
|
- // .van-notice-bar__content
|
|
|
- element: ".driver-8",
|
|
|
+ options.steps?.push({
|
|
|
+ element: ".driver-6",
|
|
|
+ popover: {
|
|
|
+ title: "",
|
|
|
+ description: "",
|
|
|
+ popoverClass: "popoverClass popoverClass6",
|
|
|
+ align: "start",
|
|
|
+ side: "top",
|
|
|
+ nextBtnText: `下一步 (${options.steps.length + 1}/${length})`, //"下一步6/" + length,
|
|
|
+ showButtons: ["next"],
|
|
|
+ onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
|
|
|
+ driverInitialPosition(popover, options);
|
|
|
+ },
|
|
|
+ },
|
|
|
+ });
|
|
|
+
|
|
|
+ if (state.setting.displayFingering) {
|
|
|
+ // 是否有指法图
|
|
|
+ // 乐器方向不一样引导位置不一样
|
|
|
+ options.steps?.push({
|
|
|
+ element: ".driver-7",
|
|
|
popover: {
|
|
|
title: "",
|
|
|
description: "",
|
|
|
- popoverClass: "popoverClass popoverClass8",
|
|
|
- align: "start",
|
|
|
- side: "bottom",
|
|
|
- nextBtnText: `下一步 (${options.steps.length + 1}/${length})`,
|
|
|
+ popoverClass: `popoverClass ${state.fingeringInfo.direction === "transverse" ? "popoverClass7" : "popoverClass7-1"}`,
|
|
|
+ align: state.fingeringInfo.direction === "transverse" ? "start" : "center",
|
|
|
+ side: state.fingeringInfo.direction === "transverse" ? "top" : "left",
|
|
|
+ nextBtnText: `下一步 (${options.steps?.length + 1}/${length})`,
|
|
|
showButtons: ["next"],
|
|
|
onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
|
|
|
- options.config.stageRadius = 1000;
|
|
|
- options.config.stagePadding = 0;
|
|
|
- try {
|
|
|
- const rect = options.state.activeElement?.getBoundingClientRect();
|
|
|
- popover.wrapper.style.marginLeft = (rect?.width || 0) / 2 - 4 + "px";
|
|
|
- } catch {}
|
|
|
+ if (state.fingeringInfo.direction === "transverse") driverInitialPosition(popover, options);
|
|
|
+ },
|
|
|
+ onCloseClick: () => {
|
|
|
+ onDriverClose();
|
|
|
},
|
|
|
},
|
|
|
- },
|
|
|
- {
|
|
|
- element: ".driver-9",
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!props.statusAll.modelTypeStatus) {
|
|
|
+ options.steps?.push({
|
|
|
+ //
|
|
|
+ element: props.statusAll.titleType === "TEXT" ? ".driver-8 .van-notice-bar__content" : '".driver-8',
|
|
|
popover: {
|
|
|
title: "",
|
|
|
description: "",
|
|
|
- popoverClass: "popoverClass popoverClass9 popoverClose",
|
|
|
- align: "end",
|
|
|
+ popoverClass: "popoverClass popoverClass8 popoverClose",
|
|
|
+ align: "start",
|
|
|
side: "bottom",
|
|
|
prevBtnText: "再看一遍",
|
|
|
doneBtnText: "完成",
|
|
|
showButtons: ["next", "previous"],
|
|
|
onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
|
|
|
- options.config.stageRadius = 1000;
|
|
|
- options.config.stagePadding = 0;
|
|
|
+ if (props.statusAll.titleType === "TEXT") {
|
|
|
+ options.config.stageRadius = 5;
|
|
|
+ options.config.stagePadding = 5;
|
|
|
+ } else {
|
|
|
+ options.config.stageRadius = 1000;
|
|
|
+ options.config.stagePadding = 0;
|
|
|
+ }
|
|
|
try {
|
|
|
const rect = options.state.activeElement?.getBoundingClientRect();
|
|
|
- popover.wrapper.style.marginLeft = -((rect?.width || 0) / 2 - 8) + "px";
|
|
|
+ popover.wrapper.style.marginLeft = (rect?.width || 0) / 2 - 4 + "px";
|
|
|
} catch {}
|
|
|
},
|
|
|
onPrevClick: () => {
|
|
@@ -299,8 +339,65 @@ export const PractiseDriver = defineComponent({
|
|
|
onDriverClose();
|
|
|
},
|
|
|
},
|
|
|
- }
|
|
|
- );
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ options.steps?.push(
|
|
|
+ {
|
|
|
+ // .van-notice-bar__content
|
|
|
+ // element: ".driver-8 .van-notice-bar__content",
|
|
|
+ element: props.statusAll.titleType === "TEXT" ? ".driver-8 .van-notice-bar__content" : '".driver-8',
|
|
|
+ popover: {
|
|
|
+ title: "",
|
|
|
+ description: "",
|
|
|
+ popoverClass: "popoverClass popoverClass8",
|
|
|
+ align: "start",
|
|
|
+ side: "bottom",
|
|
|
+ nextBtnText: `下一步 (${options.steps.length + 1}/${length})`,
|
|
|
+ showButtons: ["next"],
|
|
|
+ onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
|
|
|
+ if (props.statusAll.titleType === "TEXT") {
|
|
|
+ options.config.stageRadius = 5;
|
|
|
+ options.config.stagePadding = 5;
|
|
|
+ } else {
|
|
|
+ options.config.stageRadius = 1000;
|
|
|
+ options.config.stagePadding = 0;
|
|
|
+ }
|
|
|
+ try {
|
|
|
+ const rect = options.state.activeElement?.getBoundingClientRect();
|
|
|
+ popover.wrapper.style.marginLeft = (rect?.width || 0) / 2 - 4 + "px";
|
|
|
+ } catch {}
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ element: ".driver-9",
|
|
|
+ popover: {
|
|
|
+ title: "",
|
|
|
+ description: "",
|
|
|
+ popoverClass: "popoverClass popoverClass9 popoverClose",
|
|
|
+ align: "end",
|
|
|
+ side: "bottom",
|
|
|
+ prevBtnText: "再看一遍",
|
|
|
+ doneBtnText: "完成",
|
|
|
+ showButtons: ["next", "previous"],
|
|
|
+ onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
|
|
|
+ options.config.stageRadius = 1000;
|
|
|
+ options.config.stagePadding = 0;
|
|
|
+ try {
|
|
|
+ const rect = options.state.activeElement?.getBoundingClientRect();
|
|
|
+ popover.wrapper.style.marginLeft = -((rect?.width || 0) / 2 - 8) + "px";
|
|
|
+ } catch {}
|
|
|
+ },
|
|
|
+ onPrevClick: () => {
|
|
|
+ driverObj.drive(0);
|
|
|
+ },
|
|
|
+ onNextClick: () => {
|
|
|
+ onDriverClose();
|
|
|
+ },
|
|
|
+ },
|
|
|
+ }
|
|
|
+ );
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
return options;
|
|
@@ -339,7 +436,6 @@ export const PractiseDriver = defineComponent({
|
|
|
document.addEventListener("click", handleClickOutside, true);
|
|
|
driverObj = driver(driverOptions());
|
|
|
nextTick(() => {
|
|
|
- console.log('practiseDriver clicked')
|
|
|
driverObj.drive();
|
|
|
showCloseBtn.value = true;
|
|
|
state.hasDriverPop = true;
|
|
@@ -794,7 +890,19 @@ export const EvaluatingDriver = defineComponent({
|
|
|
// 评测模式 - 结果弹窗
|
|
|
export const EvaluatingResultDriver = defineComponent({
|
|
|
name: "EvaluatingResultDriver",
|
|
|
- setup() {
|
|
|
+ props: {
|
|
|
+ // 保存按钮状态
|
|
|
+ saveBtn: {
|
|
|
+ type: Boolean,
|
|
|
+ default: true,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ setup(props) {
|
|
|
+ let length = 4
|
|
|
+ if(!props.saveBtn) {
|
|
|
+ length -= 1
|
|
|
+ }
|
|
|
+ console.log(props.saveBtn, "props.saveBtn");
|
|
|
const driverNextStatus = ref(false);
|
|
|
// 初始化部分引导位置
|
|
|
const driverInitialPosition = (popover: PopoverDOM, options: { config: Config; state: State }, position = 1) => {
|
|
@@ -806,58 +914,63 @@ export const EvaluatingResultDriver = defineComponent({
|
|
|
} catch {}
|
|
|
};
|
|
|
|
|
|
- const driverOptions: Config = {
|
|
|
- showProgress: false,
|
|
|
- allowClose: false,
|
|
|
- popoverOffset: 3,
|
|
|
- disableActiveInteraction: true,
|
|
|
- onCloseClick: () => {
|
|
|
- onDriverClose();
|
|
|
- },
|
|
|
- onHighlightStarted: () => {
|
|
|
- driverNextStatus.value = true;
|
|
|
- },
|
|
|
- onHighlighted: () => {
|
|
|
- driverNextStatus.value = false;
|
|
|
- },
|
|
|
- steps: [
|
|
|
- {
|
|
|
- element: ".evaluting-result-1",
|
|
|
- popover: {
|
|
|
- title: "",
|
|
|
- description: "",
|
|
|
- popoverClass: "popoverClass popoverClassER1",
|
|
|
- align: "start",
|
|
|
- side: "right",
|
|
|
- nextBtnText: "下一步 (1/4)",
|
|
|
- showButtons: ["next"],
|
|
|
- onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
|
|
|
- options.config.stageRadius = 12;
|
|
|
- options.config.stagePadding = 10;
|
|
|
+ const driverOptionsFun = () => {
|
|
|
+ const driverOptions: Config = {
|
|
|
+ showProgress: false,
|
|
|
+ allowClose: false,
|
|
|
+ popoverOffset: 3,
|
|
|
+ disableActiveInteraction: true,
|
|
|
+ onCloseClick: () => {
|
|
|
+ onDriverClose();
|
|
|
+ },
|
|
|
+ onHighlightStarted: () => {
|
|
|
+ driverNextStatus.value = true;
|
|
|
+ },
|
|
|
+ onHighlighted: () => {
|
|
|
+ driverNextStatus.value = false;
|
|
|
+ },
|
|
|
+ steps: [
|
|
|
+ {
|
|
|
+ element: ".evaluting-result-1",
|
|
|
+ popover: {
|
|
|
+ title: "",
|
|
|
+ description: "",
|
|
|
+ popoverClass: "popoverClass popoverClassER1",
|
|
|
+ align: "start",
|
|
|
+ side: "right",
|
|
|
+ nextBtnText: `下一步 (1/${length})`,
|
|
|
+ showButtons: ["next"],
|
|
|
+ onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
|
|
|
+ options.config.stageRadius = 12;
|
|
|
+ options.config.stagePadding = 10;
|
|
|
+ },
|
|
|
},
|
|
|
},
|
|
|
- },
|
|
|
- {
|
|
|
- element: ".evaluting-result-2",
|
|
|
- popover: {
|
|
|
- title: "",
|
|
|
- description: "",
|
|
|
- popoverClass: "popoverClass popoverClassER2",
|
|
|
- align: "start",
|
|
|
- side: "top",
|
|
|
- nextBtnText: "下一步 (2/4)",
|
|
|
- showButtons: ["next"],
|
|
|
- onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
|
|
|
- options.config.stageRadius = 1000;
|
|
|
- options.config.stagePadding = 0;
|
|
|
- try {
|
|
|
- const rect = options.state.activeElement?.getBoundingClientRect();
|
|
|
- popover.wrapper.style.marginLeft = (rect?.width || 0) / 2 - 4 + "px";
|
|
|
- } catch {}
|
|
|
+ {
|
|
|
+ element: ".evaluting-result-2",
|
|
|
+ popover: {
|
|
|
+ title: "",
|
|
|
+ description: "",
|
|
|
+ popoverClass: "popoverClass popoverClassER2",
|
|
|
+ align: "start",
|
|
|
+ side: "top",
|
|
|
+ nextBtnText: `下一步 (2/${length})`,
|
|
|
+ showButtons: ["next"],
|
|
|
+ onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
|
|
|
+ options.config.stageRadius = 1000;
|
|
|
+ options.config.stagePadding = 0;
|
|
|
+ try {
|
|
|
+ const rect = options.state.activeElement?.getBoundingClientRect();
|
|
|
+ popover.wrapper.style.marginLeft = (rect?.width || 0) / 2 - 4 + "px";
|
|
|
+ } catch {}
|
|
|
+ },
|
|
|
},
|
|
|
},
|
|
|
- },
|
|
|
- {
|
|
|
+ ],
|
|
|
+ };
|
|
|
+
|
|
|
+ if (props.saveBtn) {
|
|
|
+ driverOptions.steps?.push({
|
|
|
element: ".evaluting-result-3",
|
|
|
popover: {
|
|
|
title: "",
|
|
@@ -865,36 +978,38 @@ export const EvaluatingResultDriver = defineComponent({
|
|
|
popoverClass: "popoverClass popoverClassER3",
|
|
|
align: "end",
|
|
|
side: "top",
|
|
|
- nextBtnText: "下一步 (3/4)",
|
|
|
+ nextBtnText: `下一步 (3/${length})`,
|
|
|
showButtons: ["next"],
|
|
|
onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
|
|
|
driverInitialPosition(popover, options, -1);
|
|
|
},
|
|
|
},
|
|
|
- },
|
|
|
- {
|
|
|
- element: ".evaluting-result-4",
|
|
|
- popover: {
|
|
|
- title: "",
|
|
|
- description: "",
|
|
|
- popoverClass: "popoverClass popoverClassER4 popoverClose",
|
|
|
- align: "end",
|
|
|
- side: "top",
|
|
|
- prevBtnText: "再看一遍",
|
|
|
- doneBtnText: "完成",
|
|
|
- showButtons: ["next", "previous"],
|
|
|
- onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
|
|
|
- driverInitialPosition(popover, options, -1);
|
|
|
- },
|
|
|
- onPrevClick: () => {
|
|
|
- driverObj.drive();
|
|
|
- },
|
|
|
- onNextClick: () => {
|
|
|
- onDriverClose();
|
|
|
- },
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ driverOptions.steps?.push({
|
|
|
+ element: ".evaluting-result-4",
|
|
|
+ popover: {
|
|
|
+ title: "",
|
|
|
+ description: "",
|
|
|
+ popoverClass: "popoverClass popoverClassER4 popoverClose",
|
|
|
+ align: "end",
|
|
|
+ side: "top",
|
|
|
+ prevBtnText: "再看一遍",
|
|
|
+ doneBtnText: "完成",
|
|
|
+ showButtons: ["next", "previous"],
|
|
|
+ onPopoverRender: (popover: PopoverDOM, options: { config: Config; state: State }) => {
|
|
|
+ driverInitialPosition(popover, options, -1);
|
|
|
+ },
|
|
|
+ onPrevClick: () => {
|
|
|
+ driverObj.drive();
|
|
|
+ },
|
|
|
+ onNextClick: () => {
|
|
|
+ onDriverClose();
|
|
|
},
|
|
|
},
|
|
|
- ],
|
|
|
+ });
|
|
|
+ return driverOptions;
|
|
|
};
|
|
|
let driverObj: any;
|
|
|
|
|
@@ -926,12 +1041,12 @@ export const EvaluatingResultDriver = defineComponent({
|
|
|
setTimeout(() => {
|
|
|
document.addEventListener("click", handleClickOutside, true);
|
|
|
nextTick(() => {
|
|
|
- driverObj = driver(driverOptions);
|
|
|
+ driverObj = driver(driverOptionsFun());
|
|
|
driverObj.drive();
|
|
|
showCloseBtn.value = true;
|
|
|
state.hasDriverPop = true;
|
|
|
});
|
|
|
- }, 200);
|
|
|
+ }, 100);
|
|
|
}
|
|
|
} catch (e) {
|
|
|
console.log(e);
|
|
@@ -940,7 +1055,7 @@ export const EvaluatingResultDriver = defineComponent({
|
|
|
|
|
|
onMounted(() => {
|
|
|
getAllGuidance();
|
|
|
- })
|
|
|
+ });
|
|
|
|
|
|
// 结束关闭弹窗
|
|
|
const onDriverClose = () => {
|
|
@@ -953,14 +1068,13 @@ export const EvaluatingResultDriver = defineComponent({
|
|
|
driverObj.destroy();
|
|
|
document.querySelector(".driver-popover-close-btn-custom")?.remove();
|
|
|
document.removeEventListener("click", handleClickOutside, true);
|
|
|
- state.hasDriverPop = false
|
|
|
+ state.hasDriverPop = false;
|
|
|
};
|
|
|
|
|
|
onUnmounted(() => {
|
|
|
document.removeEventListener("click", handleClickOutside, true);
|
|
|
});
|
|
|
|
|
|
-
|
|
|
return () => (
|
|
|
<Teleport to="body">
|
|
|
{showCloseBtn.value && (
|