软件项目管理系统
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.
 
 
 
 
gegeya ed6b4d3abf Merge branch 'dev_2307' of http://182.92.169.222:3000/zhc077/projectManagement into dev_2307 1 year ago
..
public 软件项目管理系统 工程初始化 2 years ago
src Merge branch 'dev_2307' of http://182.92.169.222:3000/zhc077/projectManagement into dev_2307 1 year ago
.dockerignore 软件项目管理系统 工程初始化 2 years ago
.editorconfig 软件项目管理系统 工程初始化 2 years ago
.env 软件项目管理系统 工程初始化 2 years ago
.env.development 端口配置 1 year ago
.env.production 端口配置 1 year ago
.env.test 软件项目管理系统 工程初始化 2 years ago
.eslintignore 软件项目管理系统 工程初始化 2 years ago
.gitattributes 软件项目管理系统 工程初始化 2 years ago
.gitignore 软件项目管理系统 工程初始化 2 years ago
.prettierrc 软件项目管理系统 工程初始化 2 years ago
Dockerfile 软件项目管理系统 工程初始化 2 years ago
LICENSE 软件项目管理系统 工程初始化 2 years ago
README.md 软件项目管理系统 工程初始化 2 years ago
babel.config.js 软件项目管理系统 工程初始化 2 years ago
idea.config.js 软件项目管理系统 工程初始化 2 years ago
package-lock.json 新增布局调整 1 year ago
package.json 软件项目管理系统 工程初始化 2 years ago
vue.config.js 软件项目管理系统 工程初始化 2 years ago

README.md

Ant Design Jeecg Vue

当前最新版本: 2.4.5(发布日期:20210607)

Overview

基于 Ant Design of Vue 实现的 Ant Design Pro Vue 版 Jeecg-boot 的前端UI框架,采用前后端分离方案,提供强大代码生成器的低代码平台。 前端页面代码和后端功能代码一键生成,不需要写任何代码,保持jeecg一贯的强大!!

前端技术

项目下载和运行

  • 拉取项目代码
git clone https://github.com/zhangdaiscott/jeecg-boot.git
cd  jeecg-boot/ant-design-jeecg-vue
  • 安装依赖
yarn install
  • 开发模式运行
yarn run serve
  • 编译项目
yarn run build
  • Lints and fixes files
yarn run lint

其他说明

  • 项目使用的 vue-cli3, 请更新您的 cli

  • 关闭 Eslint (不推荐) 移除 package.jsoneslintConfig 整个节点代码

  • 修改 Ant Design 配色,在文件 vue.config.js 中,其他 less 变量覆盖参考 ant design 官方说明

  css: {
    loaderOptions: {
      less: {
        modifyVars: {
          /* less 变量覆盖,用于自定义 ant design 主题 */

          'primary-color': '#F5222D',
          'link-color': '#F5222D',
          'border-radius-base': '4px',
        },
        javascriptEnabled: true,
      }
    }
  }

附属文档

备注

@vue/cli 升级后,eslint 规则更新了。由于影响到全部 .vue 文件,需要逐个验证。既暂时关闭部分原本不验证的规则,后期维护时,在逐步修正这些 rules

Docker 镜像使用

# 1.修改前端项目的后台域名
   .env.development
   域名改成: http://jeecg-boot-system:10086/jeecg-boot
  
# 2.先进入打包前端项目
 yarn run build

# 3.构建镜像
 docker build -t nginx:jeecgboot .

# 4.启动镜像
 docker run --name jeecg-boot-nginx -p 80:80 -d nginx:jeecgboot

# 5.配置host

   # jeecgboot
   127.0.0.1   jeecg-boot-redis
   127.0.0.1   jeecg-boot-mysql
   127.0.0.1   jeecg-boot-system
 
# 6.访问前台项目
 http://localhost:80