|
|
|
@ -21,7 +21,8 @@
|
|
|
|
|
<select name="deviceTypeName" id="deviceTypeName" class="form-control m-b"
|
|
|
|
|
th:with="type=${@baseDeviceTypeService.selectBaseDeviceTypeList(null)}">
|
|
|
|
|
<option value=""></option>
|
|
|
|
|
<option th:each="dict : ${type}" th:text="${dict.deviceTypeName}" th:value="${dict.deviceTypeName}"></option>
|
|
|
|
|
<option th:each="dict : ${type}" th:text="${dict.deviceTypeName}"
|
|
|
|
|
th:value="${dict.deviceTypeName}"></option>
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
@ -44,20 +45,15 @@
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label class="col-sm-3 control-label">设备描述:</label>
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
<textarea name="deviceFunction" class="form-control" type="text"></textarea>
|
|
|
|
|
</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" name="modifyContent">
|
|
|
|
|
<div class="summernote" id="modifyContent"></div>
|
|
|
|
|
<input name="deviceFunction" class="form-control" type="hidden">
|
|
|
|
|
<div class="summernote" id="deviceFunction"></div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label class="col-sm-3 control-label">设备参数:</label>
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
<textarea name="deviceParam" class="form-control" type="text"></textarea>
|
|
|
|
|
<input class="form-control" type="hidden" name="deviceParam">
|
|
|
|
|
<div class="summernote" id="deviceParam"></div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
@ -67,11 +63,7 @@
|
|
|
|
|
<th:block th:include="include :: bootstrap-fileinput-js"/>
|
|
|
|
|
<th:block th:include="include :: summernote-js"/>
|
|
|
|
|
<script th:inline="javascript">
|
|
|
|
|
$(document).ready(function () {
|
|
|
|
|
$('.summernote').summernote({
|
|
|
|
|
lang: 'zh-CN'
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
var prefix = ctx + "manage/base_device_info"
|
|
|
|
|
$("#form-base_device_info-add").validate({
|
|
|
|
|
focusCleanup: true
|
|
|
|
@ -105,6 +97,41 @@
|
|
|
|
|
allowClear: true
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
$(function() {
|
|
|
|
|
$('.summernote').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("图片上传失败。");
|
|
|
|
|
// }
|
|
|
|
|
// });
|
|
|
|
|
// }
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|