reloaded 5 年之前
父節點
當前提交
a4d90b48a9
共有 2 個文件被更改,包括 24 次插入0 次删除
  1. 5 0
      src/router/index.js
  2. 19 0
      src/views/financial/detail.vue

+ 5 - 0
src/router/index.js

@@ -23,6 +23,11 @@ const routes = [
     path: '/financial/index',
     component: () => import('../views/financial/index.vue'),
   },
+  // 金融机构添加
+  {
+    path: '/financial/detail',
+    component: () => import('../views/financial/detail.vue'),
+  },
   // 用户管理
   {
     path: '/otheruser/index',

+ 19 - 0
src/views/financial/detail.vue

@@ -0,0 +1,19 @@
+<template>
+  <div id="detail">
+    <p>detail</p>
+  </div>
+</template>
+
+<script>
+export default {
+  name: 'detail',
+  props: {},
+  components: {},
+  data: () => ({}),
+  created() {},
+  computed: {},
+  methods: {},
+};
+</script>
+
+<style lang="scss" scoped></style>