parent
172eb495a8
commit
079bd65cde
|
|
@ -41,40 +41,40 @@
|
|||
}
|
||||
}
|
||||
|
||||
// $(function() {
|
||||
// $('.summernote').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("图片上传失败。");
|
||||
// }
|
||||
// });
|
||||
// }
|
||||
// }
|
||||
// });
|
||||
// });
|
||||
$(function() {
|
||||
$('.summernote').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("图片上传失败。");
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -34,44 +34,44 @@
|
|||
$.operate.save(prefix + "/edit", $('#form-carousel-edit').serialize());
|
||||
}
|
||||
}
|
||||
// $(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);
|
||||
// })
|
||||
// });
|
||||
$(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);
|
||||
})
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -73,40 +73,40 @@
|
|||
}
|
||||
}
|
||||
|
||||
// $(function() {
|
||||
// $('.summernote').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("图片上传失败。");
|
||||
// }
|
||||
// });
|
||||
// }
|
||||
// }
|
||||
// });
|
||||
// });
|
||||
$(function() {
|
||||
$('.summernote').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("图片上传失败。");
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -74,44 +74,44 @@
|
|||
}
|
||||
}
|
||||
|
||||
// $(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);
|
||||
// })
|
||||
// });
|
||||
$(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);
|
||||
})
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -35,11 +35,10 @@
|
|||
<div class="form-group">
|
||||
<label class="col-sm-3 control-label">状态:</label>
|
||||
<div class="col-sm-8">
|
||||
<div class="radio-box">
|
||||
<input type="radio" name="status" value="">
|
||||
<label th:for="status" th:text="未知"></label>
|
||||
<div class="radio-box" th:each="dict : ${@dict.getType('sys_normal_disable')}">
|
||||
<input type="radio" th:id="${dict.dictCode}" name="status" th:value="${dict.dictValue}" th:checked="${dict.default}">
|
||||
<label th:for="${dict.dictCode}" th:text="${dict.dictLabel}"></label>
|
||||
</div>
|
||||
<span class="help-block m-b-none"><i class="fa fa-info-circle"></i> 代码生成请选择字典属性</span>
|
||||
</div>
|
||||
</div>
|
||||
<!--<div class="form-group">
|
||||
|
|
|
|||
|
|
@ -27,20 +27,19 @@
|
|||
<div class="summernote" id="content"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<!-- <div class="form-group">
|
||||
<label class="col-sm-3 control-label">点击量:</label>
|
||||
<div class="col-sm-8">
|
||||
<input name="hits" th:field="*{hits}" class="form-control" type="text">
|
||||
</div>
|
||||
</div>
|
||||
</div>-->
|
||||
<div class="form-group">
|
||||
<label class="col-sm-3 control-label">状态:</label>
|
||||
<div class="col-sm-8">
|
||||
<div class="radio-box">
|
||||
<input type="radio" name="status" value="">
|
||||
<label th:for="status" th:text="未知"></label>
|
||||
<div class="radio-box" th:each="dict : ${@dict.getType('sys_normal_disable')}">
|
||||
<input type="radio" th:id="${dict.dictCode}" name="status" th:value="${dict.dictValue}" th:checked="${dict.default}">
|
||||
<label th:for="${dict.dictCode}" th:text="${dict.dictLabel}"></label>
|
||||
</div>
|
||||
<span class="help-block m-b-none"><i class="fa fa-info-circle"></i> 代码生成请选择字典属性</span>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
|
|
|||
|
|
@ -18,15 +18,15 @@
|
|||
<label>简介:</label>
|
||||
<input type="text" name="introduction"/>
|
||||
</li>
|
||||
<li>
|
||||
<!--<li>
|
||||
<label>点击量:</label>
|
||||
<input type="text" name="hits"/>
|
||||
</li>
|
||||
</li>-->
|
||||
<li>
|
||||
<label>状态:</label>
|
||||
<select name="status">
|
||||
<select name="status" th:with="type=${@dict.getType('sys_normal_disable')}">
|
||||
<option value="">所有</option>
|
||||
<option value="-1">代码生成请选择字典属性</option>
|
||||
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
|
||||
</select>
|
||||
</li>
|
||||
<li>
|
||||
|
|
@ -48,9 +48,9 @@
|
|||
<a class="btn btn-danger multiple disabled" onclick="$.operate.removeAll()" shiro:hasPermission="front:information:remove">
|
||||
<i class="fa fa-remove"></i> 删除
|
||||
</a>
|
||||
<a class="btn btn-warning" onclick="$.table.exportExcel()" shiro:hasPermission="front:information:export">
|
||||
<!--<a class="btn btn-warning" onclick="$.table.exportExcel()" shiro:hasPermission="front:information:export">
|
||||
<i class="fa fa-download"></i> 导出
|
||||
</a>
|
||||
</a>-->
|
||||
</div>
|
||||
<div class="col-sm-12 select-table table-striped">
|
||||
<table id="bootstrap-table"></table>
|
||||
|
|
@ -61,6 +61,7 @@
|
|||
<script th:inline="javascript">
|
||||
var editFlag = [[${@permission.hasPermi('front:information:edit')}]];
|
||||
var removeFlag = [[${@permission.hasPermi('front:information:remove')}]];
|
||||
var dictStatus = [[${@dict.getType('sys_normal_disable')}]];
|
||||
var prefix = ctx + "front/information";
|
||||
|
||||
$(function() {
|
||||
|
|
@ -97,7 +98,10 @@
|
|||
},
|
||||
{
|
||||
field: 'status',
|
||||
title: '状态'
|
||||
title: '状态',
|
||||
formatter: function(value, item, index) {
|
||||
return $.table.selectDictLabel(dictStatus, item.status);
|
||||
}
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
|
|
|
|||
|
|
@ -69,40 +69,40 @@
|
|||
$.operate.save(prefix + "/add", $('#form-recruitment-add').serialize());
|
||||
}
|
||||
}
|
||||
// $(function() {
|
||||
// $('.summernote').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("图片上传失败。");
|
||||
// }
|
||||
// });
|
||||
// }
|
||||
// }
|
||||
// });
|
||||
// });
|
||||
$(function() {
|
||||
$('.summernote').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("图片上传失败。");
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -70,44 +70,44 @@
|
|||
$.operate.save(prefix + "/edit", $('#form-recruitment-edit').serialize());
|
||||
}
|
||||
}
|
||||
// $(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);
|
||||
// })
|
||||
// });
|
||||
$(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);
|
||||
})
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Reference in New Issue