| | |
| | | <!-- |
| | | * @Author : yuan |
| | | * @Date : 2025-12-18 10:06:30 |
| | | * @LastEditors : yuan |
| | | * @LastEditTime : 2025-12-20 14:18:42 |
| | | * @FilePath : \src\pages\work\index.vue |
| | | * @Description : |
| | | * Copyright 2025 OBKoro1, All Rights Reserved. |
| | | * 2025-12-18 10:06:30 |
| | | --> |
| | | <template> |
| | | <view class="eventTickets"> |
| | | <WebViewPlus |
| | |
| | | <script setup> |
| | | import { getWebViewUrl } from "@/utils/index.js"; |
| | | import WebViewPlus from "@/components/WebViewPlus.vue"; |
| | | import { useTabAddButton } from "@/hooks/index.js"; |
| | | import { onShow, onHide } from "@dcloudio/uni-app"; |
| | | |
| | | const sWebViewRef = ref(null); |
| | | // const viewUrl = getWebViewUrl('/work', {}) |
| | | const updateKey = ref(0); |
| | | const viewUrl = computed(() => { |
| | | // #ifdef MP-WEIXIN |
| | |
| | | } |
| | | // #endif |
| | | } |
| | | const isApp = ref(false); |
| | | onShow(() => { |
| | | const joinParams = uni.getStorageSync("joinParams"); |
| | | if (joinParams) { |
| | |
| | | }); |
| | | // #endif |
| | | |
| | | // isApp.value = true |
| | | }); |
| | | |
| | | onHide(() => { |
| | | // isApp.value = false |
| | | }); |
| | | </script> |
| | | |