You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
- 在recordVibrationInstant页面添加振动参数下拉选择器 - 根据选中的振动参数动态显示对应的表格列 - 在currentVibrationCurve页面添加振动参数选择功能 - 曲线图表根据选中参数只显示单个图表,移除多图表显示 - 后端查询时传递振动参数进行数据过滤 - 前端对返回数据进行二次过滤,排除无效值 - 导出功能根据选中参数导出对应数据列 - 优化图表样式和坐标轴配置,提升显示效果 |
2 months ago | |
|---|---|---|
| bin | 2 years ago | |
| build | 2 years ago | |
| public | 11 months ago | |
| src | 2 months ago | |
| .editorconfig | 2 years ago | |
| .env.development | 10 months ago | |
| .env.production | 10 months ago | |
| .env.staging | 10 months ago | |
| .eslintignore | 2 years ago | |
| .eslintrc.js | 2 years ago | |
| .gitignore | 2 years ago | |
| README-清空功能快速应用.md | 9 months ago | |
| README.md | 2 years ago | |
| babel.config.js | 9 months ago | |
| jsconfig.json | 2 years ago | |
| package.json | 9 months ago | |
| vue.config.js | 10 months ago | |
README.md
开发
# 克隆项目
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