修改 左侧
parent
a490c12a4e
commit
e901d4177b
@ -1,110 +1,137 @@
|
||||
<!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">
|
||||
<form class="form-horizontal m" id="form-base_device_info-add">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-3 control-label">设备名称:</label>
|
||||
<div class="col-sm-8">
|
||||
<input name="deviceName" class="form-control" type="text">
|
||||
</div>
|
||||
<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>
|
||||
<div class="col-sm-8">
|
||||
<input name="deviceName" class="form-control" type="text">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-3 control-label">设备类型:</label>
|
||||
<div class="col-sm-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>
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-3 control-label">设备类型:</label>
|
||||
<div class="col-sm-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>
|
||||
</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">
|
||||
<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" 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 name="deviceFunction" class="form-control" type="hidden">
|
||||
<div class="summernote" id="deviceFunction"></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>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-3 control-label">设备参数:</label>
|
||||
<div class="col-sm-8">
|
||||
<input class="form-control" type="hidden" name="deviceParam">
|
||||
<div class="summernote" id="deviceParam"></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>
|
||||
</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'
|
||||
});
|
||||
});
|
||||
var prefix = ctx + "manage/base_device_info"
|
||||
$("#form-base_device_info-add").validate({
|
||||
focusCleanup: true
|
||||
});
|
||||
</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">
|
||||
|
||||
function submitHandler() {
|
||||
var res= $('#deviceTypeName').select2('val');
|
||||
console.log(res)
|
||||
if(res==undefined || res == '') {
|
||||
$.modal.alertError("你没有选中任何项");
|
||||
return
|
||||
}
|
||||
if ($.validate.form()) {
|
||||
$.operate.save(prefix + "/add", $('#form-base_device_info-add').serialize());
|
||||
}
|
||||
var prefix = ctx + "manage/base_device_info"
|
||||
$("#form-base_device_info-add").validate({
|
||||
focusCleanup: true
|
||||
});
|
||||
|
||||
function submitHandler() {
|
||||
var res= $('#deviceTypeName').select2('val');
|
||||
console.log(res)
|
||||
if(res==undefined || res == '') {
|
||||
$.modal.alertError("你没有选中任何项");
|
||||
return
|
||||
}
|
||||
if ($.validate.form()) {
|
||||
$.operate.save(prefix + "/add", $('#form-base_device_info-add').serialize());
|
||||
}
|
||||
}
|
||||
|
||||
$(".file-upload").fileinput({
|
||||
uploadUrl: '/common/upload',
|
||||
maxFileCount: 1,
|
||||
autoReplace: true
|
||||
}).on('fileuploaded', function (event, data, previewId, index) {
|
||||
$("input[name='" + event.currentTarget.id + "']").val(data.response.url)
|
||||
}).on('fileremoved', function (event, id, index) {
|
||||
$("input[name='" + event.currentTarget.id + "']").val('')
|
||||
})
|
||||
$(".file-upload").fileinput({
|
||||
uploadUrl: '/common/upload',
|
||||
maxFileCount: 1,
|
||||
autoReplace: true
|
||||
}).on('fileuploaded', function (event, data, previewId, index) {
|
||||
$("input[name='" + event.currentTarget.id + "']").val(data.response.url)
|
||||
}).on('fileremoved', function (event, id, index) {
|
||||
$("input[name='" + event.currentTarget.id + "']").val('')
|
||||
})
|
||||
|
||||
$(function() {
|
||||
$('#deviceTypeName').select2({
|
||||
placeholder: "请选择设备类型",
|
||||
allowClear: true
|
||||
});
|
||||
})
|
||||
</script>
|
||||
$(function () {
|
||||
$('#deviceTypeName').select2({
|
||||
placeholder: "请选择设备类型",
|
||||
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>
|
Loading…
Reference in New Issue