147 Star 595 Fork 231

openEA开源社区 / FlowDesigner

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
Clone or Download
load.js 423 Bytes
Copy Edit Raw Blame History
FLOW.ready(function() {
if(window.location.href.substring(0, 4) == 'file') {
FLOW.init();
FLOW.loadJson(data);
} else {
// 获取数据
ZFSN.loadJsonFromUrl('/FlowDesigner/json/demoData.json', 'GET', function(err, text) {
if (!err) {
let data = JSON.parse(text);
// 初始化流程设计器
FLOW.init();
// 初始化加载josn数据到流程设计器
FLOW.loadJson(data);
}
});
}
});
JavaScript
1
https://gitee.com/openEA/FlowDesigner.git
git@gitee.com:openEA/FlowDesigner.git
openEA
FlowDesigner
FlowDesigner
feature-ES6

Search