chenyao
2025-10-16 8f1d5df3d26ff2111fdb5e1149035ac8a12fa348
feat:更新新建任务
2 files modified
30 ■■■■■ changed files
src/pages.json 10 ●●●●● patch | view | raw | blame | history
src/subPackages/taskDetail/addTask/index.vue 20 ●●●●● patch | view | raw | blame | history
src/pages.json
@@ -165,6 +165,16 @@
        "text": "巡检任务"
      },
      {
        "iconPath": "static/images/tabbar/add-task.svg",
        "selectedIconPath": "static/images/tabbar/add-task.svg",
        "pagePath": "subPackages/taskDetail/addTask/index",
        "text": "",
        "style": {
          "width": "600",
          "height": "600"
        }
      },
      {
        "iconPath": "static/images/tabbar/icon_home.png",
        "selectedIconPath": "static/images/tabbar/icon_home_selected.png",
        "pagePath": "pages/work/index",
src/subPackages/taskDetail/addTask/index.vue
@@ -1,18 +1,14 @@
<!--
 * @Author       : yuan
 * @Date         : 2025-09-29 13:50:59
 * @LastEditors  : yuan
 * @LastEditTime : 2025-09-29 13:59:49
 * @FilePath     : \src\subPackages\taskDetail\addTask\index.vue
 * @Description  :
 * Copyright 2025 OBKoro1, All Rights Reserved.
 * 2025-09-29 13:50:59
-->
<!-- 新建任务 -->
<template>
  <view> 基础 </view>
  <WebViewPlus :src="`${viewUrl}`"/>
</template>
<script setup></script>
<script setup>
import WebViewPlus from "@/components/WebViewPlus.vue";
import {getWebViewUrl} from "@/utils/index.js";
const viewUrl = ref(getWebViewUrl('/addTask'))
</script>
<style lang="scss" scoped></style>