unis_sip/src/main/resources/templates/vm/html/add.html.vm

30 lines
1.1 KiB
Plaintext
Raw Normal View History

<!DOCTYPE HTML>
<html lang="zh" xmlns:th="http://www.thymeleaf.org">
2018-04-22 16:00:29 +00:00
<meta charset="utf-8">
<head th:include="include :: header"></head>
<body class="white-bg">
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
<form class="form-horizontal m" id="form-${classname}-add">
2018-05-20 01:25:01 +00:00
#foreach($column in $columns)
#if($column.columnName != $primaryKey.columnName)
<div class="form-group">
<label class="col-sm-3 control-label">${column.columnComment}</label>
<div class="col-sm-8">
<input id="${column.attrname}" name="${column.attrname}" class="form-control" type="text">
</div>
</div>
#end
#end
<div class="form-group">
<div class="form-control-static col-sm-offset-9">
<button type="submit" class="btn btn-primary">提交</button>
<button th:onclick="'javascript:layer_close()'" class="btn btn-danger" type="button">关闭</button>
</div>
</div>
</form>
</div>
2018-04-22 16:00:29 +00:00
<div th:include="include::footer"></div>
2018-06-15 07:25:59 +00:00
<script th:src="@{/ruoyi/${moduleName}/${classname}/add.js}"></script>
2018-04-22 16:00:29 +00:00
</body>
</html>