first commit
This commit is contained in:
252
WebRoot/jsp/maintenance/maintainPlanAdd.jsp
Normal file
252
WebRoot/jsp/maintenance/maintainPlanAdd.jsp
Normal file
@ -0,0 +1,252 @@
|
||||
<%@ page language="java" pageEncoding="UTF-8"%>
|
||||
<style type="text/css">
|
||||
.select2-container .select2-selection--single{
|
||||
height:34px;
|
||||
line-height: 34px;
|
||||
}
|
||||
.select2-selection__arrow{
|
||||
margin-top:3px;
|
||||
}
|
||||
</style>
|
||||
<script type="text/javascript">
|
||||
|
||||
function dosave() {
|
||||
$("#subForm").bootstrapValidator('validate');//提交验证
|
||||
if ($("#subForm").data('bootstrapValidator').isValid()) {//获取验证结果,如果成功,执行下面代码
|
||||
$.post(ext.contextPath + "/maintenance/maintainPlan/dosave.do", $("#subForm").serialize(), function(data) {
|
||||
if (data.res == 1){
|
||||
$("#table").bootstrapTable('refresh');
|
||||
closeModal("subModal");
|
||||
}else if(data.res == 0){
|
||||
showAlert('d','保存失败');
|
||||
}else{
|
||||
showAlert('d',data.res);
|
||||
}
|
||||
},'json');
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
$("#subForm").bootstrapValidator({
|
||||
live: 'disabled',//验证时机,enabled是内容有变化就验证(默认),disabled和submitted是提交再验证
|
||||
fields: {
|
||||
maintainerid: {
|
||||
validators: {
|
||||
notEmpty: {
|
||||
message: '维护商不能为空'
|
||||
}
|
||||
}
|
||||
},
|
||||
companyid: {
|
||||
validators: {
|
||||
notEmpty: {
|
||||
message: '客户公司不能为空'
|
||||
}
|
||||
}
|
||||
},
|
||||
type: {
|
||||
validators: {
|
||||
notEmpty: {
|
||||
message: '类别不能为空'
|
||||
}
|
||||
}
|
||||
},
|
||||
sdt: {
|
||||
validators: {
|
||||
notEmpty: {
|
||||
message: '起始日期不能为空'
|
||||
}
|
||||
}
|
||||
},
|
||||
edt: {
|
||||
validators: {
|
||||
notEmpty: {
|
||||
message: '结束日期不能为空'
|
||||
}
|
||||
}
|
||||
},
|
||||
maintaincontent: {
|
||||
validators: {
|
||||
notEmpty: {
|
||||
message: '保养内容不能为空'
|
||||
}
|
||||
}
|
||||
},
|
||||
}
|
||||
});
|
||||
//选择维护商类型
|
||||
$(function() {
|
||||
$.post(ext.contextPath + "/user/getUnitsByUserId4Select.do", {}, function(data) {
|
||||
|
||||
var selelct =$("#maintainerid").select2({
|
||||
data: data,
|
||||
placeholder:'请选择',//默认文字提示
|
||||
allowClear: false,//允许清空
|
||||
escapeMarkup: function (markup) { return markup; }, // 自定义格式化防止xss注入
|
||||
language: "zh-CN",
|
||||
minimumInputLength: 0,
|
||||
minimumResultsForSearch: 10,//数据超过十个启用搜索框
|
||||
formatResult: function formatRepo(repo){return repo.text;}, // 函数用来渲染结果
|
||||
formatSelection: function formatRepoSelection(repo){return repo.text;} // 函数用于呈现当前的选择
|
||||
});
|
||||
|
||||
if(data.length==1){
|
||||
//选择厂区为一个厂时隐藏选择框
|
||||
selelct.val(data[0].id).trigger("change");
|
||||
//selelct.attr("disabled","disabled");
|
||||
$("#maintainerid").next().css("display", "none");
|
||||
$("#maintainerName").text(data[0].text);
|
||||
}else{
|
||||
//selelct.val("").trigger("change");
|
||||
// $("#companyname").attr("disabled","disabled");
|
||||
$("#maintainerName").css("display", "none");
|
||||
}
|
||||
},'json');
|
||||
$.post(ext.contextPath + "/user/getSearchBizsByUserId4Select.do", {}, function(data) {
|
||||
//选择厂区及厂区负责人
|
||||
var selelct =$("#companyid").select2({
|
||||
data: data,
|
||||
placeholder:'请选择',//默认文字提示
|
||||
allowClear: false,//允许清空
|
||||
escapeMarkup: function (markup) { return markup; }, // 自定义格式化防止xss注入
|
||||
language: "zh-CN",
|
||||
minimumInputLength: 0,
|
||||
minimumResultsForSearch: 10,//数据超过十个启用搜索框
|
||||
formatResult: function formatRepo(repo){return repo.text;}, // 函数用来渲染结果
|
||||
formatSelection: function formatRepoSelection(repo){return repo.text;} // 函数用于呈现当前的选择
|
||||
});
|
||||
var companyId="${companyId}";
|
||||
console.info(companyId);
|
||||
if(companyId!=""){
|
||||
selelct.val(companyId).trigger("change");
|
||||
selelct.prop("disabled", true);
|
||||
}else{
|
||||
selelct.val("").trigger("change");
|
||||
}
|
||||
|
||||
},'json');
|
||||
$.post(ext.contextPath + "/user/getUnitsByUserId4Select.do", {}, function(data) {
|
||||
|
||||
var selelct =$("#maintainerid").select2({
|
||||
data: data,
|
||||
placeholder:'请选择',//默认文字提示
|
||||
allowClear: false,//允许清空
|
||||
escapeMarkup: function (markup) { return markup; }, // 自定义格式化防止xss注入
|
||||
language: "zh-CN",
|
||||
minimumInputLength: 0,
|
||||
minimumResultsForSearch: 10,//数据超过十个启用搜索框
|
||||
formatResult: function formatRepo(repo){return repo.text;}, // 函数用来渲染结果
|
||||
formatSelection: function formatRepoSelection(repo){return repo.text;} // 函数用于呈现当前的选择
|
||||
});
|
||||
|
||||
if(data.length==1){
|
||||
//选择厂区为一个厂时隐藏选择框
|
||||
selelct.val(data[0].id).trigger("change");
|
||||
//selelct.attr("disabled","disabled");
|
||||
$("#maintainerid").next().css("display", "none");
|
||||
$("#maintainerName").text(data[0].text);
|
||||
}else{
|
||||
//selelct.val("").trigger("change");
|
||||
// $("#companyname").attr("disabled","disabled");
|
||||
$("#maintainerName").css("display", "none");
|
||||
}
|
||||
},'json');
|
||||
$.post(ext.contextPath +"/maintenance/maintainPlan/getMaintainPlanTypes.do", {}, function(data) {
|
||||
var selelct =$("#type").select2({
|
||||
data: data,
|
||||
placeholder:'请选择',//默认文字提示
|
||||
allowClear: false,//允许清空
|
||||
escapeMarkup: function (markup) { return markup; }, // 自定义格式化防止xss注入
|
||||
language: "zh-CN",
|
||||
minimumInputLength: 0,
|
||||
minimumResultsForSearch: 10,//数据超过十个启用搜索框
|
||||
multiple : false,
|
||||
formatResult: function formatRepo(repo){return repo.text;}, // 函数用来渲染结果
|
||||
formatSelection: function formatRepoSelection(repo){return repo.text;} // 函数用于呈现当前的选择
|
||||
});
|
||||
},'json');
|
||||
|
||||
$('#sdt').datepicker({
|
||||
language: 'zh-CN',
|
||||
autoclose: true,
|
||||
todayHighlight: true,
|
||||
format:'yyyy-mm-dd',
|
||||
}).on('hide',function(e) {
|
||||
//当日期选择框关闭时,执行刷新校验
|
||||
$('#subForm').data('bootstrapValidator')
|
||||
.updateStatus('sdt', 'NOT_VALIDATED',null)
|
||||
.validateField('sdt');
|
||||
});
|
||||
|
||||
$('#edt').datepicker({
|
||||
language: 'zh-CN',
|
||||
autoclose: true,
|
||||
todayHighlight: true,
|
||||
format:'yyyy-mm-dd',
|
||||
}).on('hide',function(e) {
|
||||
//当日期选择框关闭时,执行刷新校验
|
||||
$('#subForm').data('bootstrapValidator')
|
||||
.updateStatus('edt', 'NOT_VALIDATED',null)
|
||||
.validateField('edt');
|
||||
});
|
||||
});
|
||||
</script>
|
||||
<div class="modal fade" id="subModal">
|
||||
<div class="modal-dialog">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
||||
<span aria-hidden="true">×</span></button>
|
||||
<h4 class="modal-title">新增保养计划</h4>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<!-- 新增界面formid强制为subForm -->
|
||||
<form class="form-horizontal" id="subForm">
|
||||
<!-- 界面提醒div强制id为alertDiv -->
|
||||
<div id="alertDiv"></div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">*维护商</label>
|
||||
<div class="col-sm-6">
|
||||
<select class="form-control select2 " id="maintainerid" name ="maintainerid" style="width: 220px;"></select>
|
||||
<span class="form-control" id="maintainerName" style="width:220px;border: none;background: transparent;" ></span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">*客户公司</label>
|
||||
<div class="col-sm-6">
|
||||
<select class="form-control select2" id="companyid" name ="companyid" style="width: 220px;"></select>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">*类别</label>
|
||||
<div class="col-sm-6">
|
||||
<select class="form-control select2" id="type" name ="type" style="width: 220px;"></select>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">*保养起止</label>
|
||||
<div class="col-sm-10">
|
||||
<div class="input-group " >
|
||||
<input type="text" class="form-control input-small" id="sdt" name="sdt" value="" placeholder="起始日期">
|
||||
<span class="input-group-addon"> 到 </span>
|
||||
<input type="text" class="form-control input-small" id="edt" name="edt" value="" placeholder="结束日期">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">*保养内容</label>
|
||||
<div class="col-sm-10">
|
||||
<textarea class="form-control " type="text" id="maintaincontent" name="maintaincontent" rows="3" value=""></textarea>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-default pull-left" data-dismiss="modal">关闭</button>
|
||||
<button type="button" class="btn btn-primary" onclick="dosave()" id="btn_save">保存</button>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /.modal-content -->
|
||||
</div>
|
||||
<!-- /.modal-dialog -->
|
||||
</div>
|
||||
Reference in New Issue
Block a user