tips.html 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. .apply {
  29. margin-top: 10px;
  30. text-align: center;
  31. }
  32. .apply a {
  33. color: var(--red);
  34. }
  35. </style>
  36. {/block}
  37. {block name="body"}
  38. <van-nav-bar
  39. class="nav-theme"
  40. :fixed="true"
  41. :placeholder="true"
  42. >
  43. <template #title>
  44. <span class="text-white">提示</span>
  45. </template>
  46. </van-nav-bar>
  47. <div style="width:100%;height:46px;"></div>
  48. <h3 class="msg">{$msg}</h3>
  49. <p class="tips">如有疑问,请加下方工作人员微信</p>
  50. <img src="/static/mobile/images/wechat_qrcode.jpg" class="wechat" alt="">、
  51. <p class="apply"><a href="{:url('human/resetApply')}">重新报名</a></p>
  52. {/block}
  53. {block name="script"}
  54. <script>
  55. function v_setup() {
  56. let base = {};
  57. return base;
  58. }
  59. </script>
  60. {/block}