editor.html 1.59 KB
<html>

<head>
    <!--
      required editor styles
    -->
    <meta charset="UTF-8">
    <link rel="stylesheet" href="/css/bootstrap/bootstrap.min.css" />
    <link rel="stylesheet" href="/css/vc-ui.css" />
    <link rel="stylesheet" href="css/form-js.css">
    <link rel="stylesheet" href="css/form-js-editor.css">
    <link rel="stylesheet" href="css/dragula.css">
    <script src="/js/vue/vue.min.js"></script>
    <script src="/js/vue/vue-resource.min.js"></script>
    <style>
        body,
        html {
            margin: 0;
            padding: 0;
            font-family: sans-serif;
        }
        
        #form {
            max-width: 100%;
        }
        
        .r {
            position: fixed;
            margin: auto;
            left: 0;
            right: 0;
            bottom: 20px;
            width: 300px;
            text-align: center;
        }
        
        body {
            background: #fff;
        }
        
        .no_display {
            display: none;
        }
    </style>
</head>

<body>
    <vc:create path="frame/bodyTop"></vc:create>
    <div id="component">
    </div>
    <div id="form"></div>

    <div>
        <div class="r btn-group">
            <button type="button" class="btn btn-white " onclick="_closeBpmnjs()">返回</button>
            <button type="button" class="btn btn-primary" onclick="_doSaveDiagram()" style="margin-left:10px">
        保存
      </button>

        </div>
    </div>
    <script src="js/form-editor.umd.js"></script>
    <script src="/js/vcCore/vcFramework.js"></script>
    <script src="editor.js"></script>
</body>

</html>