show_seat.html 759 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {extend name="public/base"/}
  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 auto;
  11. padding:10px;
  12. border:1px solid #999;
  13. width: 80%;
  14. font-size:34px;
  15. border-radius: 10px;
  16. }
  17. </style>
  18. {/block}
  19. {block name="body"}
  20. <van-nav-bar
  21. class="nav-theme"
  22. :fixed="true"
  23. :placeholder="true"
  24. >
  25. <template #title>
  26. <span class="text-white">选座成功</span>
  27. </template>
  28. </van-nav-bar>
  29. <div style="width:100%;height:46px;"></div>
  30. <h3 class="msg">{$msg}</h3>
  31. {/block}
  32. {block name="script"}
  33. <script>
  34. function v_setup() {
  35. let base = {};
  36. return base;
  37. }
  38. </script>
  39. {/block}