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.
- 在 App.vue 中添加全局 WebSocket 连接逻辑 - 实现告警数据的队列管理,包括优先级排序和自动超时处理 - 在 Navbar 组件中添加 WebSocket 连接状态和告警队列状态指示器 - 重构 Index.vue 中的 WebSocket相关代码,使用全局事件总线通信 - 优化 baseMonitorInfoIOTDevice 组件,移除不必要的条件渲染 |
7 months ago | |
|---|---|---|
| bin | 2 years ago | |
| build | 2 years ago | |
| public | 8 months ago | |
| src | 7 months ago | |
| .editorconfig | 2 years ago | |
| .env.development | 7 months ago | |
| .env.production | 7 months ago | |
| .env.staging | 7 months ago | |
| .eslintignore | 2 years ago | |
| .eslintrc.js | 2 years ago | |
| .gitignore | 2 years ago | |
| README.md | 2 years ago | |
| babel.config.js | 2 years ago | |
| jsconfig.json | 1 year ago | |
| package.json | 7 months ago | |
| vue.config.js | 7 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