万达版ADM。

zhangyu 816483093b Merge branch 'service' of git.sagacloud.cn:web/wanda-adm into service %!s(int64=3) %!d(string=hai) anos
fonts 338bd30c34 -- %!s(int64=3) %!d(string=hai) anos
img 338bd30c34 -- %!s(int64=3) %!d(string=hai) anos
js 338bd30c34 -- %!s(int64=3) %!d(string=hai) anos
public 68e634a77f wanda-adm:feat >添加错误页面,解决报错 %!s(int64=3) %!d(string=hai) anos
src 0ad5d9e9ca wanda-adm:feat >优化打包类型申明文件 %!s(int64=3) %!d(string=hai) anos
wanda-adm 7fcf341db5 静态文件 %!s(int64=3) %!d(string=hai) anos
.browserslistrc 6a553b80eb wanda-adm:feat > 搭建基础框架 %!s(int64=3) %!d(string=hai) anos
.editorconfig 6d315e9e05 wanda-adm:feat >更改统一配置文件 editorconfig %!s(int64=3) %!d(string=hai) anos
.env.development a274a1a713 wanda-adm:feat >添加环境变量,基础配置 %!s(int64=3) %!d(string=hai) anos
.env.production a274a1a713 wanda-adm:feat >添加环境变量,基础配置 %!s(int64=3) %!d(string=hai) anos
.env.staging a274a1a713 wanda-adm:feat >添加环境变量,基础配置 %!s(int64=3) %!d(string=hai) anos
.eslintignore 6a553b80eb wanda-adm:feat > 搭建基础框架 %!s(int64=3) %!d(string=hai) anos
.eslintrc.js 9fa5fd775d 布局优化,文件统一格式化 %!s(int64=3) %!d(string=hai) anos
.gitignore f9fe3e5a8b 删除lock %!s(int64=3) %!d(string=hai) anos
README.md 68e634a77f wanda-adm:feat >添加错误页面,解决报错 %!s(int64=3) %!d(string=hai) anos
babel.config.js 6a553b80eb wanda-adm:feat > 搭建基础框架 %!s(int64=3) %!d(string=hai) anos
package.json b4007250dd wanda-adm:feat >修改路由文件,解决报错问题 %!s(int64=3) %!d(string=hai) anos
postcss.config.js 6a553b80eb wanda-adm:feat > 搭建基础框架 %!s(int64=3) %!d(string=hai) anos
systemConf.js 338bd30c34 -- %!s(int64=3) %!d(string=hai) anos
tsconfig.json 0ad5d9e9ca wanda-adm:feat >优化打包类型申明文件 %!s(int64=3) %!d(string=hai) anos
vue.config.js 68e634a77f wanda-adm:feat >添加错误页面,解决报错 %!s(int64=3) %!d(string=hai) anos

README.md

目录结构


├── public                     # 静态资源 (会被直接复制)
│   │── favicon.ico            # favicon图标
│   │── manifest.json          # PWA 配置文件
│   └── index.html             # html模板
├── src                        # 源代码
│   ├── api                    # 所有请求
│   ├── assets                 # 主题 字体等静态资源 (由 webpack 处理加载)
│   ├── components             # 全局组件
│   ├── directive              # 全局指令
│   ├── filters                # 全局过滤函数
│   ├── icons                  # svg 图标
│   ├── layout                 # 全局布局
│   ├── router                 # 路由
│   ├── store                  # 全局 vuex store
│   ├── styles                 # 全局样式
│   ├── utils                  # 全局方法
│   ├── views                  # 所有页面
│   ├── App.vue                # 入口页面
│   ├── main.js                # 入口文件 加载组件 初始化等
│   ├── permission.ts          # 权限管理
│   └── shims.d.ts             # 模块注入
├── .browserslistrc            # browserslistrc 配置文件 (用于支持 Autoprefixer)
├── .editorconfig              # 编辑相关配置
├── .env.development           # 开发环境变量配置
├── .env.staging               # 测试环境变量配置
├── .env.production            # 线上环境变量配置
├── .eslintrc.js               # eslint 配置
├── babel.config.js            # babel-loader 配置
├── package.json               # package.json 依赖
├── postcss.config.js          # postcss 配置
├── tsconfig.json              # typescript 配置
└── vue.config.js              # vue-cli 配置