38 lines
1.3 KiB
HTML
38 lines
1.3 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-img-edit" th:object="${clewImg}">
|
||
|
|
<input name="id" th:field="*{id}" type="hidden">
|
||
|
|
<div class="form-group">
|
||
|
|
<label class="col-sm-3 control-label">图片链接:</label>
|
||
|
|
<div class="col-sm-8">
|
||
|
|
<input name="imgUrl" th:field="*{imgUrl}" class="form-control" type="text">
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div class="form-group">
|
||
|
|
<label class="col-sm-3 control-label">备注:</label>
|
||
|
|
<div class="col-sm-8">
|
||
|
|
<input name="remark" th:field="*{remark}" class="form-control" type="text">
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</form>
|
||
|
|
</div>
|
||
|
|
<th:block th:include="include :: footer" />
|
||
|
|
<script th:inline="javascript">
|
||
|
|
var prefix = ctx + "system/img";
|
||
|
|
$("#form-img-edit").validate({
|
||
|
|
focusCleanup: true
|
||
|
|
});
|
||
|
|
|
||
|
|
function submitHandler() {
|
||
|
|
if ($.validate.form()) {
|
||
|
|
$.operate.save(prefix + "/edit", $('#form-img-edit').serialize());
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
</body>
|
||
|
|
</html>
|