feat(wms/flow): 启用并完善全流程节点配置,新增异常处理逻辑
1. 恢复并启用设备维修流程的全流程节点配置 2. 重构各业务标签页的节点跳转逻辑,统一使用handleOpen跳转对应页面 3. 为投诉任务列表接口新增异常捕获处理,请求失败时重置列表数据
This commit is contained in:
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user