feat(pdo): 重构PDO模块结构并优化功能

将PDO模块拆分为面板组件和页面组件,实现代码复用
新增数据修正、标签打印和统计汇总组件
优化图表显示和数据处理逻辑
This commit is contained in:
砂糖
2026-01-03 16:04:46 +08:00
parent 46d584ef99
commit 2773c9e8ae
10 changed files with 1321 additions and 1842 deletions

View File

@@ -181,10 +181,14 @@ export default {
currentRow: {}
};
},
created() {
// 页面加载时默认查询一次
this.fetchApi = createFetch(this.baseURL)
this.getStoppageList();
watch: {
baseURL: {
handler(newVal) {
this.fetchApi = createFetch(newVal)
this.getStoppageList();
},
immediate: true
}
},
methods: {
// 获取停机记录列表