process.html 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482
  1. <div class="editNode">
  2. <div title="基本" class="MWFTab">
  3. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  4. <tr>
  5. <td class="editTableTitle">标识:</td>
  6. <td class="editTableValue">text{$.id}</td>
  7. </tr>
  8. <tr>
  9. <td class="editTableTitle">创建人:</td>
  10. <td class="editTableValue">text{$.creatorPerson}</td>
  11. </tr>
  12. <tr>
  13. <td class="editTableTitle">创建时间:</td>
  14. <td class="editTableValue">text{$.createTime}</td>
  15. </tr>
  16. <tr>
  17. <td class="editTableTitle">更新人:</td>
  18. <td class="editTableValue">text{$.lastUpdatePerson}</td>
  19. </tr>
  20. <tr>
  21. <td class="editTableTitle">更新时间:</td>
  22. <td class="editTableValue">text{$.lastUpdateTime}</td>
  23. </tr>
  24. <tr>
  25. <td class="editTableTitle">应用:</td>
  26. <td class="editTableValue">text{$.applicationName}</td>
  27. </tr>
  28. <tr>
  29. <td class="editTableTitle">名称:</td>
  30. <td class="editTableValue"><input type="text" name="name" value="text{$.name}" class="editTableInput"/></td>
  31. </tr>
  32. <tr>
  33. <td class="editTableTitle">别名:</td>
  34. <td class="editTableValue"><input type="text" name="alias" value="text{$.alias}" class="editTableInput"/></td>
  35. </tr>
  36. <tr>
  37. <td class="editTableTitle">描述:</td>
  38. <td class="editTableValue"><textarea name="description" class="editTableTextarea">text{$.description}</textarea></td>
  39. </tr>
  40. <tr>
  41. <td class="editTableTitle">图标:</td>
  42. <td class="editTableValue"><div class="MWFIcon" name="icon"></div></td>
  43. </tr>
  44. <tr>
  45. <td class="editTableTitle">新建检查:</td>
  46. <td class="editTableValue">
  47. <input class="editTableRadio" name="checkDraft" text{($.checkDraft===true)?'checked':''} type="radio" value="true"/>是
  48. <input class="editTableRadio" name="checkDraft" text{($.checkDraft!==true)?'checked':''} type="radio" value="false"/>否
  49. <br/>(选择“是”:未保存过的流程实例不会保留)
  50. </td>
  51. </tr>
  52. <tr>
  53. <td class="editTableTitle">使用路由名称作为缺省意见:</td>
  54. <td class="editTableValue">
  55. <input class="editTableRadio" name="routeNameAsOpinion" text{($.routeNameAsOpinion===true)?'checked':''} type="radio" value="true"/>是
  56. <input class="editTableRadio" name="routeNameAsOpinion" text{($.routeNameAsOpinion!==true)?'checked':''} type="radio" value="false"/>否
  57. <br/>(选择“否”:处理意见没填写则意见为空)
  58. </td>
  59. </tr>
  60. </table>
  61. <div style="height: 22px; line-height: 22px; background-color: #f1f1f1; text-align: center; font-weight: bold; border-top: 1px solid #cccccc">权 限</div>
  62. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable" id="processEditStarter"">
  63. <tr>
  64. <td class="editTableTitle">启动人:</td>
  65. <td class="editTableValue">
  66. <div class="MWFPersonIdentity" name="startableIdentityList"></div>
  67. </td>
  68. </tr>
  69. <tr>
  70. <td class="editTableTitle">启动组织:</td>
  71. <td class="editTableValue">
  72. <div class="MWFPersonUnit" name="startableUnitList"></div>
  73. </td>
  74. </tr>
  75. <!--<tr>-->
  76. <!--<td class="editTableTitle">启动部门:</td>-->
  77. <!--<td class="editTableValue">-->
  78. <!--<div class="MWFPersonDepartment" name="startableDepartmentList"></div>-->
  79. <!--</td>-->
  80. <!--</tr>-->
  81. <!--<tr>-->
  82. <!--<td class="editTableTitle">启动公司:</td>-->
  83. <!--<td class="editTableValue">-->
  84. <!--<div class="MWFPersonCompany" name="startableCompanyList"></div>-->
  85. <!--</td>-->
  86. <!--</tr>-->
  87. </table>
  88. <hr />
  89. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  90. <tr>
  91. <td class="editTableTitle">管理者:</td>
  92. <td class="editTableValue">
  93. <div class="MWFPersonPerson" name="controllerList"></div>
  94. </td>
  95. </tr>
  96. <!--<tr>-->
  97. <!--<td class="editTableTitle">管理部门:</td>-->
  98. <!--<td class="editTableValue">-->
  99. <!--<div class="MWFPersonDepartment" name="manageDepartmentList"></div>-->
  100. <!--</td>-->
  101. <!--</tr>-->
  102. <!--<tr>-->
  103. <!--<td class="editTableTitle">管理者脚本:</td>-->
  104. <!--<td class="editTableValue">-->
  105. <!--&lt;!&ndash; <textarea type="text" jsondata="reviewerScriptIdList" value="text{$.reviewerScriptIdList}" class="editTableInput"></textarea> &ndash;&gt;-->
  106. <!--<div class="MWFScript" name="manageScriptList"></div>-->
  107. <!--</td>-->
  108. <!--</tr>-->
  109. </table>
  110. <hr />
  111. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  112. <tr>
  113. <td class="editTableTitle">阅读者:</td>
  114. <td class="editTableValue">
  115. <div class="MWFPersonIdentity" name="reviewIdentityList"></div>
  116. </td>
  117. </tr>
  118. <!--<tr>-->
  119. <!--<td class="editTableTitle">阅读部门:</td>-->
  120. <!--<td class="editTableValue">-->
  121. <!--<div class="MWFPersonDepartment" name="reviewDepartmentList"></div>-->
  122. <!--</td>-->
  123. <!--</tr>-->
  124. <!--<tr>-->
  125. <!--<td class="editTableTitle">阅读人脚本:</td>-->
  126. <!--<td class="editTableValue">-->
  127. <!--&lt;!&ndash; <textarea type="text" jsondata="reviewerScriptIdList" value="text{$.reviewerScriptIdList}" class="editTableInput"></textarea> &ndash;&gt;-->
  128. <!--<div class="MWFScript" name="reviewScriptList"></div>-->
  129. <!--</td>-->
  130. <!--</tr>-->
  131. </table>
  132. </div>
  133. <div title="编号" class="MWFTab">
  134. <div class="MWFSerial" name="serialTexture"></div>
  135. <div style="border-top: 1px solid #CCC">
  136. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  137. <tr>
  138. <td class="editTableTitle">编号活动:</td>
  139. <td class="editTableValue">
  140. <div class="MWFSericalActivitySelect" name="serialActivity"></div></td>
  141. </tr>
  142. <tr>
  143. <td class="editTableTitle">触发条件:</td>
  144. <td class="editTableValue">
  145. <input class="editTableRadio" name="serialPhase" text{($.serialPhase!="inquire")?'checked':''} type="radio" value="arrive"/>到达
  146. <input class="editTableRadio" name="serialPhase" text{($.serialPhase=="inquire")?'checked':''} type="radio" value="inquire"/>提交
  147. </td>
  148. </tr>
  149. </table>
  150. </div>
  151. </div>
  152. <div title="时效" class="MWFTab">
  153. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  154. <tr>
  155. <td class="editTableTitle">流程超时:</td>
  156. <td class="editTableValue">
  157. <input class="editTableRadio" onclick="if (this.checked){ $('text{$.id}expireTypeAppointEditArea').setStyle('display', 'none'); $('text{$.id}expireTypeScriptEditArea').setStyle('display', 'none');}" name="expireType" text{($.expireType!='appoint' && $.expireType!='script')?'checked':''} type="radio" value="never"/>不超时
  158. <input class="editTableRadio" onclick="if (this.checked){ $('text{$.id}expireTypeAppointEditArea').setStyle('display', 'block'); $('text{$.id}expireTypeScriptEditArea').setStyle('display', 'none');}" name="expireType" text{($.expireType=='appoint')?'checked':''} type="radio" value="appoint"/>指定时长
  159. <input class="editTableRadio" onclick="if (this.checked){ $('text{$.id}expireTypeAppointEditArea').setStyle('display', 'none'); $('text{$.id}expireTypeScriptEditArea').setStyle('display', 'block');}" name="expireType" text{($.expireType=='script')?'checked':''} type="radio" value="script"/>通过脚本设定
  160. </td>
  161. </tr>
  162. </table>
  163. <div id="text{$.id}expireTypeAppointEditArea" style="display: text{($.expireType=='appoint')?'block':'none'}; margin-top: 5px;">
  164. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  165. <tr>
  166. <td class="editTableTitle">超时时长:</td>
  167. <td class="editTableValue">
  168. <input type="text" name="expireDay" value="text{$.expireDay || 7}" style="width: 80px; border: 1px solid #cccccc"/> 天 <br/>
  169. <input type="text" name="expireHour" value="text{($.expireHour) ? $.expireHour : 0}" style="width: 80px; border: 1px solid #cccccc"/> 小时
  170. </td>
  171. </tr>
  172. <tr>
  173. <td class="editTableTitle"></td>
  174. <td class="editTableValue">
  175. <input class="editTableRadio" name="expireWorkTime" text{!($.expireWorkTime===false)?'checked':''} type="radio" value="true"/>仅计算工作时间
  176. <input class="editTableRadio" name="expireWorkTime" text{($.expireWorkTime===false)?'checked':''} type="radio" value="false"/>包含非指定时长
  177. </td>
  178. </tr>
  179. </table>
  180. </div>
  181. <div id="text{$.id}expireTypeScriptEditArea" style="display: text{($.expireType=='script')?'block':'none'}; margin-top: 5px;">
  182. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  183. <tr>
  184. <td class="editTableTitle">脚本:</td>
  185. <td class="editTableValue">
  186. <div class="MWFScript" name="expireScript"></div>
  187. </td>
  188. </tr>
  189. </table>
  190. <div class="MWFScriptText" name="expireScriptText"></div><hr />
  191. <div style="margin: 5px;">脚本返回JSON数据: <br>
  192. {<br>
  193. <span>&nbsp;&nbsp;&nbsp;&nbsp;</span>hour: 3 <span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>//几小时后超时<br>
  194. <span>&nbsp;&nbsp;&nbsp;&nbsp;</span>workHour: 5 <span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>//几个工作小时后超时<br>
  195. <span>&nbsp;&nbsp;&nbsp;&nbsp;</span>date: '2016-08-01' <span>&nbsp;&nbsp;</span>//到达指定时间后超时<br>
  196. }<br>
  197. 三个值任选其一</div>
  198. </div>
  199. </div>
  200. <div title="映射" class="MWFTab">
  201. <div class="MWFProjection" name="projection">
  202. <div style="margin: 0px; height: 20px; padding: 5px; background-color: #F6F6F6; line-height: 20px; text-align: center">映射业务数据</div>
  203. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  204. <tr>
  205. <td class="editTableTitle">数据名称:</td>
  206. <td class="editTableValue"><input type="text" value="" class="editTableInput"/></td>
  207. </tr>
  208. <tr>
  209. <td class="editTableTitle">数据路径:</td>
  210. <td class="editTableValue"><input type="text" value="" class="editTableInput"/></td>
  211. </tr>
  212. <tr>
  213. <td class="editTableTitle">数据类型:</td>
  214. <td class="editTableValue"><select>
  215. <option value='string'>string</option>
  216. <option value='long'>long</option>
  217. <option value='double'>double</option>
  218. <option value='boolean'>boolean</option>
  219. <option value='date'>date</option>
  220. <option value='time'>time</option>
  221. <option value='datetime'>datetime</option>
  222. </select></td>
  223. </tr>
  224. </table>
  225. <div></div>
  226. <div></div>
  227. </div>
  228. </div>
  229. <div title="事件" class="MWFTab">
  230. <div onclick="var node = this.getNext(); if (node.getStyle('display')=='none'){node.setStyle('display', 'block');}else{node.setStyle('display', 'none');}" style="cursor: pointer; line-height: 28px; height: 30px; font-weight: bold; background-color: #EEEEEE;">
  231. <div style="height: 30px; width: 30px; float: left; background: url(/x_component_process_ProcessDesigner/$Process/event.png) no-repeat center center;"></div>
  232. <div style="margin-left: 20px; padding: 0px 5px;">流程启动前</div>
  233. </div>
  234. <div style="display: none; overflow:hidden; border-left: 10px solid #EEEEEE; border-bottom: 10px solid #EEEEEE;">
  235. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  236. <tr>
  237. <td class="editTableTitle">流程启动前:</td>
  238. <td class="editTableValue">
  239. <div class="MWFScript" name="beforeBeginScript"></div>
  240. </td>
  241. </tr>
  242. </table>
  243. <div class="MWFScriptText" name="beforeBeginScriptText"></div><hr />
  244. </div>
  245. <div style="line-height: 20px; height: 46px; border-bottom: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC; background-color:#f6f6f6;">
  246. <div style="height: 46px; width: 30px; float: left; background: url(/x_component_process_ProcessDesigner/$Process/down.png) no-repeat center center;"></div>
  247. <div style="margin-left: 20px; padding: 3px 10px; text-align: center; color: #666666;">启动流程生成work实例</div>
  248. </div>
  249. <div onclick="var node = this.getNext(); if (node.getStyle('display')=='none'){node.setStyle('display', 'block');}else{node.setStyle('display', 'none');}" style="cursor: pointer; line-height: 28px; height: 30px; font-weight: bold; background-color: #EEEEEE;">
  250. <div style="height: 30px; width: 30px; float: left; background: url(/x_component_process_ProcessDesigner/$Process/event.png) no-repeat center center;"></div>
  251. <div style="margin-left: 20px; padding: 0px 5px;">流程启动后</div>
  252. </div>
  253. <div style="display: none; overflow:hidden; border-left: 10px solid #EEEEEE; border-bottom: 10px solid #EEEEEE;">
  254. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  255. <tr>
  256. <td class="editTableTitle">流程启动后:</td>
  257. <td class="editTableValue">
  258. <div class="MWFScript" name="afterBeginScript"></div>
  259. </td>
  260. </tr>
  261. </table>
  262. <div class="MWFScriptText" name="afterBeginScriptText"></div><hr />
  263. </div>
  264. <div style="line-height: 20px; height: 26px; border-bottom: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC">
  265. <div style="height: 26px; background: url(/x_component_process_ProcessDesigner/$Process/down16.png) no-repeat center center;"></div>
  266. </div>
  267. <div onclick="var node = this.getNext(); if (node.getStyle('display')=='none'){node.setStyle('display', 'block');}else{node.setStyle('display', 'none');}" style="cursor: pointer; line-height: 28px; height: 30px; font-weight: bold; background-color: #EEEEEE;">
  268. <div style="height: 30px; width: 30px; float: left; background: url(/x_component_process_ProcessDesigner/$Process/event.png) no-repeat center center;"></div>
  269. <div style="margin-left: 20px; padding: 0px 5px;">活动到达前</div>
  270. </div>
  271. <div style="display: none; overflow:hidden; border-left: 10px solid #EEEEEE; border-bottom: 10px solid #EEEEEE;">
  272. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  273. <tr>
  274. <td class="editTableTitle">活动到达前:</td>
  275. <td class="editTableValue">
  276. <div class="MWFScript" name="beforeArriveScript"></div>
  277. </td>
  278. </tr>
  279. </table>
  280. <div class="MWFScriptText" name="beforeArriveScriptText"></div><hr />
  281. </div>
  282. <div style="line-height: 20px; height: 46px; border-bottom: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC; background-color:#f6f6f6;">
  283. <div style="height: 46px; width: 30px; float: left; background: url(/x_component_process_ProcessDesigner/$Process/down.png) no-repeat center center;"></div>
  284. <div style="margin-left: 20px; padding: 3px 10px; text-align: center; color: #666666;">执行Arrive操作<br/>活动属性设置</div>
  285. </div>
  286. <div onclick="var node = this.getNext(); if (node.getStyle('display')=='none'){node.setStyle('display', 'block');}else{node.setStyle('display', 'none');}" style="cursor: pointer; line-height: 28px; height: 30px; font-weight: bold; background-color: #EEEEEE;">
  287. <div style="height: 30px; width: 30px; float: left; background: url(/x_component_process_ProcessDesigner/$Process/event.png) no-repeat center center;"></div>
  288. <div style="margin-left: 20px; padding: 0px 5px;">活动到达后</div>
  289. </div>
  290. <div style="display: none; overflow:hidden; border-left: 10px solid #EEEEEE; border-bottom: 10px solid #EEEEEE;">
  291. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  292. <tr>
  293. <td class="editTableTitle">活动到达后:</td>
  294. <td class="editTableValue">
  295. <div class="MWFScript" name="afterArriveScript"></div>
  296. </td>
  297. </tr>
  298. </table>
  299. <div class="MWFScriptText" name="afterArriveScriptText"></div><hr />
  300. </div>
  301. <div style="line-height: 20px; height: 26px; border-bottom: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC">
  302. <div style="height: 26px; background: url(/x_component_process_ProcessDesigner/$Process/down16.png) no-repeat center center;"></div>
  303. </div>
  304. <div onclick="var node = this.getNext(); if (node.getStyle('display')=='none'){node.setStyle('display', 'block');}else{node.setStyle('display', 'none');}" style="cursor: pointer; line-height: 28px; height: 30px; font-weight: bold; background-color: #EEEEEE;">
  305. <div style="height: 30px; width: 30px; float: left; background: url(/x_component_process_ProcessDesigner/$Process/event.png) no-repeat center center;"></div>
  306. <div style="margin-left: 20px; padding: 0px 5px;">活动执行前</div>
  307. </div>
  308. <div style="display: none; overflow:hidden; border-left: 10px solid #EEEEEE; border-bottom: 10px solid #EEEEEE;">
  309. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  310. <tr>
  311. <td class="editTableTitle">活动执行前:</td>
  312. <td class="editTableValue">
  313. <div class="MWFScript" name="beforeExecuteScript"></div>
  314. </td>
  315. </tr>
  316. </table>
  317. <div class="MWFScriptText" name="beforeExecuteScriptText"></div><hr />
  318. </div>
  319. <div style="line-height: 20px; height: 46px; border-bottom: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC; background-color:#f6f6f6;">
  320. <div style="height: 46px; width: 30px; float: left; background: url(/x_component_process_ProcessDesigner/$Process/down.png) no-repeat center center;"></div>
  321. <div style="margin-left: 20px; padding: 3px 10px; text-align: center; color: #666666;">执行Execute操作<br/>执行自动活动任务</div>
  322. </div>
  323. <div onclick="var node = this.getNext(); if (node.getStyle('display')=='none'){node.setStyle('display', 'block');}else{node.setStyle('display', 'none');}" style="cursor: pointer; line-height: 28px; height: 30px; font-weight: bold; background-color: #EEEEEE;">
  324. <div style="height: 30px; width: 30px; float: left; background: url(/x_component_process_ProcessDesigner/$Process/event.png) no-repeat center center;"></div>
  325. <div style="margin-left: 20px; padding: 0px 5px;">活动执行后</div>
  326. </div>
  327. <div style="display: none; overflow:hidden; border-left: 10px solid #EEEEEE; border-bottom: 10px solid #EEEEEE;">
  328. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  329. <tr>
  330. <td class="editTableTitle">活动执行后:</td>
  331. <td class="editTableValue">
  332. <div class="MWFScript" name="afterExecuteScript"></div>
  333. </td>
  334. </tr>
  335. </table>
  336. <div class="MWFScriptText" name="afterExecuteScriptText"></div><hr />
  337. </div>
  338. <div style="line-height: 20px; height: 26px; border-bottom: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC">
  339. <div style="height: 26px; background: url(/x_component_process_ProcessDesigner/$Process/down16.png) no-repeat center center;"></div>
  340. </div>
  341. <div onclick="var node = this.getNext(); if (node.getStyle('display')=='none'){node.setStyle('display', 'block');}else{node.setStyle('display', 'none');}" style="cursor: pointer; line-height: 28px; height: 30px; font-weight: bold; background-color: #EEEEEE;">
  342. <div style="height: 30px; width: 30px; float: left; background: url(/x_component_process_ProcessDesigner/$Process/event.png) no-repeat center center;"></div>
  343. <div style="margin-left: 20px; padding: 0px 5px;">路由查询前</div>
  344. </div>
  345. <div style="display: none; overflow:hidden; border-left: 10px solid #EEEEEE; border-bottom: 10px solid #EEEEEE;">
  346. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  347. <tr>
  348. <td class="editTableTitle">路由查询前:</td>
  349. <td class="editTableValue">
  350. <div class="MWFScript" name="beforeInquireScript"></div>
  351. </td>
  352. </tr>
  353. </table>
  354. <div class="MWFScriptText" name="beforeInquireScriptText"></div><hr />
  355. </div>
  356. <div style="line-height: 20px; height: 46px; border-bottom: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC; background-color:#f6f6f6;">
  357. <div style="height: 46px; width: 30px; float: left; background: url(/x_component_process_ProcessDesigner/$Process/down.png) no-repeat center center;"></div>
  358. <div style="margin-left: 20px; padding: 3px 10px; text-align: center; color: #666666;">执行Inquire操作<br/>查询到达下一个活动的路由</div>
  359. </div>
  360. <div onclick="var node = this.getNext(); if (node.getStyle('display')=='none'){node.setStyle('display', 'block');}else{node.setStyle('display', 'none');}" style="cursor: pointer; line-height: 28px; height: 30px; font-weight: bold; background-color: #EEEEEE;">
  361. <div style="height: 30px; width: 30px; float: left; background: url(/x_component_process_ProcessDesigner/$Process/event.png) no-repeat center center;"></div>
  362. <div style="margin-left: 20px; padding: 0px 5px;">路由查询后</div>
  363. </div>
  364. <div style="display: none; overflow:hidden; border-left: 10px solid #EEEEEE; border-bottom: 10px solid #EEEEEE;">
  365. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  366. <tr>
  367. <td class="editTableTitle">路由查询后:</td>
  368. <td class="editTableValue">
  369. <div class="MWFScript" name="afterInquireScript"></div>
  370. </td>
  371. </tr>
  372. </table>
  373. <div class="MWFScriptText" name="afterInquireScriptText"></div><hr />
  374. </div>
  375. <div style="line-height: 20px; height: 26px; border-bottom: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC">
  376. <div style="height: 26px; background: url(/x_component_process_ProcessDesigner/$Process/down16.png) no-repeat center center;"></div>
  377. </div>
  378. <div style="line-height: 20px; height: 26px; border-bottom: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC">
  379. <div style="height: 26px; background: url(/x_component_process_ProcessDesigner/$Process/down16.png) no-repeat center center;"></div>
  380. </div>
  381. <div onclick="var node = this.getNext(); if (node.getStyle('display')=='none'){node.setStyle('display', 'block');}else{node.setStyle('display', 'none');}" style="cursor: pointer; line-height: 28px; height: 30px; font-weight: bold; background-color: #EEEEEE;">
  382. <div style="height: 30px; width: 30px; float: left; background: url(/x_component_process_ProcessDesigner/$Process/event.png) no-repeat center center;"></div>
  383. <div style="margin-left: 20px; padding: 0px 5px;">流程结束前</div>
  384. </div>
  385. <div style="display: none; overflow:hidden; border-left: 10px solid #EEEEEE; border-bottom: 10px solid #EEEEEE;">
  386. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  387. <tr>
  388. <td class="editTableTitle">流程结束前:</td>
  389. <td class="editTableValue">
  390. <div class="MWFScript" name="beforeEndScript"></div>
  391. </td>
  392. </tr>
  393. </table>
  394. <div class="MWFScriptText" name="beforeEndScriptText"></div><hr />
  395. </div>
  396. <div style="line-height: 20px; height: 46px; border-bottom: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC; background-color:#f6f6f6;">
  397. <div style="height: 46px; width: 30px; float: left; background: url(/x_component_process_ProcessDesigner/$Process/down.png) no-repeat center center;"></div>
  398. <div style="margin-left: 20px; padding: 3px 10px; text-align: center; color: #666666;">执行Arrive操作<br/>活动属性设置</div>
  399. </div>
  400. <div onclick="var node = this.getNext(); if (node.getStyle('display')=='none'){node.setStyle('display', 'block');}else{node.setStyle('display', 'none');}" style="cursor: pointer; line-height: 28px; height: 30px; font-weight: bold; background-color: #EEEEEE;">
  401. <div style="height: 30px; width: 30px; float: left; background: url(/x_component_process_ProcessDesigner/$Process/event.png) no-repeat center center;"></div>
  402. <div style="margin-left: 20px; padding: 0px 5px;">流程结束后</div>
  403. </div>
  404. <div style="display: none; overflow:hidden; border-left: 10px solid #EEEEEE; border-bottom: 10px solid #EEEEEE;">
  405. <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">
  406. <tr>
  407. <td class="editTableTitle">流程结束后:</td>
  408. <td class="editTableValue">
  409. <div class="MWFScript" name="afterEndScript"></div>
  410. </td>
  411. </tr>
  412. </table>
  413. <div class="MWFScriptText" name="afterEndScriptText"></div><hr />
  414. </div>
  415. <!-- <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">-->
  416. <!-- <tr>-->
  417. <!-- <td class="editTableTitle">流程启动前:</td>-->
  418. <!-- <td class="editTableValue">-->
  419. <!-- <div class="MWFScript" name="beforeBeginScript"></div>-->
  420. <!-- </td>-->
  421. <!-- </tr>-->
  422. <!-- </table>-->
  423. <!-- <div class="MWFScriptText" name="beforeBeginScriptText"></div><hr />-->
  424. <!-- <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">-->
  425. <!-- <tr>-->
  426. <!-- <td class="editTableTitle">流程启动后:</td>-->
  427. <!-- <td class="editTableValue">-->
  428. <!-- <div class="MWFScript" name="afterBeginScript"></div>-->
  429. <!-- </td>-->
  430. <!-- </tr>-->
  431. <!-- </table>-->
  432. <!-- <div class="MWFScriptText" name="afterBeginScriptText"></div><hr />-->
  433. <!-- <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">-->
  434. <!-- <tr>-->
  435. <!-- <td class="editTableTitle">流程结束前:</td>-->
  436. <!-- <td class="editTableValue">-->
  437. <!-- <div class="MWFScript" name="beforeEndScript"></div>-->
  438. <!-- </td>-->
  439. <!-- </tr>-->
  440. <!-- </table>-->
  441. <!-- <div class="MWFScriptText" name="beforeEndScriptText"></div><hr />-->
  442. <!-- <table width="100%" border="0" cellpadding="5" cellspacing="0" class="editTable">-->
  443. <!-- <tr>-->
  444. <!-- <td class="editTableTitle">流程结束后:</td>-->
  445. <!-- <td class="editTableValue">-->
  446. <!-- <div class="MWFScript" name="afterEndScript"></div>-->
  447. <!-- </td>-->
  448. <!-- </tr>-->
  449. <!-- </table>-->
  450. <!-- <div class="MWFScriptText" name="afterEndScriptText"></div><hr />-->
  451. </div>
  452. </div>