tuwen.html 696 B

12345678910111213141516171819202122232425262728293031323334
  1. {extend name="public/base_human"/}
  2. {block name="css"}
  3. <style>
  4. .company {display: block;width: 100%;}
  5. </style>
  6. {/block}
  7. {block name="body"}
  8. <van-nav-bar
  9. class="nav-theme"
  10. :fixed="true"
  11. :placeholder="true"
  12. left-text="返回"
  13. left-arrow
  14. @click-left="onBack"
  15. >
  16. <template #title>
  17. <span class="text-white">图文直播</span>
  18. </template>
  19. </van-nav-bar>
  20. <img src="/static/mobile/images/human/tuwen.jpg" class="company" alt="">
  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}