|
@@ -14,6 +14,12 @@
|
|
|
#break
|
|
|
#end
|
|
|
#end
|
|
|
+#foreach($column in $columns)
|
|
|
+#if($column.insert && !$column.superColumn && !$column.pk && $column.htmlType == "summernote")
|
|
|
+ <th:block th:include="include :: summernote-css" />
|
|
|
+#break
|
|
|
+#end
|
|
|
+#end
|
|
|
</head>
|
|
|
<body class="white-bg">
|
|
|
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
|
|
@@ -62,6 +68,14 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
+#elseif($column.htmlType == "summernote")
|
|
|
+ <div class="form-group">
|
|
|
+ <label class="col-sm-3 control-label#if($column.required) is-required#end">${comment}:</label>
|
|
|
+ <div class="col-sm-8">
|
|
|
+ <input type="hidden" class="form-control" th:field="*{${field}}">
|
|
|
+ <div class="summernote" id="${field}"></div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
#elseif($column.htmlType == "select" && "" != $dictType)
|
|
|
<div class="form-group">
|
|
|
<label class="col-sm-3 control-label">${comment}:</label>
|
|
@@ -168,6 +182,12 @@
|
|
|
<th:block th:include="include :: bootstrap-fileinput-js"/>
|
|
|
#break
|
|
|
#end
|
|
|
+#end
|
|
|
+#foreach($column in $columns)
|
|
|
+#if($column.insert && !$column.superColumn && !$column.pk && $column.htmlType == "summernote")
|
|
|
+ <th:block th:include="include :: summernote-js" />
|
|
|
+#break
|
|
|
+#end
|
|
|
#end
|
|
|
<script th:inline="javascript">
|
|
|
var prefix = ctx + "${moduleName}/${businessName}";
|
|
@@ -218,6 +238,50 @@
|
|
|
#break
|
|
|
#end
|
|
|
#end
|
|
|
+#foreach($column in $columns)
|
|
|
+#if($column.edit && !$column.superColumn && !$column.pk && $column.htmlType == "summernote")
|
|
|
+
|
|
|
+ $(function() {
|
|
|
+ $('.summernote').each(function(i) {
|
|
|
+ $('#' + this.id).summernote({
|
|
|
+ lang: 'zh-CN',
|
|
|
+ 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);
|
|
|
+ })
|
|
|
+ });
|
|
|
+#break
|
|
|
+#end
|
|
|
+#end
|
|
|
#if($table.tree)
|
|
|
|
|
|
/*${functionName}-新增-选择父部门树*/
|