|
@@ -123,7 +123,7 @@ const $_render = ()=>{
|
|
|
nodeExt: item.nodeExt??[],
|
|
|
deptProv: item.deptProv??1,
|
|
|
// WebHook 配置 - 从后端数据构建 webhook 对象
|
|
|
- webhook: item.webhook,
|
|
|
+ webhook: JSON.parse(item.ext ?? '{}'),
|
|
|
}
|
|
|
}
|
|
|
setReceiver(node,item.nodeReceiver)
|
|
@@ -184,7 +184,7 @@ const $_saveModel = ()=>{
|
|
|
deptProv:item.properties?.deptProv,
|
|
|
|
|
|
// WebHook 相关配置 - 整合到 webhook 对象中
|
|
|
- webhook: item.properties?.webhook
|
|
|
+ ext: item.properties?.webhook
|
|
|
}
|
|
|
})
|
|
|
const edges = data.edges.map((item:any)=>{
|