invoiceAdd.html 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576
  1. <!-- include 'header' -->
  2. <link rel=stylesheet href="<?= WEB_SITE_GLOBAL ?>css/jquery.validator.css">
  3. <script type="text/javascript" src="<?= WEB_SITE_GLOBAL ?>js/jquery.validator.min.js"></script>
  4. <script type="text/javascript" src="<?= WEB_SITE_GLOBAL ?>js/zh-CN.js"></script>
  5. <script src="<?= invoiceValidator ?>"></script>
  6. <link rel="stylesheet" href="<?= WEB_SITE_GLOBAL ?>/js/jquery-ui.css" />
  7. <script src="<?= WEB_SITE_GLOBAL ?>/js/jquery-ui.js"></script>
  8. <script src="<?= WEB_SITE_GLOBAL ?>/js/jquery.ui.autocomplete.js"></script>
  9. <script>
  10. $(function() {
  11. $('a[tianyancha]').click(function() {
  12. var tianyancha=$("#tianyancha").val();
  13. window.open("https://www.tianyancha.com/search?key="+tianyancha);
  14. });
  15. $('input[amount]').keyup(function() {
  16. var invoiceQuantity=$('#invoiceQuantity').val();
  17. var invoiceUnitPrice=$('#invoiceUnitPrice').val();
  18. var invoiceType=$("input[name='invoiceType']:checked").val();
  19. if(invoiceType==1&&invoiceQuantity != "" && invoiceQuantity != null && invoiceQuantity != 'undefined' && invoiceUnitPrice != "" && invoiceUnitPrice != null && invoiceUnitPrice != 'undefined'){ // "",null,undefined
  20. var amount=invoiceQuantity*invoiceUnitPrice;
  21. if (!isNaN(amount) ){
  22. $("#invoicePrice").val(amount);
  23. if(amount>100001){
  24. var msgHtml='<span class="msg-box n-right" for="invoicePrice"><span role="alert" class="msg-wrap n-error"><span class="n-icon"></span><span class="n-msg">此处必须小于10000</span></span></span>';
  25. $("#msgMaxPrice").html(msgHtml);
  26. }else{
  27. $("#msgMaxPrice").html('');
  28. }
  29. }else{
  30. $("#invoicePrice").val('');
  31. $("#msgMaxPrice").html('');
  32. }
  33. }else{
  34. $("#invoicePrice").val('');
  35. $("#msgMaxPrice").html('');
  36. }
  37. });
  38. $('#invoicePlain').click(function() {
  39. $("#invoicePrice").val('');
  40. $("#msgMaxPrice").html('');
  41. });
  42. $('#invoiceSpecial').click(function() {
  43. var invoiceQuantity=$('#invoiceQuantity').val();
  44. var invoiceUnitPrice=$('#invoiceUnitPrice').val();
  45. var amount=invoiceQuantity*invoiceUnitPrice;
  46. if (!isNaN(amount) ){
  47. $("#invoicePrice").val(amount);
  48. if(amount>100001){
  49. var msgHtml='<span class="msg-box n-right" for="invoicePrice"><span role="alert" class="msg-wrap n-error"><span class="n-icon"></span><span class="n-msg">此处必须小于10000</span></span></span>';
  50. $("#msgMaxPrice").html(msgHtml);
  51. }else{
  52. $("#msgMaxPrice").html('');
  53. }
  54. }else{
  55. $("#invoicePrice").val('');
  56. $("#msgMaxPrice").html('');
  57. }
  58. });
  59. $('button[invoiceDetalfn]').click(function() {
  60. var cid=$('#cid option:selected').html();
  61. var st=$("input[name='settlementType']:checked").val();
  62. var settlementType='';
  63. if(st=='SOFTWARE'){
  64. settlementType='软件销售 ';
  65. }else if(st=='TRAINING'){
  66. settlementType='培训班 ';
  67. }
  68. var it=$("input[name='invoiceType']:checked").val();
  69. var invoiceForm=$("input[name='invoiceForm']:checked").val();
  70. var invoiceTitle=$("#invoiceTitle").val();
  71. var TINT=$("#TINT").val();
  72. var addressT=$("#addressT").val();
  73. var phoneT=$("#phoneT").val();
  74. var bankT=$("#bankT").val();
  75. var bankAccountT=$("#bankAccountT").val();
  76. var invoiceCompany=$("#invoiceCompany").val();
  77. var TIN=$("#TIN").val();
  78. var address=$("#address").val();
  79. var phone=$("#phone").val();
  80. var bank=$("#bank").val();
  81. var bankAccount=$("#bankAccount").val();
  82. var invoiceType='';
  83. if(it=='0'){
  84. invoiceType='增值税普通发票 ';
  85. }else if(it=='1'){
  86. invoiceType='增值税专用发票 ';
  87. invoiceTitle=invoiceCompany;
  88. TINT=TIN;
  89. addressT=address;
  90. phoneT=phone;
  91. bankT=bank;
  92. bankAccountT=bankAccount;
  93. }
  94. if(invoiceForm=='electronic'){
  95. invoiceType='增值税普通发票(电子发票)';
  96. }
  97. var invoiceElement=$('#invoiceElement option:selected').html();
  98. var invoiceQuantity=$("#invoiceQuantity").val();
  99. var invoiceUnitPrice=$("#invoiceUnitPrice").val();
  100. var invoicePrice=invoiceQuantity*invoiceUnitPrice;
  101. var html='<div class="modal-body"><table class="table table-condensed table-bordered"><tbody><tr><th class="taC">开票信息</th><th class="taC">发票内容</th></tr><tr><td>';
  102. html+='<p><span class="text-truncate">所在办事处:</span><span>'+cid+'</span></p>';
  103. html+='<p><span class="text-truncate">结算方式:</span><span class="colRed">'+settlementType+'</span>';
  104. html+='</p><p><span class="text-truncate">发票类型:</span><span class="colRed">'+invoiceType+'</span></p>';
  105. html+='</td><td>';
  106. html+='<p><span class="text-truncate">开票内容:</span><span class="colRed">'+invoiceElement+'</span>';
  107. html+='</p><p><span class="text-truncate">数量:</span><span>'+invoiceQuantity+'</span>';
  108. html+='</p><p><span class="text-truncate">单价:</span><span>'+invoiceUnitPrice+'</span>';
  109. html+='</p><p><span class="text-truncate">开票金额:</span><span class="colRed">'+invoicePrice+'</span>';
  110. html+='</p><p><span class="text-truncate">单位名称:</span><span class="colRed">'+invoiceTitle+'</span>';
  111. html+='</p><p><span>纳税人识别码:</span><span class="colRed">'+TINT+'</span></p>';
  112. html+='<p><span class="text-truncate">注册地址:</span><span class="colRed">'+addressT+'</span></p>';
  113. html+='<p><span class="text-truncate">注册电话:</span><span class="colRed">'+phoneT+'</span></p>';
  114. html+='<p><span class="text-truncate">开户银行:</span><span class="colRed">'+bankT+'</span></p>';
  115. html+='<p><span class="text-truncate">银行帐号:</span><span class="colRed">'+bankAccountT+'</span></p>';
  116. html+='</td></tr></tbody></table><p>红字为重要内容!请谨慎确认无误!申请提交后开票信息将不能修改!</p></div>';
  117. $("#modalBody").html(html);
  118. });
  119. $("input[autoIFBTitle]").autocomplete({
  120. source: function( request, response ) {
  121. $.ajax({
  122. url: "/autoFillInIFB",
  123. dataType: "json",
  124. data:{
  125. fill: request.term,
  126. fillType:'TITLE'
  127. },
  128. success: function( data ) {
  129. response( $.map( data, function( item ) {
  130. return {
  131. value: item.invoiceTitle,
  132. invoiceTitle:item.invoiceTitle,
  133. TIN:item.TIN,
  134. address:item.address,
  135. phone:item.phone,
  136. bank:item.bank,
  137. bankAccount:item.bankAccount
  138. // name:item.clientname+"-"+item.companyname,
  139. // value: item.clientname+"-"+item.companyname
  140. }
  141. }));
  142. }
  143. });
  144. },
  145. minLength: 1,
  146. select: function( event, ui ) {
  147. var invoiceType=$('input[name="invoiceType"]:checked').val();
  148. if(invoiceType==0){
  149. $("#TINT").val(ui.item.TIN);
  150. $("#addressT").val(ui.item.address);
  151. $("#phoneT").val(ui.item.phone);
  152. $("#bankT").val(ui.item.bank);
  153. $("#bankAccountT").val(ui.item.bankAccount);
  154. }else{
  155. $("#TIN").val(ui.item.TIN);
  156. $("#address").val(ui.item.address);
  157. $("#phone").val(ui.item.phone);
  158. $("#bank").val(ui.item.bank);
  159. $("#bankAccount").val(ui.item.bankAccount);
  160. }
  161. }
  162. });
  163. $("input[autoIFBTIN]").autocomplete({
  164. source: function( request, response ) {
  165. $.ajax({
  166. url: "/autoFillInIFB",
  167. dataType: "json",
  168. data:{
  169. fill: request.term,
  170. fillType:'TIN'
  171. },
  172. success: function( data ) {
  173. response( $.map( data, function( item ) {
  174. return {
  175. value: item.TIN,
  176. invoiceTitle:item.invoiceTitle,
  177. TIN:item.TIN,
  178. address:item.address,
  179. phone:item.phone,
  180. bank:item.bank,
  181. bankAccount:item.bankAccount
  182. // name:item.clientname+"-"+item.companyname,
  183. // value: item.clientname+"-"+item.companyname
  184. }
  185. }));
  186. }
  187. });
  188. },
  189. minLength: 1,
  190. select: function( event, ui ) {
  191. var invoiceType=$('input[name="invoiceType"]:checked').val();
  192. if(invoiceType==0){
  193. $("#invoiceTitle").val(ui.item.invoiceTitle);
  194. $("#addressT").val(ui.item.address);
  195. $("#phoneT").val(ui.item.phone);
  196. $("#bankT").val(ui.item.bank);
  197. $("#bankAccountT").val(ui.item.bankAccount);
  198. }else{
  199. $("#invoiceCompany").val(ui.item.invoiceTitle);
  200. $("#address").val(ui.item.address);
  201. $("#phone").val(ui.item.phone);
  202. $("#bank").val(ui.item.bank);
  203. $("#bankAccount").val(ui.item.bankAccount);
  204. }
  205. }
  206. });
  207. $('input[type=radio][name=invoiceForm]').change(function() {
  208. if (this.value == 'paper') {
  209. $('tr[paperTR]').show();
  210. $('tr[electronicTR]').hide();
  211. $('table[electronicContact]').hide();
  212. $('div[paperMark]').show();
  213. $('#electronicPhone').val('1');
  214. } else if (this.value == 'electronic') {
  215. $('tr[paperTR]').hide();
  216. $('tr[electronicTR]').show();
  217. $('table[electroniCcontact]').show();
  218. $('div[paperMark]').hide();
  219. $('#electronicPhone').val('');
  220. }
  221. });
  222. })
  223. </script>
  224. <body>
  225. <div class="mainLayout">
  226. <div class="mainMenu">
  227. <div class="menuItem">
  228. <a href="#" class="mLogo">CLD</a>
  229. <ul>
  230. <!-- include 'menuReceipt' -->
  231. </ul>
  232. </div>
  233. </div>
  234. <div class="warpContent">
  235. <div class="subMenu fL">
  236. <div class="menuItem">
  237. <!-- include 'invoiceMenu' -->
  238. </div>
  239. </div>
  240. <div class="adminContent autoHeight">
  241. <legend>填写申请开票</legend>
  242. <div class="borad-news">
  243. <div class="saeaList">
  244. <form action="/invoiceAddDo" method="post" class="invoice" id="invoice" data-validator-option="{timely:3,showOk:''}">
  245. <input type="hidden" name="token" value="{{token}}">
  246. <input type="hidden" name="tokenTime" value="{{tokenTime}}">
  247. <table class="table table-bordered table-condensed">
  248. <tbody>
  249. <blockquote><p class=""><a href="/invoiceAdd/AUTOFILL" copy-invoice>加载上一张开票信息</a></p></blockquote>
  250. <tr>
  251. <th class="taC" width="150">所在办事处</th>
  252. <td>
  253. <select name="cid" id="cid">
  254. <!-- loop category -->
  255. <option <!-- if {{category' value.cid}} == {{staff.0.cid}} --> selected <!-- endif --> value="{{category' value.cid}}" >{{category' value.title}}</option>
  256. <!-- endloop -->
  257. </select>
  258. </td>
  259. <th class="taC"><span class="colRed">*</span>开票内容</th>
  260. <td>
  261. <select name="invoiceElement" id="invoiceElement">
  262. <!-- include 'invoiceElement' -->
  263. </select>
  264. </td>
  265. </tr>
  266. <tr>
  267. <th class="taC"><span class="colRed">*</span>数量</th>
  268. <td>
  269. <input style="width:60px" name="invoiceQuantity" amount id="invoiceQuantity" value="1" placeholder="输入数量" pattern="[0-9]" type="number" min="1" step="1">
  270. </td>
  271. <th class="taC"><span class="colRed">*</span>单价</th>
  272. <td><input style="width:100px" name="invoiceUnitPrice" amount id="invoiceUnitPrice" placeholder="输入单价" pattern="[0-9]" type="number" min="1" step="100"></td>
  273. </tr>
  274. <tr>
  275. <th class="taC"><span class="colRed">*</span>开票金额</th>
  276. <td colspan="3">
  277. <p class="colGray">数量*单价=开票金额&nbsp;&nbsp;&nbsp;&nbsp;<span style="display:none" class="colRed">专用发票总金额暂时不能超过100000.00(十万)元。</span></p>
  278. <b class="colOrange" id="tp" style="font-size:18px">¥0</b>
  279. <span id="msgMaxPrice"></span>
  280. <input name="10000" id="10000" type="hidden" value="10000">
  281. <input placeholder="输入开票金额" pattern="[0-9]" name="invoicePrice" id="invoicePrice" type="hidden" min="0" step="0.01">
  282. </td>
  283. </tr>
  284. <tr >
  285. <th class="taC">发票备注</th><td colspan="3"><textarea placeholder="用于发票右下角备注栏内容,如项目名称、项目地点" name="remark" style="width:550px"></textarea>
  286. </td>
  287. </tr>
  288. <tr>
  289. <th class="taC"><span class="colRed">*</span>发票形式</th><td colspan="3">
  290. <label class="radio inline"><input type="radio" checked name="invoiceForm" value="paper">纸质发票</label>
  291. <label class="radio inline" ><input type="radio" name="invoiceForm" id="invoiceForm" value="electronic" >电子发票</label>
  292. </td>
  293. </tr>
  294. <tr style="display:none" electronicTR >
  295. <th class="taC"><span class="colRed">*</span>发票类型</th><td colspan="3">
  296. 增值税普通发票(电子发票)
  297. </td>
  298. </tr>
  299. <tr paperTR>
  300. <th class="taC"><span class="colRed">*</span>发票类型</th><td colspan="3">
  301. <label class="radio inline"><input checked name="invoiceType" id="invoicePlain" onclick="invoiceShow()" value="0" type="radio" >增值税普通发票</label>
  302. <label class="radio inline colRed"><input name="invoiceType" id="invoiceSpecial" onclick="invoiceShow()" value="1" type="radio">增值税专用发票</label>
  303. </td>
  304. </tr>
  305. <tr>
  306. <th class="taC"><span class="colRed">*</span>结算方式</th><td colspan="3">
  307. <label class="radio inline"><input type="radio" onclick="settlementTypeShow()" name="settlementType" value="SOFTWARE" data-rule="checked">软件销售</label>
  308. <!-- if !empty({{itList}}) -->
  309. <label class="radio inline"><input type="radio" onclick="settlementTypeShow()" name="settlementType" id="settlementType" value="TRAINING">培训班</label>
  310. <label class="radio inline" id='trainingSelect' style="display:none">
  311. <select name='trainId' id='trainId' >
  312. <option selected value="">请选择</option>
  313. <!-- loop itList -->
  314. <option value="{{itList' value.itidKey}}">{{itList' value.trainDate}}&nbsp;{{itList' value.trainName}}</option>
  315. <!-- endloop -->
  316. </select>
  317. </label>
  318. <!-- endif -->
  319. <p class="colGray">结算方式影响您的工资提成,请正确选择!</p>
  320. </td>
  321. </tr>
  322. </tbody>
  323. </table>
  324. <table id="plainInvoice_box" class="table table-bordered table-condensed">
  325. <tbody>
  326. <tr>
  327. <th colspan="4" class="taC">增值税普通发票</th>
  328. </tr>
  329. <tr>
  330. <th class="taC" width="150"><span class="colRed">*</span>发票抬头</th>
  331. <td >
  332. <input type="text" name="invoiceTitle" id="invoiceTitle" autoIFBTitle value="" >
  333. </td>
  334. <th class="taC" width="150"><span class="colRed"></span>纳税人识别码</th>
  335. <td><input type="text" name="TINT" id="TINT" autoIFBTIN ></td>
  336. </tr>
  337. <tr>
  338. <th class="taC"><span class="colRed"></span>注册地址</th>
  339. <td><input type="text" name="addressT" id="addressT"></td>
  340. <th class="taC"><span class="colRed"></span>注册电话</th>
  341. <td><input type="text" name="phoneT" id="phoneT"></td>
  342. </tr>
  343. <tr>
  344. <th class="taC"><span class="colRed"></span>开户银行</th>
  345. <td><input type="text" name="bankT" id="bankT"></td>
  346. <th class="taC"><span class="colRed"></span>银行账号</th>
  347. <td><input type="text" name="bankAccountT" id="bankAccountT"></td>
  348. </tr>
  349. </tbody>
  350. </table>
  351. <table id="specialInvoice_box" class="table table-bordered table-condensed" style="display:none">
  352. <tbody>
  353. <tr>
  354. <th colspan="4" class="taC colRed">增值税专用发票</th>
  355. </tr>
  356. <tr>
  357. <th class="taC" width="150"><span class="colRed">*</span>单位名称</th>
  358. <td><input type="text" name="invoiceCompany" autoIFBTitle id="invoiceCompany"></td>
  359. <th class="taC" width="150"><span class="colRed">*</span>纳税人识别码</th>
  360. <td><input type="text" name="TIN" autoIFBTIN id="TIN"></td>
  361. </tr>
  362. <tr>
  363. <th class="taC"><span class="colRed">*</span>注册地址</th>
  364. <td><input type="text" name="address" id="address"></td>
  365. <th class="taC"><span class="colRed">*</span>注册电话</th>
  366. <td><input type="text" name="phone" id="phone"></td>
  367. </tr>
  368. <tr>
  369. <th class="taC"><span class="colRed">*</span>开户银行</th>
  370. <td><input type="text" name="bank" id="bank"></td>
  371. <th class="taC"><span class="colRed">*</span>银行账号</th>
  372. <td><input type="text" name="bankAccount" id="bankAccount"></td>
  373. </tr>
  374. </tbody>
  375. </table>
  376. <table class="table table-bordered table-condensed" style="margin-top: -21px;">
  377. <tr>
  378. <td colspan="4" class="taC"><img src="<?= WEB_SITE_GLOBAL ?>/images/tianyancha.png">
  379. <div class="input-append" style="margin:0">
  380. <input class="span3" type="text" id="tianyancha" value="">
  381. <a class="btn btn-small btn-primary" tianyancha href="javascript:void(0)" target="_blank">天眼一下</a>
  382. </div>
  383. </td>
  384. </table>
  385. <table class="table table-bordered table-condensed">
  386. <tr>
  387. <th colspan="4" class="taC">邮寄信息</th>
  388. </tr>
  389. <tr>
  390. <th class="taC" width="150"><span class="colRed">*</span>是否邮寄</th><td colspan="3">
  391. <label class="radio inline"><input type="radio" onclick="mailShow()" id="isMail" name="doPost" value="1" checked >是</label>
  392. <label class="radio inline"><input type="radio" onclick="mailShow()" name="doPost" value="0">否</label>
  393. </td>
  394. </tr>
  395. <tbody id="mail_box" >
  396. <tr>
  397. <th class="taC" width="150"><span class="colRed">*</span>收件人</th>
  398. <td><input type="text" name="recipients" id="recipients"></td>
  399. <th class="taC" width="150"><span class="colRed">*</span>收件人手机/电话</th>
  400. <td><input type="text" name="recipientsPhone" id="recipientsPhone"></td>
  401. </tr>
  402. <tr>
  403. <th class="taC" width="150"><span class="colRed">*</span>收件地址</th><td colspan="3">
  404. <input type="text" class="span6" name="recipientsAddress" id="recipientsAddress"></td>
  405. </tr>
  406. <tr>
  407. <th class="taC" width="150">邮寄物品</th><td colspan="3">
  408. <div class="checkbox">
  409. <input type="checkbox" name="softLock" value="1">
  410. 软件锁 (个)<br><input type="number" name="softLockNum" class="span1" placeholder="数量" value="1">
  411. </div>
  412. <div paperMark class="checkbox">
  413. <input type="checkbox" checked disabled value="1">
  414. 发票 (张)<br>1
  415. </div>
  416. <div class="checkbox">
  417. <input type="checkbox" name="contract" value="1">
  418. 合同(份) <br><input type="number" name="contractNum" class="span1" placeholder="数量" value="1">
  419. </div>
  420. <div class="checkbox">
  421. <input type="checkbox" name="instructions" value="1">
  422. 说明书 (本)<br><input type="number" name="instructionsNum" class="span1" placeholder="数量" value="1">
  423. </div>
  424. <div class="checkbox">
  425. <input type="checkbox" name="remittance" value="1">
  426. 汇款账号单(张)
  427. </div>
  428. <div class="checkbox">
  429. <input type="checkbox" checked="" disabled="">
  430. 备注<br>
  431. <textarea style="width:550px" name="mailItems" placeholder="备注信息或其他需要邮寄物品请填写在这,写明数量。"></textarea>
  432. </div>
  433. </td>
  434. </tr>
  435. </tbody>
  436. </table>
  437. <table style="display:none" electronicContact class="table table-bordered table-condensed">
  438. <tbody>
  439. <tr>
  440. <th colspan="4" class="taC">电子发票发送</th>
  441. </tr>
  442. <tr>
  443. <th class="taC" width="150">收件人手机</th>
  444. <td><input class="contact" type="text" name="electronicPhone" id="electronicPhone" value="1" placeholder="手机号"
  445. data-rule="required(from, .contact); digits" data-msg-required="请至少填写一种联系方式">
  446. </td>
  447. </tr>
  448. <tr>
  449. <th class="taC" width="150">收件人邮箱</th>
  450. <td><input class="contact" type="text" name="electronicEmail" placeholder="邮箱"
  451. data-rule="required(from, .contact); email">
  452. </td>
  453. </tr>
  454. <tr>
  455. <td class="taC" width="150" colspan="4"><span class="colRed">*电子发票收取方式二选一,手机和邮箱,请必填一项,推荐邮箱。</span></td>
  456. </tr>
  457. </tbody>
  458. </table>
  459. <p class="taR"><button type="button" class="button" invoiceDetalfn href="#confirm" data-toggle="modal">提交申请</button></p>
  460. <div class="modal hide fade" id="confirm">
  461. <div class="modal-dialog">
  462. <div class="modal-content">
  463. <div class="modal-header">
  464. <h3>确认信息无误</h3>
  465. </div>
  466. <div class="modal-body" id="modalBody">
  467. </div>
  468. <div class="modal-footer">
  469. <input type="submit" class="button" value="无误,提交申请">
  470. <a href="#" class="button btn-gray" data-dismiss="modal" aria-hidden="true">我要检查一下</a>
  471. </div>
  472. </div>
  473. </div>
  474. </div>
  475. </form>
  476. </div>
  477. </div>
  478. </div>
  479. </div>
  480. </div>
  481. <!--申请确认-->
  482. <!--申请确认-->
  483. <script type="text/javascript">autoFlashHeight();</script>
  484. </body>