arrive.html 1.3 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. .click {
  15. text-align:center;
  16. margin-top:10px;
  17. font-size:14px;
  18. color:var(--blue);
  19. }
  20. .tips{
  21. text-align:center;
  22. margin-top:50px;
  23. font-size:14px;
  24. color:#aaa;
  25. }
  26. .tips .num{
  27. color:#FF589B;
  28. }
  29. .wechat {
  30. width: 80%;
  31. display: block;
  32. margin: 0 auto;
  33. }
  34. </style>
  35. {/block}
  36. {block name="body"}
  37. <van-nav-bar
  38. class="nav-theme"
  39. :fixed="true"
  40. :placeholder="true"
  41. >
  42. <template #title>
  43. <span class="text-white">提示</span>
  44. </template>
  45. </van-nav-bar>
  46. <div style="width:100%;height:46px;"></div>
  47. <h3 class="msg">{$msg}</h3>
  48. <p class="click" @click="toUrl">点我进入下一步</p>
  49. <p class="tips">如有疑问,请加下方工作人员微信</p>
  50. <img src="/static/mobile/images/wechat_qrcode.png" class="wechat" alt="">
  51. {/block}
  52. {block name="script"}
  53. <script>
  54. function v_setup() {
  55. let base = {};
  56. base.toUrl = () => {
  57. location.href = "{:url('human/index')}";
  58. };
  59. return base;
  60. }
  61. </script>
  62. {/block}