12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <!DOCTYPE html>
- <html xmlns:th="http://www.thymeleaf.org">
- <head>
- <title>购买会员卡成功</title>
- <script th:include="weixin/common/includeJS_CSS" th:remove="tag" ></script>
- <style type="text/css">
- .sfkbox .tiptxt h3 {
- margin-bottom: 10px;
- }
-
- .sfkbox .txt{
- text-align: center;
- font-size: 12px;
- }
-
- .sfkbox .txt img{
- margin: 10px auto;
- }
- </style>
- </head>
- <body>
- <div class="mui-content">
- <div class="sfkbox">
- <div class="panel">
- <div class="tiptxt">
- <!-- <img th:src="${imgUrl}+'/images/Group 9.png'" /> -->
- <br/>
- <h3>请扫描二维码</h3>
- <h3>下载小塾学伴app</h3>
- </div>
- </div>
- <div class="panel panelshodow">
- <div class="txt" >
- <p >
- <img th:src="@{/static/images/qrcode-icon.png}">
- </p>
- 下载后直接用填写的手机号即可登录
- </div>
- </div>
- <div class="panel">
- <a href="javascript:void(0);" id="save" class="btn-blue">关闭</a>
- </div>
- </div>
- </div>
- </body>
- <script type="text/javascript">
- $('#save').on('click',function(){
- WeixinJSBridge.call('closeWindow');
- });
- </script>
- <script th:include="weixin/vip/vipjssdk" th:remove="tag"></script>
- </html>
|