123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- <%@ page contentType="text/html;charset=UTF-8" %>
- <%@ include file="/webpage/include/taglibf.jsp"%>
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>${fns:getConfig("productName")}</title>
- <link rel="stylesheet" type="text/css" href="${ctxStaticWeb}/css/base.css" />
- <link rel="stylesheet" type="text/css" href="${ctxStaticWeb}/css/second.css" />
- <style>
- .new_l,.new_r{ margin:10px 0px;}
- .new_l{background-color:#FFF}
- .new_l h2{ border-bottom:1px solid #CCC; border-top:1px solid #CCC; line-height:38px; font-size:16px; background-color:#f8f8f8;}
- .new_l h2 a{color:#820402}
- .bg{ background-color:#fff; min-height:600px}
- .bg h2{ line-height:60px; color:#820402;}
- .btnSign { height:35px; line-height:35px; width:25%;background-color:#820402; color:#fff; border:0px; margin:20px}
- #inputForm label.error
- {
- color:#cc5965;
- font-size:14px;
- margin-left:5px;
- padding-left:16px;
- font-weight: bold;
- }
- </style>
- <%@include file="/webpage/include/anihead.jsp" %>
- <%@include file="/webpage/include/summernote.jsp" %>
- <script type="text/javascript">
- $(document).ready(function() {
- $('#csrq').datetimepicker({
- format: "YYYY-MM-DD"
- });
- });
- function sign() {
- var isValidate = jp.validateForm('#inputForm');//校验表单
- if(!isValidate){
- return false;
- }else{
- jp.confirm("确认进行人才申报吗?",function () {
- jp.post("${ctxF}/talentTeamMembers/save",$('#inputForm').serialize(),function (data) {
- if(data.success){
- jp.success(data.msg);
- $('#inputForm')[0].reset();
- window.close();
- //jp.go("${ctxF}/info");
- }else{
- jp.error(data.msg);
- $("#inputForm").find("button:submit").button("reset");
- }
- })
- })
- }
- }
- </script>
- </head>
- <body>
- <%@ include file="/webpage/modules/web/top.jsp"%>
- <form:form id="inputForm" modelAttribute="talentTeamMembers" method="post" class="form-horizontal">
- <div class="c">
- <div class="new_l">
- <h2> 当前位置:<a href="${ctx}/home">首页</a>><a href="${ctxF}/info">个人中心</a>><a href="${ctxF}/talentWorkstationList">“候鸟型”人才申报</a></h2>
- <form:hidden path="id"/>
- <input type="hidden" name="flag" value="1"/>
- <input type="hidden" id="workstationId" name="workstationId" value="${talentTeamMembers.workstationId}"/>
- <table style="margin: 2px;" class="table table-bordered" bgcolor="#CCCCCC">
- <tbody>
- <tr>
- <td colspan="7">
- <table class="table table-bordered" bgcolor="#CCCCCC">
- <tr>
- <td class="width-15 active" ><label class="pull-right"><font color="red">*</font>姓名:</label></td>
- <td class="width-35" >
- <form:input path="xm" htmlEscape="false" class="form-control required"/>
- </td>
- <td class="width-15 active"><label class="pull-right">性别:</label></td>
- <td class="width-35" >
- <form:select path="xb" class="form-control">
- <form:option value="1" label="男"/>
- <form:option value="2" label="女"/>
- </form:select>
- </td>
- </tr>
- <tr>
- <td class="width-15 active"><label class="pull-right">籍贯:</label></td>
- <td class="width-35">
- <form:input path="jg" htmlEscape="false" class="form-control "/>
- </td>
- <td class="width-15 active"><label class="pull-right">出生日期:</label></td>
- <td class="width-35" >
- <div class='input-group form_datetime' id='csrq' style="width: 397px;">
- <input type='text' name="csrq" class="form-control " value="${talentTeamMembers.csrq}"/>
- <span class="input-group-addon">
- <span class="glyphicon glyphicon-calendar"></span>
- </span>
- </div>
- </td>
- </tr>
- <tr>
- <td class="width-15 active"><label class="pull-right">工作单位:</label></td>
- <td class="width-35" >
- <form:input path="gzdw" htmlEscape="false" class="form-control "/>
- </td>
- <td class="width-15 active"><label class="pull-right">学历:</label></td>
- <td class="width-35">
- <form:input path="xl" htmlEscape="false" class="form-control "/>
- </td>
- </tr>
- <tr>
- <td class="width-15 active"><label class="pull-right">专业技术职务:</label></td>
- <td class="width-35">
- <form:input path="zyjszw" htmlEscape="false" class="form-control "/>
- </td>
- <td class="width-15 active"><label class="pull-right">专长/研究成果/获奖情况:</label></td>
- <td class="width-35">
- <form:input path="yjcg" htmlEscape="false" class="form-control "/>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </tbody>
- </table>
- <div style="text-align: center;">
- <button name="btnRegister" class="btnSign" onclick="sign();return false;" style="cursor: pointer" >立即申报</button>
- </div>
- <div style="height: 2px;"></div>
- </div>
- </div>
- </form:form>
- <%@ include file="/webpage/modules/web/footer.jsp"%>
- </body>
- </html>
|