describe.html 753 B

123456789101112131415161718192021222324252627282930313233343536
  1. {extend name="public/base_human"/}
  2. {block name="css"}
  3. <style>
  4. </style>
  5. {/block}
  6. {block name="body"}
  7. <van-nav-bar
  8. class="nav-theme"
  9. :fixed="true"
  10. :placeholder="true"
  11. left-text="返回"
  12. left-arrow
  13. @click-left="onBack"
  14. >
  15. <template #title>
  16. <span class="text-white">大会介绍</span>
  17. </template>
  18. </van-nav-bar>
  19. <img src="/static/mobile/images/human_describe.png" style="width:100%;display: block;">
  20. <img src="/static/mobile/images/human_process.png" style="width:100%;display: block;">
  21. {/block}
  22. {block name="script"}
  23. <script>
  24. function v_setup() {
  25. let base = {};
  26. base.onBack = () => {
  27. history.back();
  28. };
  29. return base;
  30. }
  31. </script>
  32. {/block}