# exammanager **Repository Path**: thinkseapro/exammanager ## Basic Information - **Project Name**: exammanager - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 1 - **Created**: 2020-12-03 - **Last Updated**: 2021-04-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # exammanager <<<<<<< HEAD #### 介绍 考试管理系统后端 #### 软件架构 软件架构说明 #### 安装教程 1. xxxx 2. xxxx 3. xxxx #### 使用说明 1. xxxx 2. xxxx 3. xxxx #### 参与贡献 1. Fork 本仓库 2. 新建 Feat_xxx 分支 3. 提交代码 4. 新建 Pull Request #### 特技 1. 使用 Readme\_XXX.md 来支持不同的语言,例如 Readme\_en.md, Readme\_zh.md 2. Gitee 官方博客 [blog.gitee.com](https://blog.gitee.com) 3. 你可以 [https://gitee.com/explore](https://gitee.com/explore) 这个地址来了解 Gitee 上的优秀开源项目 4. [GVP](https://gitee.com/gvp) 全称是 Gitee 最有价值开源项目,是综合评定出的优秀开源项目 5. Gitee 官方提供的使用手册 [https://gitee.com/help](https://gitee.com/help) 6. Gitee 封面人物是一档用来展示 Gitee 会员风采的栏目 [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/) ======= ## Project setup ``` npm install ``` ### Compiles and hot-reloads for development ``` npm run serve ``` ### Compiles and minifies for production ``` npm run build ``` ### Lints and fixes files ``` npm run lint ``` ### Customize configuration See [Configuration Reference](https://cli.vuejs.org/config/). >>>>>>> 41beb83... '2020-12-3考试后台项目开始搭建' ~~~js menuList: [ //值传递:父传子 { 'menuId': 111, //菜单/按钮ID 'parentId': 0,//上级菜单ID 'menuName': '系统管理',//菜单按钮名称 'url': '',//菜单url 'icon': 'el-icon-setting',//图标 'orderNum': 1,//排序 'open': 1,//0:不展开 1:可用 'disabled': false,//true:可用 false:不可用 'perms': null,//权限标识 'type': 0,//类型 0菜单 1按钮 'children': [ //子菜单 { 'menuId': 111 - 1, 'parentId': 111, 'menuName': '欢迎页面', 'url': '/welcome', 'icon': 'el-icon-star-off', 'orderNum': 1, 'open': 0, 'disabled': false, 'perms': 'welcome:view', 'type': 0, 'children': [] }, { 'menuId': 111 - 2, 'parentId': 111, 'menuName': '用户管理', 'url': '/users', 'icon': 'el-icon-user', 'orderNum': 2, 'open': 0, 'disabled': false, 'perms': 'users', 'type': 0, 'children': [] } ] }, { 'menuId': 112, //菜单/按钮ID 'parentId': 12,//上级菜单ID 'menuName': '业务管理',//菜单按钮名称 'url': '',//菜单url 'icon': 'el-icon-setting',//图标 'orderNum': 1,//排序 'open': 1,//0:不展开 1:可用 'disabled': false,//true:可用 false:不可用 'perms': null,//权限标识 'type': 0,//类型 0菜单 1按钮 'children': [ //子菜单 { 'menuId': 112 - 1, 'parentId': 12, 'menuName': '试题管理', 'url': '/topic', 'icon': 'el-icon-star-off', 'orderNum': 1, 'open': 0, 'disabled': false, 'perms': 'welcome:view', 'type': 0, 'children': [] }, { 'menuId': 112 - 2, 'parentId': 12, 'menuName': '试卷管理', 'url': '/paper', 'icon': 'el-icon-star-off', 'orderNum': 1, 'open': 0, 'disabled': false, 'perms': 'welcome:view', 'type': 0, 'children': [] } ] } ] ~~~