@@ -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')
+ }
+];
@@ -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>
@@ -169,7 +169,7 @@ const toBack = () => {
};
// 弹框关闭
const toClose = () => {
- form.value = {};
+ form.value = { type: type.value };
searchForm.value = { type: type.value };
dialog.value = { title: '信息管理', show: false, type: '1' };
search({ skip, limit });