설명 없음

hexc c93c5eb7fd 企业+项目选择器 1 주 전
build c30636fe36 11 1 주 전
hooks c30636fe36 11 1 주 전
info c30636fe36 11 1 주 전
plop-templates c30636fe36 11 1 주 전
public c30636fe36 11 1 주 전
script c30636fe36 11 1 주 전
src c93c5eb7fd 企业+项目选择器 1 주 전
tests c30636fe36 11 1 주 전
.cursorindexingignore c30636fe36 11 1 주 전
.dockerignore c30636fe36 11 1 주 전
.editorconfig c30636fe36 11 1 주 전
.env.ack c30636fe36 11 1 주 전
.env.development c30636fe36 11 1 주 전
.env.pre c30636fe36 11 1 주 전
.env.pre2 c30636fe36 11 1 주 전
.env.production c30636fe36 11 1 주 전
.env.staging c30636fe36 11 1 주 전
.env.uat c30636fe36 11 1 주 전
.eslintignore c30636fe36 11 1 주 전
.eslintrc.js c30636fe36 11 1 주 전
.gitignore c30636fe36 11 1 주 전
.nvmrc c30636fe36 11 1 주 전
.project c30636fe36 11 1 주 전
.travis.yml c30636fe36 11 1 주 전
Desktop.ini c30636fe36 11 1 주 전
HEAD c30636fe36 11 1 주 전
LICENSE c30636fe36 11 1 주 전
README.CN.md c30636fe36 11 1 주 전
README.md c30636fe36 11 1 주 전
babel.config.js c30636fe36 11 1 주 전
config c30636fe36 11 1 주 전
description c30636fe36 11 1 주 전
fsmanager.iml c30636fe36 11 1 주 전
git.ico c30636fe36 11 1 주 전
jest.config.js c30636fe36 11 1 주 전
jsconfig.json c30636fe36 11 1 주 전
package.json c30636fe36 11 1 주 전
plopfile.js c30636fe36 11 1 주 전
postcss.config.js c30636fe36 11 1 주 전
tgitchangelist c30636fe36 11 1 주 전
vue.config.js c30636fe36 11 1 주 전

README.CN.md

# fsmanager 总部管理端

开发

# 克隆项目
git clone http://119.23.214.109:30032/guosy/fsmanager.git

# 进入项目目录
cd fsmanager

# 安装依赖
npm install

# 建议不要直接使用 cnpm 安装依赖,会有各种诡异的 bug。可以通过如下操作解决 npm 下载速度慢的问题
npm install --registry=https://registry.npm.taobao.org

如果git的配置错误,可以在在git Bash里面执行git config --global url."https://".insteadOf git://
然后执行git config --global http.sslverify "false"

然后 npm cache clean --force 清一下缓存再重新install

# 启动服务
npm run dev

浏览器访问 http://localhost:9527

发布 为了加载速度,发布一律用npm run build:prod

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

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

其它

# 预览发布环境效果
npm run preview

# 预览发布环境效果 + 静态资源分析
npm run preview -- --report

# 代码格式检查
npm run lint

# 代码格式检查并自动修复
npm run lint -- --fix

#代码格式检查生成html格式报告
npm run report

前序准备

你需要在本地安装 nodegit。本项目技术栈基于 ES2015+vuevuexvue-routervue-cliaxioselement-ui,所有的请求数据都使用Mock.js进行模拟,提前了解和学习这些知识会对使用本项目有很大的帮助。

同时配套了系列教程文章,如何从零构建后一个完整的后台项目,建议大家先看完这些文章再来实践本项目