123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1, user-scalable=no">
- <meta name="apple-mobile-web-app-capable" content="yes">
- <meta name="apple-mobile-web-app-status-bar-style" content="black">
- <meta name="format-detection" content="telphone=no, email=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" />
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=8">
- <meta http-equiv="Cache" content="no-cache">
- <title>WaterO官方商城</title>
- <link rel="stylesheet" type="text/css" href="css/mui.min.css" />
- <style>
- .header { padding: 10px 0 7px 0; height: 65px; box-shadow: 0 0 0 #fff; background: #fff; }
- .header h6 { text-indent: 12px; color: #999; letter-spacing: 2px; }
- .go-index { width: 30%; margin-right: 1%; float: none; }
- .go-index img { width: 80%; padding-top: 5px; margin-left: 12px; max-width: 100px; }
- .swiper-container-horizontal>.swiper-pagination-bullets { bottom: 0; }
- .swiper-pagination-bullet-active { background: #63ccde; }
- .index-title { padding: 7px 12px 7px 12px; display: block; position: relative; }
- .index-title strong { font-size: 17px; }
- .index-title .mui-pull-right { color: #333; }
- .index-title font { display: inline-block; -webkit-transform: translateY(-1px); transform: translateY(-1px); }
- .pro-list .mui-media-object { background: #eff5f7; border-radius: 5px; display: block; }
- .pro-list:before,.pro-list:after {display: none;}
- .pro-list.mui-table-view.mui-grid-view>li:nth-child(odd) {padding: 10px 8px 0 14px;}
- .pro-list.mui-table-view.mui-grid-view>li:nth-child(even) {padding: 10px 0 0 22px;}
- .pro-list h6 {margin: 7px 0;color: #bbb;}
- .pro-list .pro-price {font-size: 14px;margin-top: 8px;}
- .pro-list .pro-price span {color: #db3f53;}
- .pro-list .pro-price s {color: #bbb;margin-left: 15px;}
- .pro-list2 .mui-media-object { background: #f2f2f2; border-radius: 5px; display: block; }
- .pro-list2:before,.pro-list2:after {display: none;}
- .pro-list2.mui-table-view.mui-grid-view>li:nth-child(odd) {padding: 10px 8px 0 14px;}
- .pro-list2.mui-table-view.mui-grid-view>li:nth-child(even) {padding: 10px 0 0 22px;}
- .pro-list2 h6 {margin: 7px 0;color: #bbb;}
- .pro-list2 .pro-price {font-size: 14px;margin-top: 8px;}
- .pro-list2 .pro-price span {color: #db3f53;}
- .pro-list2 .pro-price s {color: #bbb;margin-left: 15px;}
- </style>
- </head>
- <body>
-
- <!--header 开始-->
- <header class="mui-bar mui-bar-nav header">
- <h6>Ta 是一种生活方式</h6>
- </header>
- <!--header 结束-->
- <div class="mui-content" style="background: #fff;">
- <br>
- <br>
- <br>
- <div class="index-title go_web_shop">
- <strong>经典款净水机</strong><span class="mui-pull-right"><font>更多</font><span class="mui-icon mui-icon-arrowright"></span></span>
- </div>
-
- </div>
- <script src="js/mui.min.js"></script>
- <script src="js/jquery-2.1.1.min.js"></script>
- <script src="js/main.js"></script>
- <!-- <script src="js/wechat-utils-1.0.js"></script> -->
- </body>
- <script>
- //刷新用户信息
- $.ajax(base_path + '/getUserInfo?dates=' + new Date().getTime(), {
- dataType: 'json',
- type: 'post',
- timeout: 15000,
- xhrFields: {
- withCredentials: true
- },
- crossDomain: true,
- success: function(dt) {
- if(dt.isRedirect) {
- location.href = dt.redirectURL;
- } else {
- console.log("用户信息刷新成功");
- }
- },
- error: function(xhr, type, errorThrown) {
- console.log(xhr)
- }
- });
- </script>
- </html>
|