From 85d9447504b83d4b4b0550d4b5199e284e14a06f Mon Sep 17 00:00:00 2001
From: tony.cheng <chengmingwei_1984122@126.com>
Date: Thu, 12 Mar 2026 17:04:05 +0800
Subject: [PATCH] feat: 数据加载稳定性重构 - 将证据材料和调解协议API集中到CaseDataContext统一管理
---
web-app/src/mocks/timeline.js | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/web-app/src/mocks/timeline.js b/web-app/src/mocks/timeline.js
index 8f24802..c2bb0b5 100644
--- a/web-app/src/mocks/timeline.js
+++ b/web-app/src/mocks/timeline.js
@@ -30,11 +30,11 @@
}
},
nodes: [
- { id: 1, node_name: "意愿调查", order_no: 1 },
- { id: 2, node_name: "材料核实", order_no: 2 },
- { id: 3, node_name: "事实认定", order_no: 3 },
- { id: 4, node_name: "达成协议", order_no: 4 },
- { id: 5, node_name: "履约回访", order_no: 5 }
+ { id: 1, node_name: "意愿调查", order_no: 1, nodeState: 2 },
+ { id: 2, node_name: "材料核实", order_no: 2, nodeState: 2 },
+ { id: 3, node_name: "事实认定", order_no: 3, nodeState: 1 },
+ { id: 4, node_name: "达成协议", order_no: 4, nodeState: 0 },
+ { id: 5, node_name: "履约回访", order_no: 5, nodeState: 0 }
]
}
};
--
Gitblit v1.8.0