12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>公积金查询</title>
- <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
- <link rel="stylesheet" href="./css/reset.css?v=11">
- <link rel="stylesheet" type="text/css" href="css/no_open_city.css?v=3"/>
- <script src="./js/jquery.min.js"></script>
- <script type="text/javascript" src="kuxuan/api-url.js?v=1"></script>
-
- <div style="display: none;">
- <script type="text/javascript">var cnzz_protocol = (("https:" == document.location.protocol) ? " https://" : " http://");document.write(unescape("%3Cspan id='cnzz_stat_icon_1274146775'%3E%3C/span%3E%3Cscript src='" + cnzz_protocol + "s13.cnzz.com/z_stat.php%3Fid%3D1274146775' type='text/javascript'%3E%3C/script%3E"));</script>
- </div>
- <script src="./js/common.js?vv=10"></script>
- <style type="text/css">
-
-
- </style>
- </head>
- <body>
- <nav>
- <i id='back' onclick="goBack()"></i>
- <p></p>
- <span onclick="changeCity()">切换城市</span>
- </nav>
- <img class="bg_no_open" src="img/no_open_city.png" />
- <p class="no_open_title">您选择的城市暂未开通查询服务</p>
- <p class="no_open_con">想要第一时间查询?</p>
- <div class="button" onclick="gokown()">设置提醒</div>
-
- <div class="alert-info" style="display: none;">
- <!-- tip提示,3s后消失 -->
- <p></p>
- </div>
- </body>
- </html>
- <script src="./js/auto_size.js?vv=10"></script>
- <script type="text/javascript">
- var qs = parseQueryString(window.location.href);
- $().ready(function() {
- if (qs.name) {
- $("nav p").html(qs.name)
- }
-
- })
- function gokown () {
- $.ajax({
- type: "POST",
- url:'/api/statistics/noCity',
- headers:{
- token : qs.token
- },
- data:{
- 'region_code' : qs.code
- },
- success: function(data) {
- if(data.errno == 0 && data.rst){
- showMsg(data.rst.msg)
- setTimeout(function() {
- window.location.href = '/gongjijin/fund_h5/no_open_city02.html'+ '?name=' + qs.name + '&code=' + qs.code + '&token=' + qs.token;
- }, 1500);
- }
- },
- error: function(err) {
- return showMsg('获取城市信息失败:' + JSON.parse(err.responseText).error);
- }
- });
- }
- function goBack () {
- window.history.go(-1);
- }
- function changeCity() {
- window.location.href = '/gongjijin/fund_h5/choose_city.html'+ '?name=' + qs.name + '&code=' + qs.code + '&token=' + qs.token;
- }
- function showMsg(msg) {
- var msgBox = $('.alert-info');
- msgBox.children('p').text(msg);
- msgBox.show();
- setTimeout(function() {
- msgBox.hide();
- }, 1500);
- }
- </script>
|