46 lines
1.7 KiB
HTML
46 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
|
|
<head>
|
|
<th:block 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-plat-add">
|
|
<div class="form-group">
|
|
<label class="col-sm-3 control-label is-required">用户:</label>
|
|
<div class="col-sm-8">
|
|
<input name="loginName" class="form-control" type="text" placeholder="请输入用户名称" required>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label class="col-sm-3 control-label">平台公司:</label>
|
|
<div class="col-sm-8" th:with="type=${@dict.getPlat()}">
|
|
<label th:each="dict : ${type}" class="check-box">
|
|
<input name="dept" type="checkbox" th:value="${dict.dictValue}" th:text="${dict.dictLabel}">
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label class="col-sm-3 control-label">备注:</label>
|
|
<div class="col-sm-8">
|
|
<textarea name="remark" class="form-control"></textarea>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<th:block th:include="include :: footer" />
|
|
<script th:inline="javascript">
|
|
var prefix = ctx + "system/plat"
|
|
$("#form-plat-add").validate({
|
|
focusCleanup: true
|
|
});
|
|
|
|
function submitHandler() {
|
|
if ($.validate.form()) {
|
|
$.operate.save(prefix + "/add", $('#form-plat-add').serialize());
|
|
}
|
|
}
|
|
</script>
|
|
</body>
|
|
</html> |