111 lines
4.7 KiB
HTML
111 lines
4.7 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
|
||
<head>
|
||
<th:block th:include="include :: header('修改基础指标')" />
|
||
<th:block th:include="include :: summernote-css" />
|
||
</head>
|
||
<body class="white-bg">
|
||
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
|
||
<form class="form-horizontal m" id="form-s-edit" th:object="${indexS}">
|
||
<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="name" th:field="*{name}" class="form-control" type="text">
|
||
</div>
|
||
</div>
|
||
<div class="form-group">
|
||
<label class="col-sm-3 control-label">sql:</label>
|
||
<div class="col-sm-8">
|
||
<textarea name="squery" class="form-control">[[*{squery}]]</textarea>
|
||
</div>
|
||
</div>
|
||
<div class="form-group">
|
||
<label class="col-sm-3 control-label">合计列:</label>
|
||
<div class="col-sm-8">
|
||
<input name="sumcol" th:field="*{sumcol}" 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="unit" th:field="*{unit}" 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="sort" th:field="*{sort}" 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>
|
||
<div class="form-group">
|
||
<label class="col-sm-3 control-label">举例:</label>
|
||
<div class="col-sm-8">
|
||
<input type="hidden" class="form-control" th:field="*{sample}">
|
||
<div class="summernote" id="sample"></div>
|
||
</div>
|
||
</div>
|
||
</form>
|
||
</div>
|
||
<th:block th:include="include :: footer" />
|
||
<th:block th:include="include :: summernote-js" />
|
||
<script th:inline="javascript">
|
||
var prefix = ctx + "index/s";
|
||
$("#form-s-edit").validate({
|
||
focusCleanup: true
|
||
});
|
||
|
||
function submitHandler() {
|
||
if ($.validate.form()) {
|
||
$.operate.save(prefix + "/edit", $('#form-s-edit').serialize());
|
||
}
|
||
}
|
||
|
||
$(function() {
|
||
$('.summernote').each(function(i) {
|
||
$('#' + this.id).summernote({
|
||
lang: 'zh-CN',
|
||
dialogsInBody: true,
|
||
callbacks: {
|
||
onChange: function(contents, $edittable) {
|
||
$("input[name='" + this.id + "']").val(contents);
|
||
},
|
||
onImageUpload: function(files) {
|
||
var obj = this;
|
||
var data = new FormData();
|
||
data.append("file", files[0]);
|
||
$.ajax({
|
||
type: "post",
|
||
url: ctx + "common/upload",
|
||
data: data,
|
||
cache: false,
|
||
contentType: false,
|
||
processData: false,
|
||
dataType: 'json',
|
||
success: function(result) {
|
||
if (result.code == web_status.SUCCESS) {
|
||
$('#' + obj.id).summernote('insertImage', result.url);
|
||
} else {
|
||
$.modal.alertError(result.msg);
|
||
}
|
||
},
|
||
error: function(error) {
|
||
$.modal.alertWarning("图片上传失败。");
|
||
}
|
||
});
|
||
}
|
||
}
|
||
});
|
||
var content = $("input[name='" + this.id + "']").val();
|
||
$('#' + this.id).summernote('code', content);
|
||
})
|
||
});
|
||
</script>
|
||
</body>
|
||
</html> |