1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <%@ page contentType="text/html;charset=UTF-8" %>
- <%@ include file="/webpage/include/taglib.jsp"%>
- <html>
- <head>
- <title>党籍信息管理</title>
- <meta name="decorator" content="ani"/>
- <script type="text/javascript">
- $(document).ready(function() {
- });
- function save() {
- var isValidate = jp.validateForm('#inputForm');//校验表单
- if(!isValidate){
- return false;
- }else{
- jp.loading();
- jp.post("${ctx}/leader/info/leaderMembership/save",$('#inputForm').serialize(),function(data){
- if(data.success){
- jp.getParent().refresh();
- var dialogIndex = parent.layer.getFrameIndex(window.name); // 获取窗口索引
- parent.layer.close(dialogIndex);
- jp.success(data.msg)
- }else{
- jp.error(data.msg);
- }
- })
- }
- }
- </script>
- </head>
- <body class="bg-white">
- <form:form id="inputForm" modelAttribute="leaderMembership" class="form-horizontal">
- <form:hidden path="id"/>
- <table class="table table-bordered">
- <tbody>
- <tr>
- <td class="width-15 active"><label class="pull-right"><font color="red">*</font>党籍类型:</label></td>
- <td class="width-35">
- <form:input path="leaderType" htmlEscape="false" class="form-control required"/>
- </td>
- <td class="width-15 active"><label class="pull-right"><font color="red">*</font>党员表ID:</label></td>
- <td class="width-35">
- <form:input path="leaderId" htmlEscape="false" class="form-control required"/>
- </td>
- </tr>
- <tr>
- <td class="width-15 active"><label class="pull-right"><font color="red">*</font>状态时间:</label></td>
- <td class="width-35">
- <form:input path="statusDate" htmlEscape="false" class="form-control required"/>
- </td>
- <td class="width-15 active"><label class="pull-right"><font color="red">*</font>转接时间:</label></td>
- <td class="width-35">
- <form:input path="changeDate" htmlEscape="false" class="form-control required"/>
- </td>
- </tr>
- <tr>
- <td class="width-15 active"><label class="pull-right"><font color="red">*</font>转接类型:</label></td>
- <td class="width-35">
- <form:select path="changeType" class="form-control required">
- <form:option value="" label=""/>
- <form:options items="${fns:getDictList('')}" itemLabel="label" itemValue="value" htmlEscape="false"/>
- </form:select>
- </td>
- <td class="width-15 active"><label class="pull-right">组织名称:</label></td>
- <td class="width-35">
- <form:input path="lead" htmlEscape="false" class="form-control "/>
- </td>
- </tr>
- <tr>
- <td class="width-15 active"><label class="pull-right"><font color="red">*</font>党内职务:</label></td>
- <td class="width-35">
- <form:select path="duties" class="form-control required">
- <form:option value="" label=""/>
- <form:options items="${fns:getDictList('')}" itemLabel="label" itemValue="value" htmlEscape="false"/>
- </form:select>
- </td>
- <td class="width-15 active"><label class="pull-right">备注:</label></td>
- <td class="width-35">
- <form:input path="remark" htmlEscape="false" class="form-control "/>
- </td>
- </tr>
- </tbody>
- </table>
- </form:form>
- </body>
- </html>
|