feat(wms/flow): 启用并完善全流程节点配置,新增异常处理逻辑

1.  恢复并启用设备维修流程的全流程节点配置
2.  重构各业务标签页的节点跳转逻辑,统一使用handleOpen跳转对应页面
3.  为投诉任务列表接口新增异常捕获处理,请求失败时重置列表数据
This commit is contained in:
王文昊
2026-07-02 14:24:19 +08:00
parent 5d29e92bde
commit 2812c6b3b1
2 changed files with 47 additions and 37 deletions

View File

@@ -177,6 +177,9 @@ export default {
listComplaintTask(params).then(response => {
this.total = response.total;
this.taskList = response.rows || [];
}).catch(() => {
this.total = 0;
this.taskList = [];
}).finally(() => { this.loading = false; });
},
handleQuery() {