mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-26 08:16:47 +08:00
59 lines
1.2 KiB
HTML
59 lines
1.2 KiB
HTML
<html>
|
|
|
|
<head>
|
|
<!--
|
|
required editor styles
|
|
-->
|
|
<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;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="form"></div>
|
|
|
|
<div>
|
|
<div class="r btn-group">
|
|
<button type="button" class="btn btn-white ">返回</button>
|
|
<button type="button" class="btn btn-primary" style="margin-left:10px">
|
|
保存
|
|
</button>
|
|
|
|
</div>
|
|
</div>
|
|
<script src="js/form-editor.umd.js"></script>
|
|
<script src="/vcCore/vcFramework.js"></script>
|
|
<script src="editor.js"></script>
|
|
</body>
|
|
|
|
</html> |