修改 左侧

master
wangh 1 year ago
parent a490c12a4e
commit e901d4177b

@ -59,7 +59,7 @@ body {
background-size: 100% 100%;
background-repeat: no-repeat;
position: absolute;
right: 9vw;
right: 7.5vw;
top: 19%;
width: 16vw;
height: 22.9vw;

@ -25,7 +25,6 @@
<select id="queryDeviceState" resultType="com.haiwei.manage.domain.ParamVo">
SELECT name,
DataType as data
FROM EEquipmentState
where PID = 7

@ -1,13 +1,13 @@
<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
<html lang="zh" xmlns:th="http://www.thymeleaf.org">
<head>
<th:block th:include="include :: header('新增设备信息维护')" />
<th:block th:include="include :: header('新增设备信息维护')"/>
<th:block th:include="include :: bootstrap-fileinput-css"/>
<th:block th:include="include :: select2-css" />
<th:block th:include="include :: summernote-css" />
<th:block th:include="include :: select2-css"/>
<th:block th:include="include :: summernote-css"/>
</head>
<body class="white-bg">
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
<form class="form-horizontal m" id="form-base_device_info-add">
<div class="form-group">
<label class="col-sm-3 control-label">设备名称:</label>
@ -21,57 +21,49 @@
<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>
</div>
<!-- <div class="form-group"> -->
<!-- <label class="col-sm-3 control-label">设备模型图片:</label>-->
<!-- <div class="col-sm-8">-->
<!-- <input type="hidden" name="deviceMode">-->
<!-- <div class="file-loading">-->
<!-- <input class="form-control file-upload" id="deviceMode" name="file" type="file">-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="form-group"> -->
<!-- <label class="col-sm-3 control-label">设备规格:</label>-->
<!-- <div class="col-sm-8">-->
<!-- <input name="deviceSpe" 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" name="deviceMode">-->
<!-- <div class="file-loading">-->
<!-- <input class="form-control file-upload" id="deviceMode" name="file" type="file">-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="form-group"> -->
<!-- <label class="col-sm-3 control-label">设备规格:</label>-->
<!-- <div class="col-sm-8">-->
<!-- <input name="deviceSpe" class="form-control" type="text">-->
<!-- </div>-->
<!-- </div>-->
<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>
</div>
<th:block th:include="include :: footer" />
<th:block th:include="include :: select2-js" />
<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'
});
});
</div>
<th:block th:include="include :: footer"/>
<th:block th:include="include :: select2-js"/>
<th:block th:include="include :: bootstrap-fileinput-js"/>
<th:block th:include="include :: summernote-js"/>
<script th:inline="javascript">
var prefix = ctx + "manage/base_device_info"
$("#form-base_device_info-add").validate({
focusCleanup: true
@ -99,12 +91,47 @@
$("input[name='" + event.currentTarget.id + "']").val('')
})
$(function() {
$(function () {
$('#deviceTypeName').select2({
placeholder: "请选择设备类型",
allowClear: true
});
})
</script>
$(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>

@ -3,6 +3,7 @@
<head>
<th:block th:include="include :: header('修改设备信息维护')" />
<th:block th:include="include :: bootstrap-fileinput-css"/>
<th:block th:include="include :: summernote-css"/>
</head>
<body class="white-bg">
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
@ -42,19 +43,22 @@
<div class="form-group">
<label class="col-sm-3 control-label">设备描述:</label>
<div class="col-sm-8">
<input name="deviceFunction" th:field="*{deviceFunction}" class="form-control" type="text">
<input name="deviceFunction" th:field="*{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">
<input name="deviceParam" th:field="*{deviceParam}" class="form-control" type="text">
<input name="deviceParam" th:field="*{deviceParam}" class="form-control" type="hidden">
<div class="summernote" id="deviceParam"></div>
</div>
</div>
</form>
</div>
<th:block th:include="include :: footer" />
<th:block th:include="include :: bootstrap-fileinput-js"/>
<th:block th:include="include :: summernote-js"/>
<script th:inline="javascript">
var prefix = ctx + "manage/base_device_info";
$("#form-base_device_info-edit").validate({
@ -82,6 +86,22 @@
})
$(this).fileinput('_initFileActions');
});
$(function() {
$('.summernote').each(function(i) {
$('#' + this.id).summernote({
lang: 'zh-CN',
dialogsInBody: true,
callbacks: {
onChange: function(contents, $edittable) {
$("input[name='" + this.id + "']").val(contents);
},
}
});
var content = $("input[name='" + this.id + "']").val();
$('#' + this.id).summernote('code', content);
})
});
</script>
</body>
</html>
Loading…
Cancel
Save