guhongwei 5 anni fa
parent
commit
acc9b24f55

+ 3 - 0
src/layout/layout-part/menus.vue

@@ -13,6 +13,9 @@
         </el-menu-item-group>
       </el-submenu>
       <el-menu-item index="/financial/index"> <i class="el-icon-s-grid"></i>金融机构</el-menu-item>
+      <el-menu-item index="/otheruser/index"> <i class="el-icon-s-grid"></i>用户管理</el-menu-item>
+      <el-menu-item index="/company/index"> <i class="el-icon-s-grid"></i>企业信息管理</el-menu-item>
+      <el-menu-item index="/companyidentify/index"> <i class="el-icon-s-grid"></i>企业认证管理</el-menu-item>
     </el-menu>
   </div>
 </template>

+ 15 - 0
src/router/index.js

@@ -23,6 +23,21 @@ const routes = [
     path: '/financial/index',
     component: () => import('../views/financial/index.vue'),
   },
+  // 用户管理
+  {
+    path: '/otheruser/index',
+    component: () => import('../views/otheruser/index.vue'),
+  },
+  // 企业信息管理
+  {
+    path: '/company/index',
+    component: () => import('../views/company/index.vue'),
+  },
+  // 企业认证管理
+  {
+    path: '/companyidentify/index',
+    component: () => import('../views/companyidentify/index.vue'),
+  },
 ];
 
 const router = new VueRouter({

+ 23 - 0
src/views/company/index.vue

@@ -0,0 +1,23 @@
+<template>
+  <div id="index">
+    <el-row>
+      <el-col :span="24">
+        企业信息
+      </el-col>
+    </el-row>
+  </div>
+</template>
+
+<script>
+export default {
+  name: 'index',
+  props: {},
+  components: {},
+  data: () => ({}),
+  created() {},
+  computed: {},
+  methods: {},
+};
+</script>
+
+<style lang="less" scoped></style>

+ 21 - 0
src/views/companyidentify/index.vue

@@ -0,0 +1,21 @@
+<template>
+  <div id="index">
+    <el-col :span="24">
+      企业认证
+    </el-col>
+  </div>
+</template>
+
+<script>
+export default {
+  name: 'index',
+  props: {},
+  components: {},
+  data: () => ({}),
+  created() {},
+  computed: {},
+  methods: {},
+};
+</script>
+
+<style lang="less" scoped></style>

+ 21 - 0
src/views/otheruser/index.vue

@@ -0,0 +1,21 @@
+<template>
+  <div id="index">
+    <el-col :span="24">
+      其他用户
+    </el-col>
+  </div>
+</template>
+
+<script>
+export default {
+  name: 'index',
+  props: {},
+  components: {},
+  data: () => ({}),
+  created() {},
+  computed: {},
+  methods: {},
+};
+</script>
+
+<style lang="less" scoped></style>