chenyao
2025-12-01 08fcc710d0a2acb185b3477d72fe32aff6f2e29a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<template>
    <view class="page-wrap">
        <WebViewPlus :src="`${viewUrl}`" @webMessage="onPostMessage" />
    </view>
</template>
 
<script setup>
    import {
        getWebViewUrl
    } from "@/utils/index.js";
    import WebViewPlus from "@/components/WebViewPlus.vue";
    // const viewUrl = getWebViewUrl("/defaultMap");
    const baseUrl = getWebViewUrl("/defaultMap");
 
    let envParam = "";
    // #ifdef WEB
    envParam = "isWeb=true";
    // #endif
    // #ifdef APP-PLUS
    envParam = "isWeb=false";
    // #endif
    const viewUrl = ref("");
    onMounted(() => {
        if (typeof baseUrl === "string") {
            viewUrl.value = baseUrl.includes("?") ?
                `${baseUrl}&${envParam}` :
                `${baseUrl}?${envParam}`;
        }
    });
    const onPostMessage = (data) => {
        if (data.type === "scanCode") {
            uni.navigateTo({
                url: "/subPackages/qrCode/index",
            });
        } else if (data.type === "jumpAddWork") { //新建任务
            const encodedData = encodeURIComponent(JSON.stringify(data.rowItem))
            uni.setStorageSync('webview_params', encodedData)
            uni.switchTab({
                url: `/subPackages/taskDetail/addTask/index`,
            });
        } else 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}`
            });
        }
    };
 
    onShow(() => {
        uni.setTabBarItem({
            index: 2, // Tab 的索引(从0开始)
            visible: false,
      pagePath: "subPackages/taskDetail/addTask/index"
        })
        uni.setTabBarItem({
            index: 3, // Tab
            visible: true,
        });
    })
</script>
 
<style scoped lang="scss">
    .page-wrap {
        font-size: 20px;
    }
</style>