Browse Source

2022-9-22 10:00

codeMan 2 years ago
parent
commit
350ea8fd9f
2 changed files with 32 additions and 1 deletions
  1. 22 0
      src/HDrpManagement/unit/index.vue
  2. 10 1
      src/router/HDrpManagement.js

+ 22 - 0
src/HDrpManagement/unit/index.vue

@@ -0,0 +1,22 @@
+<template>
+  <div>1111</div>
+</template>
+
+<script>
+export default {
+  name: '',
+  data() {
+    return {
+    };
+  },
+  computed:{
+  },
+  watch:{
+  },
+  methods: {},
+};
+</script>
+
+<style scoped>
+
+</style>

+ 10 - 1
src/router/HDrpManagement.js

@@ -1,4 +1,13 @@
 const DrpManagement = [
-  
+  {
+    path: '/sm_unit',
+    name: 'unit',
+    meta: {
+      title: '计量单位',
+      ast_nav: true,
+      keeproute: true
+    },
+    component: () => import(/* webpackChunkName: "about" */ '@/HDrpManagement/unit/index')
+  }
 ]
 export default DrpManagement