浏览代码

更新 船舶安检

王智慧 3 年之前
父节点
当前提交
b670adb227

+ 6 - 6
src/layout/Aside.vue

@@ -82,19 +82,19 @@ let menu = [
     items: [
       {
         path: "/shipSecurityManage/shipCheckTemplateList",
-        name: "船舶安检模板",
+        name: "安检模板列表",
       },
       {
-        path: "/shipSecurityManage/checkShip",
-        name: "发起船舶安检",
+        path: "/shipSecurityManage/checkShipList",
+        name: "船舶安检列表",
       },
       {
-        path: "/shipSecurityManage/checkShipExamine",
-        name: "船舶安检审核",
+        path: "/shipSecurityManage/checkShipExamineList",
+        name: "安检审核列表",
       },
       {
         path: "/shipSecurityManage/shipCheckHistory",
-        name: "历史船舶安检",
+        name: "历史安检列表",
       },
     ],
   },

+ 17 - 0
src/router/index.js

@@ -101,6 +101,14 @@ const router = createRouter({
       component: () =>
         import("../views/shipSecurityManage/shipCheckTemplateList.vue"),
     },
+    {
+      path: "/shipSecurityManage/checkShipList",
+      name: "checkShipList",
+      meta: {
+        title: "船舶安检列表",
+      },
+      component: () => import("../views/shipSecurityManage/checkShipList.vue"),
+    },
     {
       path: "/shipSecurityManage/checkShip",
       name: "checkShip",
@@ -109,6 +117,15 @@ const router = createRouter({
       },
       component: () => import("../views/shipSecurityManage/checkShip.vue"),
     },
+    {
+      path: "/shipSecurityManage/checkShipExamineList",
+      name: "checkShipExamineList",
+      meta: {
+        title: "安检审核列表",
+      },
+      component: () =>
+        import("../views/shipSecurityManage/checkShipExamineList.vue"),
+    },
     {
       path: "/shipSecurityManage/checkShipExamine",
       name: "checkShipExamine",

+ 22 - 0
src/views/shipSecurityManage/checkShipExamineList.vue

@@ -0,0 +1,22 @@
+<template>
+  <el-empty :image-size="300" description=" " />
+  <div style="text-align: center; font-size: 40px; color: #666">
+    船舶安检正在建设中
+  </div>
+</template>
+<script setup>
+import { ref, h, reactive, toRefs, onMounted } from "vue";
+import { ElNotification, ElMessageBox, ElMessage } from "element-plus";
+import store from "../../store";
+import router from "../../router";
+import md5 from "md5";
+import api from "../../apis/fetch";
+import { useRoute } from "vue-router";
+import _ from "lodash";
+import { subTimeStr } from "../../utils/utils";
+
+const route = useRoute();
+onMounted(() => {});
+</script>
+
+<style scoped></style>

+ 22 - 0
src/views/shipSecurityManage/checkShipList.vue

@@ -0,0 +1,22 @@
+<template>
+  <el-empty :image-size="300" description=" " />
+  <div style="text-align: center; font-size: 40px; color: #666">
+    船舶安检正在建设中
+  </div>
+</template>
+<script setup>
+import { ref, h, reactive, toRefs, onMounted } from "vue";
+import { ElNotification, ElMessageBox, ElMessage } from "element-plus";
+import store from "../../store";
+import router from "../../router";
+import md5 from "md5";
+import api from "../../apis/fetch";
+import { useRoute } from "vue-router";
+import _ from "lodash";
+import { subTimeStr } from "../../utils/utils";
+
+const route = useRoute();
+onMounted(() => {});
+</script>
+
+<style scoped></style>