You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.5 KiB
Plaintext

9 months ago
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Demo:发起</title>
<!-- 引入常用的JS脚本. -->
<script src="/WF/Scripts/QueryString.js"></script>
<!-- 引入ccbpm 的sdk开发js. -->
<script src="/WF/Scripts/config.js"></script>
<script language="javascript" type="text/javascript">
function ShowSwagger() {
// var host = window.location.href;
// "http://xxx:xxx";
var host = basePath;
var url = "";
if (plant === "CCFlow")
url = host + "//swagger/ui/index#/API";
if (plant === "JFlow")
url = host + "/swagger-ui.html";
window.open(url);
}
</script>
</head>
<body>
<br />
<fieldset>
<legend>驰骋BPM - API功能调用说明</legend>
<ul>
<li>接口列表 <a href="javascript:void(0)" onclick="ShowSwagger()">打开Swagger</a></li>
<li> 详细文档请参考:<a href="https://gitee.com/opencc/JFlow/wikis/pages/preview?sort_id=8101800&doc_id=31094" target="_blank"> 打开在线doc.ccbpm.cn文档 </a></li>
</ul>
<legend>相关说明</legend>
<ul>
<li> <a href="https://gitee.com/opencc/JFlow/wikis/pages/preview?sort_id=4199481&doc_id=31094">一个简单的api实例 </a> 介绍了登陆、WorkID的创建、保存参数、执行发送、执行退回的api方法.</li>
</ul>
</fieldset>
</body>
</html>