12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="user-scalable=no, initial-scale=1.0, maximum-scale=1.0" />
- <meta name="apple-mobile-web-app-capable" content="yes" />
- <meta name="apple-mobile-web-app-status-bar-style" content="black" />
- <link href="/static/css/font-awesome/css/font-awesome.min.css" rel="stylesheet">
- <link rel="stylesheet" href="/static/css/common.css">
- <script src="http://lib.sinaapp.com/js/jquery/1.9.1/jquery-1.9.1.min.js"></script>
- <script src="/static/js/common.js"></script>
- <script src="/static/js/qrcode.js"></script>
- <title>会员</title>
- <style>
- .container{
- text-align: center;
- }
- .headerImg{
- width: 5rem;
- height: 5rem;
- margin-top: 2rem;
- border-radius: 50%;
- }
- .qiandao{
- width: 11rem;
- margin-top: 2rem;
- }
- .logo{
- width: 10rem;
- margin-top: 2rem;
- }
- #qrcode img{
- display: block;
- width: 12rem;
- margin: 2rem 6.5rem;
- }
- .name{
- font-size: 1rem;
- color: #333;
- }
- </style>
-
- </head>
- <body>
- <div style="height: 3.5em"></div>
- <div class="container">
- <img src="{$userInfo.header_img}" class="headerImg">
- <p class="name">{$userInfo.real_name}</p>
- <div id="qrcode">
- </div>
- <p style=" color: #333;
- font-size: 1.1rem;">请到店出示使用!</p>
- </div>
- </body>
- <script>
- $(function(){
- new QRCode(document.getElementById("qrcode"), "{$userInfo.mobile}");
- })
- </script>
-
- </html>
|