zhangjiaqing
8 天以前 1cef3adee31c6934c0da4b4f0b8a6f5ac03b364f
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
<!DOCTYPE html>
<html lang="en">
 
<head>
    <meta charset="utf-8">
    <title>bpmn-js流程图</title>
    <vc:create path="frame/commonTop" location="head"></vc:create>
 
    <link rel="stylesheet" href="vendor/bpmn-js/assets/diagram-js.css" />
    <link rel="stylesheet" href="vendor/bpmn-js/assets/bpmn-font/css/bpmn-embedded.css" />
    <link rel="stylesheet" href="vendor/bpmn-js-properties-panel/assets/bpmn-js-properties-panel.css" />
    <link rel="stylesheet" href="/css/bootstrap/bootstrap.min.css" />
    <link href="/css/plugins/jsTree/style.min.css" rel="stylesheet">
    <link rel="stylesheet" href="/css/vc-ui.css" />
    <script src="/js/bootstrap/jquery-3.3.1.min.js"></script>
    <script src="/js/vue/vue.min.js"></script>
    <script src="/js/vue/vue-resource.min.js"></script>
    <script src="/js/bootstrap/bootstrap.min.js"></script>
    <script src="/js/plugins/jsTree/jstree.min.js"></script>
    <link rel="stylesheet" href="app.css" />
 
    <style>
        body {
            background: #fff;
        }
    </style>
</head>
 
<body>
    <vc:create path="frame/bodyTop"></vc:create>
    <div class="content with-diagram" id="js-drop-zone">
 
        <div class="message error">
            <div class="note">
                <p>出错了.</p>
                <div class="details">
                    <span>Import Error Details</span>
                    <pre></pre>
                </div>
            </div>
        </div>
        <div class="canvas" id="js-canvas"></div>
        <div class="properties-panel-parent" id="js-properties-panel"></div>
 
        <div id="component">
            <vc:create path="property/bpmnjsInit"></vc:create>
        </div>
    </div>
 
    <ul class="buttons">
        <li>
            <a id="js-download-diagram" href title="download BPMN diagram">
        BPMN 下载
      </a>
        </li>
        <li>
            <a id="js-download-svg" href title="download as SVG image">
        SVG 图片下载
      </a>
        </li>
        <li>
            <a id="js-save-diagram" class="active" style="cursor:pointer" title="保存">
        保存
      </a>
        </li>
        <li>
            <a href="javascript:void(0)" onclick="_closeBpmnjs()" class="active" style="cursor:pointer" title="返回">
        返回
      </a>
        </li>
    </ul>
 
    <script src="app.js"></script>
    <script src="/vcCore/vcFramework.js"></script>
    <script src="index.js"></script>
 
    <style>
        .no_display {
            display: none;
        }
    </style>
 
</html>