Browse Source

管理账号管理文件夹

YY 2 years ago
parent
commit
4bcd990d69

+ 17 - 1
src/router/module/account.js

@@ -1 +1,17 @@
-export default []
+export default [
+  {
+    path: '/admin/admins',
+    meta: { title: '管理用户' },
+    component: () => import('@/views/admin/admins/index.vue')
+  },
+  {
+    path: '/admin/mechanism',
+    meta: { title: '机构用户' },
+    component: () => import('@/views/admin/mechanism/index.vue')
+  }
+   {
+    path: '/admin/business',
+    meta: { title: '业务用户' },
+    component: () => import('@/views/admin/business/index.vue')
+  },
+];

+ 13 - 0
src/views/admin/admins/index.vue

@@ -0,0 +1,13 @@
+<template>
+  <div id="index">
+    <el-row>
+      <el-col :span="24" class="main"> test </el-col>
+    </el-row>
+  </div>
+</template>
+
+<script setup lang="ts">
+import type { Ref } from 'vue';
+import { ref, toRefs } from 'vue';
+</script>
+<style scoped lang="scss"></style>

+ 13 - 0
src/views/admin/business/index.vue

@@ -0,0 +1,13 @@
+<template>
+  <div id="index">
+    <el-row>
+      <el-col :span="24" class="main"> test </el-col>
+    </el-row>
+  </div>
+</template>
+
+<script setup lang="ts">
+import type { Ref } from 'vue';
+import { ref, toRefs } from 'vue';
+</script>
+<style scoped lang="scss"></style>

+ 13 - 0
src/views/admin/mechanism/index.vue

@@ -0,0 +1,13 @@
+<template>
+  <div id="index">
+    <el-row>
+      <el-col :span="24" class="main"> test </el-col>
+    </el-row>
+  </div>
+</template>
+
+<script setup lang="ts">
+import type { Ref } from 'vue';
+import { ref, toRefs } from 'vue';
+</script>
+<style scoped lang="scss"></style>