罗广辉
2025-10-20 f2251d2f5c47fbe00a819f02f8d8c7ed70e60aaf
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
<!-- 新建任务 -->
<template>
  <WebViewPlus v-if="isApp" :src="`${viewUrl}`" @webMessage="onPostMessage"/>
</template>
 
<script setup>
import WebViewPlus from "@/components/WebViewPlus.vue";
 
import {getWebViewUrl} from "@/utils/index.js";
import {onHide, onShow} from "@dcloudio/uni-app";
 
const viewUrl = ref(getWebViewUrl('/addTask'))
function onPostMessage(data) {
  if (data.type === 'submitSuccess'){
    uni.switchTab({
      url: '/pages/inspectionTask/index'
    });
  }
}
const isApp = ref(false)
onShow(() => {
  isApp.value = true
});
 
onHide(() => {
  isApp.value = false
});
</script>
 
<style lang="scss" scoped></style>