tips.html 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {extend name="public/base_human"/}
  2. {block name="css"}
  3. <style>
  4. .icon{
  5. text-align:center;
  6. margin-top:50px;
  7. }
  8. .msg{
  9. text-align:center;
  10. margin:0;
  11. padding:0;
  12. font-size:24px;
  13. }
  14. .tips{
  15. text-align:center;
  16. margin-top:50px;
  17. font-size:14px;
  18. color:#aaa;
  19. }
  20. .tips .num{
  21. color:#FF589B;
  22. }
  23. .wechat {
  24. width: 80%;
  25. display: block;
  26. margin: 0 auto;
  27. }
  28. </style>
  29. {/block}
  30. {block name="body"}
  31. <van-nav-bar
  32. class="nav-theme"
  33. :fixed="true"
  34. :placeholder="true"
  35. >
  36. <template #title>
  37. <span class="text-white">提示</span>
  38. </template>
  39. </van-nav-bar>
  40. <div style="width:100%;height:46px;"></div>
  41. <h3 class="msg">{$msg}</h3>
  42. <p class="tips">如有疑问,请加下方工作人员微信</p>
  43. <img src="/static/mobile/images/wechat_qrcode.jpg" class="wechat" alt="">
  44. {/block}
  45. {block name="script"}
  46. <script>
  47. function v_setup() {
  48. let base = {};
  49. return base;
  50. }
  51. </script>
  52. {/block}