Files
SIPAIIS_WMS_JSSW/WebRoot/jsp/timeefficiency/electricityPriceAdd.jsp

149 lines
6.0 KiB
Plaintext
Raw Normal View History

2026-01-16 14:13:44 +08:00
<%@ 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 + "/timeEfficiency/electricityPrice/dosave.do", $("#subForm").serialize(), function(data) {
if (data.res == 1){
closeModal('subModal');
$("#table").bootstrapTable('refresh');
}else if(data.res == 0){
showAlert('d','保存失败');
}else{
showAlert('d',data.res);
}
},'json');
}
}
//输入框验证
$("#subForm").bootstrapValidator({
live: 'disabled',//验证时机enabled是内容有变化就验证默认disabled和submitted是提交再验证
fields: {
name: {
validators: {
notEmpty: {
message: '供应商名称不能为空'
}
}
},
classId: {
validators: {
notEmpty: {
message: '供应商类型不能为空'
}
}
},
/* address: {
validators: {
notEmpty: {
message: '地址不能为空'
}
}
},
linkMan: {
validators: {
notEmpty: {
message: '联系人不能为空'
}
}
},
mobile: {
validators: {
notEmpty: {
message: '手机号不能为空'
},
regexp: {
regexp: /^1[3456789]\d{9}$/,
message: '手机号格式错误'
}
}
}, */
}
});
$(function(){
var typeStatusArr = [
{"id":"潜在","text":"潜在"},
{"id":"登记","text":"已合作"},
];
var selelct =$("#typeStatus").select2({
data: typeStatusArr,
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;} // 函数用于呈现当前的选择
});
selelct.val('已合作').trigger("change");
})
</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">&times;</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>
<label class="col-sm-2 control-label">所属厂区</label>
<div class="col-sm-10">
<input name="company" type="hidden" value="${company.id}"/>
<p class="form-control-static" >${company.name}</p>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">用途</label>
<div class="col-sm-6">
<input type="text" class="form-control" id="diantype" name ="diantype" placeholder="用途" >
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">电压等级</label>
<div class="col-sm-6">
<input type="text" class="form-control" id="voltagelevel" name ="voltagelevel" placeholder="电压等级" >
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">电度电价(元)</label>
<div class="col-sm-4">
<input type="number" class="form-control" id="dianduprice" name="dianduprice" placeholder="电度电价(元)"
min="0" value=0.00 step="0.50">
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">基本电费</label>
<div class="col-sm-6">
<input type="number" class="form-control" id="basicprice" name="basicprice" placeholder="基本电费"
min="0" value=0.00 step="0.50">
</div>
</div>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" 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>