From 44dd9c4eb8a2489c63a5eb53fd4254bbb3510e95 Mon Sep 17 00:00:00 2001
From: 罗广辉 <guanghui.luo@foxmail.com>
Date: Thu, 18 Jun 2026 09:14:57 +0800
Subject: [PATCH] Merge branch 'feature/v9.0/9.0.4'
---
src/pages/work/index.vue | 130 +++++++++++++++++++++++++------------------
1 files changed, 75 insertions(+), 55 deletions(-)
diff --git a/src/pages/work/index.vue b/src/pages/work/index.vue
index 8682ae9..7d982e1 100644
--- a/src/pages/work/index.vue
+++ b/src/pages/work/index.vue
@@ -1,67 +1,87 @@
-<!-- 事件工单 -->
<template>
- <view class="min-h-screen flex flex-col items-center">
- <image
- class="mb-50rpx mt-200rpx h-200rpx w-200rpx"
- src="@/static/images/logo.png"
- width="200rpx"
- height="200rpx"
+ <view class="eventTickets">
+ <WebViewPlus
+ ref="sWebViewRef"
+ :src="`${viewUrl}`"
+ @webMessage="onPostMessage"
/>
- <view class="flex justify-center">
- <text class="font-size-36rpx">
- {{ $t("home.intro") }}
- </text>
- </view>
- <view class="mt-100rpx flex gap-30rpx">
- <lang-select />
- <view class="cursor-pointer" @click="toGithub">
- <view class="i-mdi-github text-40rpx" />
- </view>
- </view>
-
- <!-- #ifdef MP-WEIXIN -->
- <!-- 隐私协议组件 -->
- <agree-privacy
- v-model="showAgreePrivacy"
- :disable-check-privacy="false"
- @agree="handleAgree"
- />
- <!-- #endif -->
</view>
</template>
<script setup>
-// #ifdef MP-WEIXIN
-import { useShare } from "@/hooks";
-// #endif
+import { getWebViewUrl } from "@/utils/index.js";
+import WebViewPlus from "@/components/WebViewPlus.vue";
+import { onShow, onHide } from "@dcloudio/uni-app";
-// #ifdef MP-WEIXIN
-// 分享使用示例
-const { onShareAppMessage, onShareTimeline } = useShare({
- title: "首页",
- path: "pages/tab/map/index",
- imageUrl: "",
+const sWebViewRef = ref(null);
+const updateKey = ref(0);
+const viewUrl = computed(() => {
+ // #ifdef MP-WEIXIN
+ return getWebViewUrl("/work", {
+ updateKey: updateKey.value,
+ showAddBtn: 1,
+ });
+ // #endif
+
+ // #ifndef MP-WEIXIN
+ return getWebViewUrl("/work", {
+ updateKey: updateKey.value,
+ showAddBtn: 0,
+ });
+ // #endif
});
-onShareAppMessage();
-onShareTimeline();
-// #endif
-const title = ref();
-title.value = import.meta.env.VITE_APP_TITLE;
-
-const showAgreePrivacy = ref(false);
-
-// 同意隐私协议
-function handleAgree() {
- console.log("同意隐私政策");
-}
-
-// 打开github
-function toGithub() {
- if (window?.open) {
- window.open("https://github.com/oyjt/uniapp-vue3-template");
- } else {
- uni.$u.toast("请使用浏览器打开");
+function onPostMessage(data) {
+ // #ifdef MP-WEIXIN
+ if (data.type === "addWork") {
}
+ // #endif
+
+ // #ifndef MP-WEIXIN
+ if (data.type === "jumpMapNav") {
+ uni.navigateTo({
+ url: `/subPackages/workDetail/mapWork/index?currentItem=${data.eventNum}`,
+ });
+ } else if (data.type === "workid") {
+ uni.navigateTo({
+ url: `/subPackages/workDetail/index?eventNum=${data.eventNum}&totalNum=${data.totalNum}&keyword=${data.keyword}&aiType=${data.aiType}&status=${data.status}¤t=${data.current}`,
+ });
+ } else if (data.type === "bigImage") {
+ uni.navigateTo({
+ url: `/subPackages/workDetail/photoMagnify/index?eventNum=${data.eventNum}`,
+ });
+ }
+ // #endif
}
+onShow(() => {
+ const joinParams = uni.getStorageSync("joinParams");
+ if (joinParams) {
+ updateKey.value = updateKey.value + 1;
+ uni.removeStorageSync("joinParams");
+ }
+
+ // #ifndef MP-WEIXIN
+ uni.setTabBarItem({
+ index: 2, // Tab 的索引(从0开始)
+ // text: '新建工单',
+ visible: true,
+ pagePath: "subPackages/workDetail/addWork/index",
+ });
+ uni.setTabBarItem({
+ index: 3, // Tab
+ visible: false,
+ });
+ // #endif
+
+});
+
+onHide(() => {
+});
</script>
+
+<style scoped lang="scss">
+.eventTickets {
+ width: 100%;
+ height: 100%;
+}
+</style>
--
Gitblit v1.9.3