12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <%-- 退房注销申请表 --%>
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <jsp:include page="../../common/include.jsp" />
- <% String basePath = request.getScheme()+ "://" + request.getServerName() + ":" +request.getServerPort() + request.getContextPath(); %>
- <%String checkOutId = request.getParameter("checkOut.id");%>
- <!DOCTYPE html>
- <html>
- <head>
- <script type="text/javascript" src="<%=basePath%>/js/jquery.jqprint.js"></script>
- <style type="text/css">
- .content{
- font-size:20px;
- text-indent: 2em;
- line-height:40px;
- margin:10px 0;
- font-family: SimSun;
- }
- .content input{
- padding-left:5px;
- }
- .no{
- font-size:16px;
- font-weight: bold;
- font-family: SimSun;
- }
- input{
- border:none;
- border-bottom:1px solid #000;
- font-size:20px;
- font-family: SimSun;
- }
- @media print {
- #printBtn1 { display: none }
- }
- </style>
- <script type="text/javascript">
- window.onload=function(){
- document.getElementById('printBtn1').onclick=function(){
- window.print();
- }
- }
- $(function(){
- var checkOutNo ="";
- $.ajax({
- type: "post",//使用post方法访问后台
- dataType: "json",//返回json格式的数据
- url: "rent10Action_findByCheckOutHouseId",//要访问的后台地址
- data:{"checkOutHouse.id":<%=checkOutId%> },
- success: function(msg){//msg为返回的数据,在这里做数据绑定
- if(msg.success){
- checkOutNo = msg.obj.checkOutNo.slice(4);
- $("#checkOutNo").text(checkOutNo);
- $("#name").val(msg.obj.name);
- $("#idCard").val(msg.obj.idCard);
- $("#spouseName").val(msg.obj.spouseName);
- $("#spouseIdCard").val(msg.obj.spouseIdCard);
- $("#otherName").val(msg.obj.otherName);
- $("#address").val(msg.obj.address);
- $("#reason").val(msg.obj.reason);
- $("#reason").val(msg.obj.reason);
- $("#noDate").val(dealDate(msg.obj.noDate));
- }
- }
- });
- })
- </script>
- </head>
- <body>
- <input type="button" value="打印文档" id="printBtn1">
- <div style="width: 210mm;" class="printDiv">
- <div align="center"style="padding: 30px 0 10px 0;">
- <span style="font-size:26px;font-weight: bold;font-family: SimSun;">淮安市市区公共租赁住房保障资格注销申请书</span><br/>
- <span class="no">(编号:注销</span><span class="no" id="checkOutNo"></span><span class="no">号)</span>
- </div>
- <div style="width:650px;margin:0 auto;">
- <p><span style="font-size:20px;font-family: SimSun;">淮安市住房保障管理部门:</span></p>
- <p class="content">本人<input type="text" style="width:190px" id="name">(身份证号<input type="text" style="width:260px" id="idCard">)
- 与配偶<input type="text" style="width:210px" id="spouseName">(身份证号<input type="text" style="width:260px" id="spouseIdCard">)
- 及家庭成员<input type="text" style="width:200px" id="otherName">,配租<input type="text" style="width:290px" id="address">,
- 现因<input type="text" style="width:460px" id="reason">,经协商一致:申请注销淮安市区公共租赁住房保障资格。
- 根据《关于改进住房保障资格审查有关事项的通知》(淮房保办〔2016〕2号)规定,自放弃之日起2年内不得再次申请住房保障。</p>
- <p class="content">特此申请。</p>
- </div>
- <div style="width:650px;margin:0 auto;padding-top:30px;" class="content">
- <p style="text-align: right;">申请人:<input type="text" style="width:190px"></p>
- <p style="text-align: right;">配 偶:<input type="text" style="width:190px"></p>
- <p style="text-align: right;">共同申请家庭成员:<input type="text" style="width:190px"></p>
- </div>
- <div style="width:650px;margin:0 auto;padding-top:50px;" class="content">
- <p style="text-align: right;">日期:<input type="text" style="width:190px" id="noDate"></p>
- </div>
- </div>
- </body>
- </html>
|