serviceBuyOk.html 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <!DOCTYPE html>
  2. <html xmlns:th="http://www.thymeleaf.org">
  3. <head>
  4. <title>购买会员卡成功</title>
  5. <script th:include="weixin/common/includeJS_CSS" th:remove="tag" ></script>
  6. <style type="text/css">
  7. .sfkbox .tiptxt h3 {
  8. margin-bottom: 10px;
  9. }
  10. .sfkbox .txt{
  11. text-align: center;
  12. font-size: 12px;
  13. }
  14. .sfkbox .txt img{
  15. margin: 10px auto;
  16. }
  17. </style>
  18. </head>
  19. <body>
  20. <div class="mui-content">
  21. <div class="sfkbox">
  22. <div class="panel">
  23. <div class="tiptxt">
  24. <!-- <img th:src="${imgUrl}+'/images/Group 9.png'" /> -->
  25. <br/>
  26. <h3>请扫描二维码</h3>
  27. <h3>下载小塾学伴app</h3>
  28. </div>
  29. </div>
  30. <div class="panel panelshodow">
  31. <div class="txt" >
  32. <p >
  33. <img th:src="@{/static/images/qrcode-icon.png}">
  34. </p>
  35. 下载后直接用填写的手机号即可登录
  36. </div>
  37. </div>
  38. <div class="panel">
  39. <a href="javascript:void(0);" id="save" class="btn-blue">关闭</a>
  40. </div>
  41. </div>
  42. </div>
  43. </body>
  44. <script type="text/javascript">
  45. $('#save').on('click',function(){
  46. WeixinJSBridge.call('closeWindow');
  47. });
  48. </script>
  49. <script th:include="weixin/vip/vipjssdk" th:remove="tag"></script>
  50. </html>