|
@@ -8,7 +8,7 @@ import { storeData } from "/src/store"
|
|
|
import { postMessage } from "/src/utils/native-message"
|
|
|
import { usePageVisibility } from "@vant/use"
|
|
|
import { studentQueryUserInfo } from "/src/page-instrument/api"
|
|
|
-import { api_back } from "/src/helpers/communication";
|
|
|
+import { api_back } from "/src/helpers/communication"
|
|
|
|
|
|
export const vipData = reactive({
|
|
|
show: false
|
|
@@ -85,7 +85,17 @@ export default defineComponent({
|
|
|
})
|
|
|
return () => (
|
|
|
<>
|
|
|
- <Popup zIndex={999999999999999999} show={vipData.show} get-container="body" closeable onClickCloseIcon={handleClose} round>
|
|
|
+ <Popup
|
|
|
+ class={styles.vipPopup}
|
|
|
+ zIndex={2222222222}
|
|
|
+ show={vipData.show}
|
|
|
+ /* 引导页层级和引导页禁止了pointerEvents */
|
|
|
+ overlay-style={{ zIndex: 1111111111, pointerEvents: "initial" }}
|
|
|
+ teleport="body"
|
|
|
+ closeable
|
|
|
+ onClickCloseIcon={handleClose}
|
|
|
+ round
|
|
|
+ >
|
|
|
<div class={styles.vip}>
|
|
|
<img src={TipsIcon} />
|
|
|
<p>{getContent.value}</p>
|