1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <!--semi 2018-06-28-->
- <!DOCTYPE html>
- <html lang="zh">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
- <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
- <meta http-equiv="Pragma" content="no-cache" />
- <meta http-equiv="Expires" content="0" />
- <title>永天 成功案例</title>
- <!-- bootstrap - css -->
- <link href="__PUBLIC__/B-JUI/themes/css/bootstrap.css" rel="stylesheet">
- <!-- jquery -->
- <script src="__PUBLIC__/B-JUI/js/jquery-1.11.3.min.js"></script>
- <script src="__PUBLIC__/B-JUI/js/jquery.cookie.js"></script>
- <!-- bootstrap plugins -->
- <script src="__PUBLIC__/B-JUI/plugins/bootstrap.min.js"></script>
- <script src="__PUBLIC__/B-JUI/plugins/bootstrapSelect/bootstrap-select.min.js"></script>
- <script src="__PUBLIC__/B-JUI/plugins/bootstrapSelect/defaults-zh_CN.min.js"></script>
- <style>
- header{
- text-align:center;
- color:#345;
- font-size:28px;
- }
- img{
- width: 80%;
- margin: 0 auto;
- border-radius:4px;
- border: 1px solid #2c4e11;
- }
- .company-name{
- text-align:center;
- color:#2196f3;
- }
- .form-group{
- margin-bottom:0;
- margin-top:15px;
- }
- </style>
- <script>
- $(function(){
- if(location.href=="http://www.jd-ioe.com/jdxf/wxapp2.php/Home/Public/Vexample"){
- setTimeout(function(){
- location.href = location.href+"?r="+Math.random();
- },100);
- }
- var companys = [
- "安恒卓悦(恒丰路700)","歌林商务(大宁路701)","上海客运总站(中兴路1666)",
- "共和国际(共和新路3699)","海冰宫酒店(临汾路818)","嘉地中心(北京西路968)",
- "上海凯宾斯基(陆家嘴环路1288)","凯撒国际(石门二路301)","凯迪克(江宁路212)"
- ];
- var imgs = [
- "anzhuo","gelin","keyuan",
- "gonghe","haibing","jiadi",
- "kaibin","kaisha","kaidi"
- ];
- var l = companys.length;
- var str = "";
- for(var i=0;i<l;i++){
- str += '<div class="form-group">';
- str += '<img src="__PUBLIC__/images/jueda/'+imgs[i]+'.png" class="img-responsive">';
- str += '</div><div class="company-name">'+companys[i]+'</div>';
- }
- $("hr").after(str);
- });
-
- </script>
- </head>
- <body>
- <div style="padding: 10px">
- <header>成功案例</header>
- <hr />
- </div>
-
- </body>
- </html>
|