-
Notifications
You must be signed in to change notification settings - Fork 140
/
Copy pathflowchart.html
2162 lines (2124 loc) · 83.2 KB
/
flowchart.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>flowChart</title>
<link type="text/css" href="semantic-ui-2.2.13/dist/semantic.min.css" rel="stylesheet" />
<link type="text/css" href="css/graph-creator.css" rel="stylesheet" />
<link type="text/css" href="css/jquery.mCustomScrollbar.css" rel="stylesheet" />
<link type="text/css" href="ztree/css/metroStyle/metroStyle.css" rel="stylesheet" />
<link type="text/css" href="laypage/skin/laypage.css" rel="stylesheet" />
<link type="text/css" href="css/flowchart.css" rel="stylesheet" />
</head>
<body>
<div class="subheader editor-toolbar">
<div class="column pop-btn" data-content="保存" data-position="bottom center" data-variation="mini"><i class="save icon"></i></div>
<div class="divider"></div>
<div class="column pop-btn" data-content="剪切" data-position="bottom center" data-variation="mini"><i class="cut icon"></i></div>
<div class="column pop-btn" data-content="复制" data-position="bottom center" data-variation="mini"><i class="copy icon"></i></div>
<div class="column pop-btn" id="test-loadXML" data-content="粘贴" data-position="bottom center" data-variation="mini"><i class="paste icon"></i></div>
<div class="column pop-btn" id="delete-graph" data-content="清空" data-position="bottom center" data-variation="mini"><i class="trash icon"></i></div>
<div class="column pop-btn" id="delete-ele" data-content="删除" data-position="bottom center" data-variation="mini"><i class="remove icon"></i></div>
<div class="divider"></div>
<div class="column pop-btn" data-content="撤销" data-position="bottom center" data-variation="mini"><i class="repeat icon"></i></div>
<div class="column pop-btn" data-content="恢复" data-position="bottom center" data-variation="mini"><i class="undo icon"></i></div>
<div class="divider"></div>
<div class="column pop-btn" id="zoom-enlarge" data-content="放大" data-position="bottom center" data-variation="mini"><i class="zoom icon"></i></div>
<div class="column pop-btn" id="zoom-narrow" data-content="缩小" data-position="bottom center" data-variation="mini"><i class="zoom out icon"></i></div>
<div class="column pop-btn" id="reset-zoom" data-content="归位" data-position="bottom center" data-variation="mini"><i class="maximize icon"></i></div>
<div class="divider"></div>
<div class="column pop-btn" data-content="导入json" data-position="bottom center" data-variation="mini"><i class="sign in icon"></i></div>
<div class="column pop-btn small popup" data-content="导出json" data-position="bottom center" data-variation="mini"><i class="sign out icon"></i></div>
<div class="divider"></div>
<div class="column pop-btn" id="helper" data-content="将左侧活动拖至编辑区" data-position="bottom center" data-variation="mini"><i class="help circle outline icon"></i></div>
</div>
<div class="full clearfix">
<div id="flowComponents" class="full-left">
<div class="components-btn noComponent clearfix" name="selectBtn">
<div><i class="tools select-icon"></i><span>选择</span></div>
</div>
<div class="components-btn noComponent" name="addStartEndBtn" draggable="false">
<div><i class="tools addStartEnd-icon"></i><span>自动插入</span></div>
</div>
<div class="components-btn" name="startComponent" type="start" draggable="true" data-show="S">
<div><i class="tools start-icon"></i><span>开始</span></div>
</div>
<div class="components-btn clearfix" name="endComponent" type="end" draggable="true" data-show="E">
<div><i class="tools end-icon"></i><span>结束</span></div>
</div>
<div class="components-btn clearfix" name="ordinaryActivity" type="activity" draggable="true" data-show="普通活动">
<div><i class="tools ordinary-icon"></i><span>普通活动</span></div>
</div>
<div class="components-btn clearfix" name="blockActivity" type="activity" draggable="true" data-show="块活动">
<div><i class="tools block-icon"></i><span>块活动</span></div>
</div>
<div class="components-btn clearfix" name="subFlowActivity" type="activity" draggable="true" data-show="子活动">
<div><i class="tools subFlow-icon"></i><span>子活动</span></div>
</div>
<div class="components-btn clearfix" name="routeActivity" type="activity" draggable="true" data-show="路径活动">
<div><i class="tools route-icon"></i><span>路径活动</span></div>
</div>
<div class="components-btn noComponent clearfix" name="NOROUTING">
<div><i class="tools line-icon"></i><span>转移</span></div>
</div>
<div class="components-btn noComponent clearfix" name="SIMPLEROUTING">
<div><i class="tools polyline-icon"></i><span>自转移</span></div>
</div>
<div class="components-btn noComponent clearfix" name="000ROUTING">
<div><i class="tools loop-icon"></i><span>循环</span></div>
</div>
</div>
<div class="full-right tab clearfix">
<div class="ui top attached tabular mini menu">
<a class="item active" data-tab="tab_main">
<i class="remove red icon"></i>过程
</a>
</div>
<div class="ui bottom attached tab active" data-tab="tab_main">
<form id="containerForm" method="post" action="">
<div id="container" class="ui top attached tab active full-right-top view svg-container" data-tab="first">
<!-- svg -->
</div>
<div id="xpdlContainer" class="ui top attached tab view content-div" data-tab="second">
<xmp>
<!-- xpdl -->
</xmp>
</div>
<div id="xmlContainer" class="ui top attached tab view content-div" data-tab="third">
<xmp>
<!-- xml -->
</xmp>
</div>
<div class="full-right-btn ui bottom attached tabular mini menu">
<a class="item active" data-tab="first">图标视图</a>
<a class="item" data-tab="second">xpdl视图</a>
<a class="item" data-tab="third">xml视图</a>
</div>
<div id="propertiesWrapper" class="full-right-bottom">
<div class="component-name"><i class="angle double down icon"></i><span></span></div>
<div class="component-prop content-div">
<!-- activity属性 -->
</div>
</div>
<input name="xpdlcontent" type="hidden" value="">
<input name="xmlcontent" type="hidden" value="">
<input type="hidden" id="wFID" name="wFID" value="">
<input type="hidden" id="wFType" name="wFType" value="money">
<input type="hidden" id="subType" name="subType" value="">
<input type="hidden" id="depart" name="depart" value="">
<input type="hidden" id="departID" name="departID" value="">
<input type="hidden" id="formName" name="formName" value="">
<input type="hidden" id="formId" name="formId" value="">
<input type="hidden" id="formType" name="formType" value="wfd_form">
<input type="hidden" id="mode" name="mode" value="">
<input type="hidden" id="dt" name="dt" onFocus="WdatePicker({dateFmt:'dd HH:mm',skin:'blue'});" value="">
<input type="hidden" id="dataObjectID" name="dataObjectID" value="">
<input type="hidden" id="securityID" name="securityID" value="">
<input type="hidden" id="securityName" name="securityName" value="">
<input type="hidden" id="orderNo" name="orderNo" value="">
</form>
</div>
</div>
</div>
<!-- 导入导出弹出层 -->
<div class="ui segment small modal json_data">
<i class="close icon"></i>
<div class="header">
导入数据
</div>
<div class="content">
<textarea></textarea>
</div>
<div class="actions">
<div class="ui negative button">No </div>
<div class="ui positive right labeled icon button">Yes <i class="checkmark icon"></i> </div>
</div>
</div>
<!-- 右键菜单 -->
<div id="rMenu" class="ui vertical mini menu">
<a class="item" name="removeMenu">删除<i class="remove icon"></i></a>
<a class="item" name="propMenu">属性<i class="book icon"></i></a>
<a class="item" name="editMenu">编辑<i class="edit icon"></i></a>
<a class="item" name="toFront">置前<i class="object ungroup icon"></i></a>
</div>
<!-- 属性弹出层 start -->
<div class="ui coupled modal prop_node">
<i class="close cancel icon"></i>
<div class="ui pointing secondary menu">
<a class="item active" data-tab="one">常规</a>
<a class="item" data-tab="two_1">工具</a>
<a class="item hideitem" data-tab="two_2">块活动</a>
<a class="item hideitem" data-tab="two_3">子工作流</a>
<a class="item" data-tab="three">前置条件</a>
<a class="item" data-tab="four">后置条件</a>
<a class="item" data-tab="five">扩展属性集</a>
<a class="item" data-tab="six">超时限制</a>
<a class="item" data-tab="seven">高级</a>
<a class="item" data-tab="eight">监控信息</a>
</div>
<!-- 常规item start -->
<div class="ui tab segment active" data-tab="one">
<div class="ui mini form conventional">
<div class="fields">
<div class="five wide field">
<label>ID:</label>
<input name="ID" type="text" placeholder="ID">
</div>
<div class="five wide field">
<label>名称:</label>
<input name="name" type="text" placeholder="名称">
</div>
<div class="five wide field">
<label>类型:</label>
<input name="type" type="text" placeholder="类型" readonly>
</div>
</div>
<div class="ui divider hidden"></div>
<div class="field">
<label>参与者集:</label>
<div class="two fields">
<div class="five wide field definition_field">
<select class="ui search dropdown" name="definition_role">
<option value="">请选择</option>
<option value="0">(空)</option>
</select>
</div>
<div class="five wide field">
<button class="ui facebook mini button definitionBtn"><i class="write icon"></i>定义</button>
</div>
</div>
</div>
<div class="fields">
<div class="inline field">
<div class="ui checkbox isTracking">
<input type="checkbox" tabindex="0" class="hidden">
<label>是否全程跟踪</label>
<input type="hidden" name="isResponsible" value="">
</div>
</div>
<div class="inline field">
<div class="ui checkbox isReceiveTask">
<input type="checkbox" tabindex="0" class="hidden">
<label>是否自动接收任务委派</label>
<input type="hidden" name="autoAcceptAllAssignments" value="">
</div>
</div>
</div>
<div class="ui divider hidden"></div>
<div class="fields">
<div class="five wide field">
<label>开始模式:</label>
<select name="startMode" class="ui search dropdown">
<option value="">开始模式</option>
<option value="manual">手动</option>
<option value="automatic">自动</option>
</select>
</div>
<div class="five wide field">
<label>完成模式:</label>
<select name="finishMode" class="ui search dropdown">
<option value="">完成模式</option>
<option value="manual">手动</option>
<option value="automatic">自动</option>
</select>
</div>
<div class="five wide field">
<label>优先级:</label>
<input name="priority" type="text" placeholder="名称">
</div>
</div>
<div class="fields">
<div class="inline field">
<div class="ui checkbox completeAllAssignmentsDiv">
<input type="checkbox" tabindex="0" class="hidden">
<label>是否多人处理</label>
<input type="hidden" name="completeAllAssignments" value="">
</div>
</div>
<div class="inline field">
<div class="ui checkbox assignmentsOrderDiv">
<input type="checkbox" tabindex="0" class="hidden">
<label>多人处理是否顺序执行</label>
<input type="hidden" name="assignmentsOrder" value="">
</div>
</div>
<div class="inline field">
<div class="ui checkbox">
<input type="checkbox" tabindex="0" class="hidden">
<label>按参与者生成环节实例</label>
<input type="hidden" name="isMulInstance" value="">
</div>
</div>
</div>
<div class="field">
<label>描述:</label>
<textarea name="description" rows="2"></textarea>
</div>
<div class="fields">
<div class="five wide field taskAssign">
<label>任务委派规则:</label>
</div>
<div class="five wide field MustActivity">
<label>必须结束环节:</label>
<!-- select_tpl -->
</div>
</div>
</div>
</div><!-- 常规item end -->
<!-- 活动属性-工具item start -->
<div class="ui tab segment" data-tab="two_1">
<div class="ui mini form grid toolgrid">
<div class="computer only row">
<div class="twelve wide tablet computer column">
<table class="ui blue sortable selectable celled striped compact table">
<thead>
<tr>
<th class="one wide">选择</th>
<th class="two wide">应用</th>
<th class="two wide">类型</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<div class="ui radio checkbox">
<input type="radio" name="s" tabindex="0" class="hidden">
</div>
</td>
<td>1111111</td>
<td>Aell</td>
</tr>
<tr>
<td>
<div class="ui radio checkbox">
<input type="radio" name="s" tabindex="0" class="hidden">
</div>
</td>
<td>2222222</td>
<td>Bell</td>
</tr>
<tr>
<td>
<div class="ui radio checkbox">
<input type="radio" name="s" tabindex="0" class="hidden">
</div>
</td>
<td>3333333</td>
<td>Cell</td>
</tr>
</tbody>
</table>
</div>
<div class="three wide column">
<div class="ui vertical">
<button class="ui positive basic mini button toolAddBtn"><i class="icon plus"></i> 添 加</button>
<button class="ui primary basic mini button showDialog"><i class="icon write"></i> 编 辑</button>
<button class="ui negative basic mini button"><i class="icon remove"></i> 删 除</button>
</div>
</div>
</div>
<div class="toolgrid-empty"></div><!--兼容IE11-->
</div>
</div><!-- 活动属性-工具item end -->
<!-- 活动属性-块活动item start -->
<div class="ui tab segment" data-tab="two_2">
<div class="ui mini form">
<div class="five wide field">
<label>块标识:</label>
<input type="text" placeholder="块标识">
</div>
</div>
</div><!-- 活动属性-块活动item end -->
<!-- 活动属性-子活动item start -->
<div class="ui tab segment" data-tab="two_3">
<div class="ui mini form">
<div class="fields">
<div class="five wide field">
<label>工作流过程:</label>
<select class="ui search dropdown">
<option value="">选择</option>
<option value="1">过程</option>
</select>
</div>
<div class="five wide field">
<label>执行:</label>
<select class="ui search dropdown">
<option value="">选择</option>
<option value="0">(空)</option>
<option value="1">同步</option>
<option value="2">异步</option>
</select>
</div>
</div>
<div class="ui divider hidden"></div>
<div class="ui grid toolgrid">
<div class="computer only row">
<div class="twelve wide tablet computer column">
<table class="ui blue sortable selectable celled striped compact table">
<thead>
<tr>
<th class="one wide">选择</th>
<th class="two wide">应用</th>
<th class="two wide">类型</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<div class="ui radio checkbox">
<input type="radio" name="selectAnswer" tabindex="0" class="hidden">
</div>
</td>
<td>1111111</td>
<td>Aell</td>
</tr>
<tr>
<td>
<div class="ui radio checkbox">
<input type="radio" name="selectAnswer" tabindex="0" class="hidden">
</div>
</td>
<td>2222222</td>
<td>Bell</td>
</tr>
<tr>
<td>
<div class="ui radio checkbox">
<input type="radio" name="selectAnswer" tabindex="0" class="hidden">
</div>
</td>
<td>3333333</td>
<td>Cell</td>
</tr>
</tbody>
</table>
</div>
<div class="three wide column">
<div class="ui vertical">
<button class="ui positive basic mini button"><i class="icon plus"></i> 添 加</button>
<button class="ui primary basic mini button"><i class="icon write"></i> 编 辑</button>
<button class="ui negative basic mini button"><i class="icon remove"></i> 删 除</button>
</div>
</div>
</div>
</div>
</div>
</div><!-- 活动属性-子活动item end -->
<!-- 前置条件 start -->
<div class="ui tab segment" data-tab="three">
<div class="ui mini form front_condition">
<div class="five wide field">
<label>汇聚类型:</label>
<select name="convergeType" class="ui search dropdown convergeType">
<option value="">选择</option>
<option value="0">(空)</option>
<option value="AND">And</option>
<option value="XOR">Xor</option>
</select>
</div>
<div class="otherOpt">
<div class="hideDiv">
<div class="fourteen wide two fields">
<div class="four wide field syncType">
<!-- select_tpl -->
</div>
<div class="five wide field">
<input type="text" name="voteText" placeholder="">
</div>
</div>
</div>
<div class="hideDiv">
<div class="inline fields">
<label for="isCreateNew_radio">多次进入:</label>
<div class="field">
<div class="ui radio checkbox">
<input type="radio" name="isCreateNew_radio" tabindex="true" class="hidden">
<label>是</label>
</div>
</div>
<div class="field">
<div class="ui radio checkbox">
<input type="radio" name="isCreateNew_radio" tabindex="false" class="hidden">
<label>否</label>
</div>
</div>
<input type="hidden" name="isCreateNew" value="">
</div>
</div>
</div>
</div>
<div class="frontCond-empty"></div>
</div><!-- 前置条件 end -->
<!-- 后置条件 start -->
<div class="ui tab segment" data-tab="four">
<div class="ui mini form post_condition">
<div class="inline five wide field">
<label>转出类型:</label>
<select name="splitType" class="ui search dropdown">
<option value="">选择</option>
<option value="AND">And</option>
<option value="XOR">Xor</option>
</select>
</div>
<div class="ui horizontal divider">选择目标活动</div>
<div class="targetActivityShow content-div">
<div class="ui middle aligned list">
</div>
</div>
<div class="targetActivity invisible">
</div>
</div>
</div><!-- 后置条件 end -->
<!-- 扩展属性集 start -->
<div class="ui tab segment" data-tab="five">
<div class="ui mini form grid extended_attr">
<div class="computer only row">
<div class="twelve wide tablet computer column">
<table class="ui blue sortable selectable celled striped compact table">
<thead>
<tr>
<th class="one wide">选择</th>
<th class="two wide">名</th>
<th class="two wide">值</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div class="three wide column">
<div class="ui vertical">
<button class="ui positive basic mini button extendAttrAddBtn"><i class="icon plus"></i> 添 加</button>
<button class="ui primary basic mini button extendAttrEditBtn"><i class="icon write"></i> 编 辑</button>
<button class="ui negative basic mini button extendAttrDelBtn"><i class="icon remove"></i> 删 除</button>
</div>
</div>
</div>
</div>
<div class="extAttr-empty"></div>
</div><!-- 扩展属性集 end -->
<!-- 超时限制 start-->
<div class="ui tab segment" data-tab="six">
<div class="ui mini form timeout_limit">
<div class="five wide field">
<label>限制时间:</label>
<input type="text" name="limitTime" placeholder="限制时间">
</div>
<div class="five wide field">
<label>到达限制时间执行代理:</label>
<select name="limitAgentClassName" class="ui search dropdown">
<option value="">请选择</option>
<option value="">(空)</option>
<option value="workflow.sendNext">自动提交</option>
<option value="workflow.mailParty">邮件通知参与者</option>
<option value="workflow.mailPartyLeader">邮件通知参与者领导</option>
</select>
</div>
<div class="five wide field">
<label>警告时间:</label>
<input type="text" name="warnTime" placeholder="警告时间">
</div>
<div class="five wide field">
<label>到达警告时间执行代理:</label>
<select name="warnAgentClassName" class="ui search dropdown">
<option value="">请选择</option>
<option value="">(空)</option>
<option value="workflow.sendNext">自动提交</option>
<option value="workflow.mailParty">邮件通知参与者</option>
<option value="workflow.mailPartyLeader">邮件通知参与者领导</option>
</select>
</div>
<div class="ui horizontal divider">最终期限集</div>
<div class="ui grid timeout_limit_grid">
<div class="computer only row">
<div class="twelve wide tablet computer column content-div">
<table class="ui blue sortable selectable celled striped compact table">
<thead>
<tr>
<th>持续时间</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div class="three wide column">
<div class="ui vertical">
<button class="ui positive basic mini button timeoutLimitAddBtn"><i class="icon plus"></i> 增 加</button>
<button class="ui primary basic mini button timeoutLimitEditBtn"><i class="icon write"></i> 编 辑</button>
<button class="ui negative basic mini button timeoutLimitRemoveBtn"><i class="icon remove"></i> 移 走</button>
</div>
</div>
</div>
</div>
</div>
</div><!-- 超时限制 end-->
<!-- 高级 start-->
<div class="ui tab segment" data-tab="seven">
<div class="ui mini form highLevel">
<div class="five wide field">
<label>结束规则:</label>
<input type="text" name="finishRule" placeholder="结束规则">
</div>
<div class="five wide field">
<label>建立事件:</label>
<input type="text" name="activityCreateEvent" placeholder="建立事件">
</div>
<div class="five wide field">
<label>结束事件:</label>
<input type="text" name="activityEndEvent" placeholder="结束事件">
</div>
</div>
<div class="highLevel-empty"></div>
</div><!-- 高级 end-->
<!-- 监控信息 start -->
<div class="ui tab segment" data-tab="eight">
<div class="ui mini form monitorinf">
<div class="five wide field isResponsibleTem">
<label>是否为临时监控:</label>
<!-- select_tpl -->
</div>
<div class="ui grid monitorinf_grid">
<div class="computer only row">
<div class="twelve wide tablet computer column content-div">
<table class="ui blue sortable selectable celled striped compact table">
<thead>
<tr>
<th>监控者</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div class="three wide column">
<div class="ui vertical">
<button class="ui positive basic mini button monitorinfAddBtn"><i class="icon plus"></i> 增 加</button>
<button class="ui primary basic mini button monitorinfEditBtn"><i class="icon write"></i> 编 辑</button>
<button class="ui negative basic mini button monitorinfRemoveBtn"><i class="icon remove"></i> 删 除</button>
</div>
</div>
</div>
</div>
</div>
</div><!-- 监控信息 end -->
<div class="actions inverted clearfix">
<button class="ui right floated green inverted ok button">
<i class="checkmark icon"></i>确定
</button>
<button class="ui right floated red inverted cancel button">
<i class="remove icon"></i>取消
</button>
</div>
</div><!-- 属性弹出层 end -->
<!-- 活动属性-常规-定义 -->
<div class="ui coupled small modal tab conventional_definition def_common">
</div>
<!-- 活动属性-工具-添加 -->
<div class="ui coupled small modal tab segment tool_add">
<div class="ui mini form">
<div class="fields">
<div class="five wide field">
<label>类型:</label>
<select class="ui search dropdown">
<option value="">请选择</option>
<option value="1">应用</option>
<option value="2">程序</option>
</select>
</div>
<div class="ten wide field">
<label>应用:</label>
<div class="two fields">
<div class="field">
<select class="ui search dropdown">
<option value="">请选择</option>
<option value="1">修改数据</option>
<option value="2">发送邮件</option>
<option value="3">执行其它toolagent</option>
<option value="4">获取数据</option>
</select>
</div>
<div class="five wide field">
<button class="ui facebook mini button definitionBtn"><i class="write icon"></i>定义</button>
</div>
</div>
</div>
</div>
<div class="ui horizontal divider">实际参数集</div>
<div class="ui grid">
<div class="row">
<div class="ten wide tablet column">
<table class="ui blue sortable selectable celled striped compact table">
<thead>
<tr>
<th class="one wide">选择</th>
<th class="two wide">应用</th>
<th class="two wide">类型</th>
</tr>
</thead>
<tbody>
<tr id="tr1">
<td>
<div class="ui radio checkbox">
<input type="radio" name="selectAnswer" tabindex="0" class="hidden">
</div>
</td>
<td>1111111</td>
<td>Aell</td>
</tr>
</tbody>
</table>
</div>
<div class="three wide column">
<div class="ui vertical">
<button class="ui positive basic mini button actualParametersAdd1"><i class="icon plus"></i> 添 加</button>
<button class="ui primary basic mini button"><i class="icon write"></i> 编 辑</button>
<button class="ui negative basic mini button"><i class="icon remove"></i> 删 除</button>
</div>
</div>
</div>
</div>
<div class="ui divider hidden"></div>
<div class="field">
<label>描述:</label>
<textarea rows="2"></textarea>
</div>
<div class="ui horizontal divider">扩展属性集</div>
<div class="ui grid">
<div class="row">
<div class="ten wide tablet computer column">
<table class="ui blue sortable selectable celled striped compact table">
<thead>
<tr>
<th class="one wide">选择</th>
<th class="two wide">应用</th>
<th class="two wide">类型</th>
</tr>
</thead>
<tbody>
<tr id="tr1">
<td>
<div class="ui radio checkbox">
<input type="radio" name="selectAnswer" tabindex="0" class="hidden">
</div>
</td>
<td>1111111</td>
<td>Aell</td>
</tr>
</tbody>
</table>
</div>
<div class="three wide column">
<div class="ui vertical">
<button class="ui positive basic mini button actualParametersAdd2"><i class="icon plus"></i> 添 加</button>
<button class="ui primary basic mini button"><i class="icon write"></i> 编 辑</button>
<button class="ui negative basic mini button"><i class="icon remove"></i> 删 除</button>
</div>
</div>
</div>
</div>
<div class="ui divider hidden"></div>
<div class="actions inverted segment clearfix">
<button class="ui right floated green inverted ok button">
<i class="checkmark icon"></i>确定
</button>
<button class="ui right floated red inverted cancel button">
<i class="remove icon"></i>取消
</button>
</div>
</div>
</div>
<!-- 工具-添加-添加 -->
<div class="ui coupled small modal tab segment actualParametersDiv">
<div class="ui mini form">
<div class="field">
<label>实际参数:</label>
<div class="two fields">
<div class="five wide field">
<select class="ui search dropdown">
<option value="">请选择</option>
<option value="1">sourceReferenceld</option>
<option value="2">formId</option>
<option value="2">nextActivityInfo</option>
<option value="2">nextActivityName</option>
<option value="2">formType</option>
</select>
</div>
<div class="five wide field">
<button class="ui facebook mini button definitionBtn"><i class="write icon"></i>定义</button>
</div>
</div>
</div>
</div>
<div class="actions inverted segment clearfix">
<button class="ui right floated green inverted ok button">
<i class="checkmark icon"></i>确定
</button>
<button class="ui right floated red inverted cancel button">
<i class="remove icon"></i>取消
</button>
</div>
</div>
<!-- 工具-添加-添加-定义 -->
<div class="ui coupled small modal tab segment toolAddDefinition">
<div class="header">工作流相关数据集</div>
<div class="ui mini form grid">
<div class="computer only row">
<div class="twelve wide tablet computer column">
<table class="ui blue sortable selectable celled striped compact table">
<thead>
<tr>
<th class="one wide">选择</th>
<th class="two wide">ID</th>
<th class="two wide">名称</th>
<th class="two wide">数据类型</th>
</tr>
</thead>
<tbody>
<tr id="tr1">
<td>
<div class="ui radio checkbox">
<input type="radio" name="selectAnswer" tabindex="0" class="hidden">
</div>
</td>
<td>1111111</td>
<td>Aell</td>
<td>Aell</td>
</tr>
<tr>
<td>
<div class="ui radio checkbox">
<input type="radio" name="selectAnswer" tabindex="0" class="hidden">
</div>
</td>
<td>3333333</td>
<td>Cell</td>
<td>Cell</td>
</tr>
</tbody>
</table>
</div>
<div class="three wide column">
<div class="ui vertical">
<button class="ui positive basic mini button toolAddDefinitionAddBtn"><i class="icon plus"></i> 添 加</button>
<button class="ui primary basic mini button"><i class="icon write"></i> 编 辑</button>
<button class="ui negative basic mini button"><i class="icon remove"></i> 删 除</button>
</div>
</div>
</div>
</div>
<div class="ui divider hidden"></div>
<div class="actions inverted segment clearfix">
<button class="ui right floated green inverted ok button">
<i class="checkmark icon"></i>确定
</button>
<button class="ui right floated red inverted cancel button">
<i class="remove icon"></i>取消
</button>
</div>
</div>
<!-- 工具-添加-添加-定义-添加 -->
<div class="ui coupled large modal tab segment toolAddDefinitionAdd">
<i class="close icon"></i>
<div class="ui mini form">
<div class="fields">
<div class="five wide field">
<label>ID:</label>
<input type="text" placeholder="ID">
</div>
<div class="five wide field">
<label>名称:</label>
<input type="text" placeholder="名称">
</div>
<div class="five wide field">
<label>初始值:</label>
<input type="text" placeholder="初始值">
</div>
<div class="five wide field">
<label>长度:</label>
<input type="text" placeholder="长度">
</div>
</div>
<div class="five wide inline field">
<label>是排列:</label>
<select class="ui search dropdown">
<option value="">请选择</option>
<option value="0">(空)</option>
<option value="1">是</option>
<option value="2">否</option>
</select>
</div>
<div class="ui horizontal divider">类型</div>
<div class="five wide inline field">
<label>类型:</label>
<select class="ui search dropdown">
<option value="">请选择</option>
<option value="1">Declared type</option>
<option value="2">Enumeration type</option>
<option value="3">List type</option>
<option value="4">Record type</option>
<option value="5">Schema type</option>
<option value="6">Union type</option>
<option value="7">基本类型</option>
<option value="8">外部参考</option>
<option value="9">数组类型</option>
</select>
</div>
<div class="field">
<label>描述:</label>
<textarea rows="1"></textarea>
</div>
<div class="ui horizontal divider">扩展属性集</div>
<div class="ui grid">
<div class="row">
<div class="ten wide tablet computer column">
<table class="ui blue sortable selectable celled striped compact table">
<thead>
<tr>
<th class="one wide">选择</th>
<th class="two wide">应用</th>
<th class="two wide">类型</th>
</tr>
</thead>
<tbody>
<tr id="tr1">
<td>
<div class="ui radio checkbox">
<input type="radio" name="selectAnswer" tabindex="0" class="hidden">
</div>
</td>
<td>1111111</td>
<td>Aell</td>
</tr>
</tbody>
</table>
</div>
<div class="three wide column">
<div class="ui vertical">
<button class="ui positive basic mini button"><i class="icon plus"></i> 添 加</button>
<button class="ui primary basic mini button showDialog"><i class="icon write"></i> 编 辑</button>
<button class="ui negative basic mini button"><i class="icon remove"></i> 删 除</button>
</div>
</div>
</div>
</div>
<div class="ui divider hidden"></div>
<div class="actions inverted segment clearfix">
<button class="ui right floated green inverted ok button">
<i class="checkmark icon"></i>确定
</button>
<button class="ui right floated red inverted cancel button">
<i class="remove icon"></i>取消
</button>
</div>
</div>
</div>
<!-- 工具-添加-定义 -->
<div class="ui coupled small modal tab segment tooldefinition">
<div class="header">应用集-定义</div>
<div class="ui horizontal divider"></div>
<div class="ui mini form grid">
<div class="computer only row">
<div class="twelve wide tablet computer column">
<table class="ui blue sortable selectable celled striped compact table">
<thead>
<tr>
<th class="one wide">选择</th>
<th class="two wide">ID</th>
<th class="two wide">名称</th>
</tr>
</thead>
<tbody>
<tr id="tr1">
<td>
<div class="ui radio checkbox">
<input type="radio" name="selectAnswer" tabindex="0" class="hidden">
</div>
</td>
<td>1111111</td>
<td>Aell</td>
</tr>
<tr>
<td>
<div class="ui radio checkbox">
<input type="radio" name="selectAnswer" tabindex="0" class="hidden">
</div>
</td>
<td>2222222</td>
<td>Bell</td>
</tr>
<tr>
<td>
<div class="ui radio checkbox">
<input type="radio" name="selectAnswer" tabindex="0" class="hidden">
</div>
</td>
<td>3333333</td>
<td>Cell</td>
</tr>
</tbody>
</table>
</div>
<div class="three wide column">
<div class="ui vertical">
<button class="ui positive basic mini button tooldefinitionAddBtn"><i class="icon plus"></i> 添 加</button>
<button class="ui primary basic mini button"><i class="icon write"></i> 编 辑</button>
<button class="ui negative basic mini button"><i class="icon remove"></i> 删 除</button>
</div>
</div>
</div>
</div>
<div class="ui horizontal divider"></div>
<div class="actions inverted segment clearfix">
<button class="ui right floated green inverted ok button">
<i class="checkmark icon"></i>确定
</button>
<button class="ui right floated red inverted cancel button">
<i class="remove icon"></i>取消
</button>
</div>
</div>
<!-- 工具-添加-定义-添加 -->
<div class="ui coupled large modal tab segment tooldefinition_add">
<div class="ui mini form">