Browse Source

项目报价

qymljy 2 years ago
parent
commit
6faa087414
2 changed files with 23 additions and 0 deletions
  1. 13 0
      src/SDrpManagement/Quotedprice/index.vue
  2. 10 0
      src/router/SDrpManagement.js

+ 13 - 0
src/SDrpManagement/Quotedprice/index.vue

@@ -0,0 +1,13 @@
+<template>
+  <div>项目报价</div>
+</template>
+
+<script>
+export default {
+  name: "index"
+}
+</script>
+
+<style scoped>
+
+</style>

+ 10 - 0
src/router/SDrpManagement.js

@@ -87,6 +87,16 @@ const SDrpManagement = [
       keeproute: true
     },
     component: () => import(/* webpackChunkName: "about" */ '@/SDrpManagement/salerPublicCustomer/detail/index')
+  },
+  {
+    path: '/quotedprice',
+    name: 'quotedprice',
+    meta: {
+      title: "项目报价",
+      ast_nav:true,
+      keeproute: true
+    },
+    component: () => import(/* webpackChunkName: "about" */ '@/SDrpManagement/Quotedprice/index')
   }
 ]
 export default SDrpManagement