Files
ccdi/ruoyi-ui
wkc 8855507bb4 feat(ui): 在项目详情页面添加配置类型标签显示
- 在项目名称旁添加配置类型标签
- 默认配置显示蓝色"默认配置"标签
- 自定义配置显示橙色"自定义配置"标签
- 添加 getConfigTypeLabel 和 getConfigTypeStyle 方法
- 为标签添加左边距以改善视觉效果
- 纯前端实现,无需后端修改

Ref: docs/plans/2026-03-09-param-config-type-display-design.md
2026-03-09 12:22:40 +08:00
..
2026-01-27 17:55:53 +08:00
2026-01-26 18:20:13 +08:00
2026-01-26 18:20:13 +08:00
2026-01-26 18:20:13 +08:00
2026-01-26 18:20:13 +08:00
2026-01-30 15:50:30 +08:00
2026-01-30 15:50:30 +08:00
2026-01-30 15:50:30 +08:00
2026-01-26 18:20:13 +08:00
2026-01-26 18:20:13 +08:00
2026-01-26 18:20:13 +08:00
2026-03-06 13:59:27 +08:00

开发

# 克隆项目
git clone https://gitee.com/y_project/RuoYi-Vue

# 进入项目目录
cd ruoyi-ui

# 安装依赖
npm install

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

# 启动服务
npm run dev

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

发布

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

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