在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称:spug-vue-admin开源软件地址:https://gitee.com/openspug/spug-vue-admin开源软件介绍:spug-vue-admin基于开源运维平台Spug的后台,使用Vue+Element组件库开发的脚手架,可以独立启动运行,根据自己需要快速开发需要的后台功能。 Demo演示地址:https://spug.qbangmang.com/loginDemo账号密码:<admin/spug>模拟接口地址:https://easy-mock.com/开源运维平台:https://github.com/openspug/spugPreview 预览Environment 环境# nodejs需要自行安装Node >= 6 Develop 开发环境启动# 克隆代码,并启动shell> git clone https://github.com/openspug/spug-vue-admin.gitshell> cd spug-vue-admin && npm installshell> npm run dev# 本地启动后,访问:http://localhost:8080 输入任意账号密码就可以登录。 文档Element组件库数据格式1、后端接口配置文件路径:spug-vue-admin/src/config/env.js2、默认接口使用https://easy-mock.com/ 模拟的数据3、需要返回的格式:{ "data": "xxx", "message": "xxx" }4、接口实例:# 登录接口数据格式:{ "data": { "token": "59e0a5e09e854f75b591dff4aa048f3c", "is_supper": "true", "nickname": "admin", "permissions": [] }, "message": ""}# 用户列表数据格式:{ 'data': { 'data': [{ 'id': 1, 'role_id': 2, 'username': 'admin', 'nickname': 'admin', 'password_hash': 'pcbfabd90b0f1a72dec248e785ceeac4e169f', 'email': '[email protected]', 'mobile': '13888888899', 'is_supper': 'false', 'is_active': 'true', 'access_token': '', 'token_expired': 1558874142, 'last_login': '1小时前' }, { 'id': 2, 'role_id': 2, 'username': 'zuyp', 'nickname': 'zuyp', 'password_hash': 'pbkdf2:1a72dec248e785ce271e8849f', 'email': '[email protected]', 'mobile': '13888888899', 'is_supper': 'false', 'is_active': 'true', 'access_token': '', 'token_expired': 1558874142, 'last_login': '1小时前' } ], 'total': 2 }, 'message': ''} Build 打包shell> cd spug-vue-admin shell> npm run build |
请发表评论