图书馆综合管理系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
xuhuajiao b4975c021d 盘点 9 months ago
public 盘点数据总览/视频 9 months ago
src 盘点 9 months ago
.editorconfig commit1 10 months ago
.env.development commit1 10 months ago
.env.production commit1 10 months ago
.eslintignore commit1 10 months ago
.eslintrc.js commit1 10 months ago
.gitignore commit1 10 months ago
.travis.yml commit1 10 months ago
LICENSE commit1 10 months ago
README.md 修改 10 months ago
babel.config.js commit1 10 months ago
jest.config.js commit1 10 months ago
package.json 楼层/区域api调试 9 months ago
plopfile.js commit1 10 months ago
postcss.config.js commit1 10 months ago
vue.config.js 区域/书架api页面调试 9 months ago

README.md

图书馆综合管理系统

##参考文档:

1.[element-ui](https://element.eleme.cn/2.15/#/zh-CN)  
   
2.[vue-element-admin](https://panjiachen.github.io/vue-element-admin-site/zh/) 
## 项目结构
├── build                      # 构建相关
├── public                     # 静态资源
│   │── favicon.ico            # favicon图标
│   └── index.html             # html模板
├── src                        # 源代码
│   ├── api                    # 所有请求
│   ├── assets                 # 主题 字体等静态资源
│   │   ├── icons                 # 项目所有 svg icons
│   │   ├── images                # images
│   │   ├── styles                # 全局样式
│   ├── components             # 全局公用组件
│   ├── layout                 # 全局 layout
│   │   ├──                       # 系统布局设置
│   │   ├──                       # 侧边栏
│   │   ├──                       # 导航栏
│   │   ├──                       # main
│   ├── mixins                 # 全局共享数据和方法
│   ├── router                 # 路由
│   ├── store                  # 全局 store管理
│   ├── utils                  # 全局公用方法
│   ├── views                  # views 所有页面
│   │   ├── visualCheck           # 视觉盘点
│   │   │   ├── bookstore           # 书库管理
│   │   │   ├── checkManage         # 盘点管理
│   │   │   ├── venueDevice         # 场馆设备管理
│   │   ├── components            # views内页面组件
│   │   ├── dashboard             # 首页面板内容
│   │   ├── features              # 错误页面
│   │   ├── storeManage           # 库房管理
│   │   ├── system                # 权限管理
│   │   │   ├── group                # 机构管理
│   │   │   ├── dept                 # 部门管理
│   │   │   ├── dict                 # 字典管理
│   │   │   ├── menu                 # 菜单管理
│   │   │   ├── role                 # 角色管理
│   │   │   ├── user                 # 用户管理
│   │   │   ├── notify               # 通知管理
│   │   │   ├── log                  # 日志管理
│   │   ├── home                  # 首页
│   │   ├── login                 # 登录
│   ├── App.vue                # 入口页面
│   ├── main.js                # 入口文件 加载组件 初始化等
│   └── settings.js            # 网站基本设置
├── .env.xxx                   # 环境变量配置
├── .eslintrc.js               # eslint 配置项
├── .babelrc                   # babel-loader 配置
├── .travis.yml                # 自动化CI配置
├── vue.config.js              # vue-cli 配置
├── postcss.config.js          # postcss 配置
└── package.json               # package.json
# install dependency
npm install

# develop
npm run dev

# 构建测试环境
npm run build:stage

# 构建生产环境
npm run build:prod

#打包注意
router.js - mode改为'hash'
vue.config.js - publicPath: './'
.env.production - 地址改为真实的生产服务器地址