feat: 新增锌线生产监控模块及相关API和组件

refactor(auth): 增加锌线系统token管理功能
feat(api): 添加锌线停机记录、生产报表和设备快照API
feat(views): 实现锌线实时监控、生产统计和停机统计页面
feat(components): 开发锌线生产报表、停机统计和班组绩效组件
feat(utils): 新增锌线专用请求工具zinc1Request
chore(vue.config): 配置锌线API代理
This commit is contained in:
砂糖
2026-01-19 13:29:44 +08:00
parent f6000018d8
commit 212c2b16eb
19 changed files with 3762 additions and 0 deletions

View File

@@ -45,6 +45,14 @@ module.exports = {
['^' + process.env.VUE_APP_BASE_API]: ''
}
},
// 直接代理Zinc1相关路径
'/zinc-api': {
target: `http://140.143.206.120:18082/prod-api`,
changeOrigin: true,
pathRewrite: {
['^' + process.env.VUE_APP_BASE_API]: ''
}
},
// 直接代理WebSocket相关路径
'/websocket': {
target: `http://localhost:8080`,