图书馆综合管理系统
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 efc0fcc69c 架位数据总览问题 5 days ago
public 盘点 2 weeks ago
src 架位数据总览问题 5 days ago
.editorconfig commit1 11 months ago
.env.development 盘点 2 weeks ago
.env.production 盘点 2 weeks ago
.eslintignore commit1 11 months ago
.eslintrc.js commit1 11 months ago
.gitignore commit1 11 months ago
.travis.yml commit1 11 months ago
LICENSE commit1 11 months ago
README.md 修改 11 months ago
babel.config.js commit1 11 months ago
jest.config.js commit1 11 months ago
package.json 移动盘点 9 months ago
plopfile.js commit1 11 months ago
postcss.config.js commit1 11 months ago
vue.config.js 区域/书架api页面调试 11 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 - 地址改为真实的生产服务器地址