53 lines
2.3 KiB
HTML
53 lines
2.3 KiB
HTML
<div class="easyui-layout" style="width:100%;height:100%;">
|
|
<div id='southdiv' data-options="region:'south'" style="height:50px;text-align:center;padding:5px">
|
|
<a href="javascript:void(0)" iconCls="fa-check" class="easyui-linkbutton" onclick="fxcssubmitForm()" id="submitb">保存</a>
|
|
</div>
|
|
<div data-options="region:'center'" style="height:100%;padding:15px 15px;">
|
|
<form id="fxcsff" method="post" name="fxcsff" enctype="multipart/form-data">
|
|
<div style="margin-top:10px;margin-bottom:5px">
|
|
<input id="fxfx" class="easyui-textbox" name="fxfx" style="width:480px;height:100px" data-options="label:'风险分析',multiline:true"
|
|
required=true />
|
|
</div>
|
|
<div style="margin-bottom:5px">
|
|
<input id="aqcs" class="easyui-textbox" name="aqcs" style="width:480px;height:100px" data-options="label:'环保措施',multiline:true"
|
|
required=true />
|
|
</div>
|
|
<div style="margin-bottom:5px">
|
|
<input id="cslx" class="easyui-textbox" name="cslx" style="width:480px" data-options="label:'措施分类'"
|
|
/>
|
|
</div>
|
|
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
function fxcssubmitForm() {
|
|
var fxcsdata = $('#fxcsff').serializeJSON();
|
|
fxcsdata['zylx'] = $('#zylxlist').datalist('getSelected').value
|
|
$.ajax({
|
|
type: "POST",
|
|
url: 'api/fxcs?a=add',
|
|
data: JSON.stringify(fxcsdata),
|
|
datatype: "json",
|
|
processData: false,
|
|
contentType: "application/json;charset=utf-8",
|
|
beforeSend: function () {
|
|
var bo = $('#fxcsff').form('validate')
|
|
if (bo == false) {
|
|
return bo
|
|
} else {
|
|
$('#submitb').linkbutton('disable');
|
|
}
|
|
},
|
|
success: function (data) {
|
|
if (data.code == 1) {
|
|
$('#fxcstable').datagrid('reload');
|
|
$("#dd").dialog("close");
|
|
} else { $.messager.alert('提示', '失败!'); }
|
|
$('#submitb').linkbutton('enable');
|
|
},
|
|
});
|
|
}
|
|
|
|
|
|
</script> |