index.html 860 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {extend name="public/base"/}
  2. {block name="css"}
  3. <style>
  4. .title {margin-top:50px;}
  5. .title p{margin:10px auto;padding:0 20px;text-align: center;font-size:18px;font-weight: 700;}
  6. </style>
  7. {/block}
  8. {block name="body"}
  9. <van-nav-bar
  10. class="nav-theme"
  11. :fixed="true"
  12. :placeholder="true"
  13. >
  14. <template #title>
  15. <span class="text-white">人资测评系统</span>
  16. </template>
  17. </van-nav-bar>
  18. <div class="title">{$review.name}</div>
  19. <div style="margin: 100px 20px;">
  20. <van-button block type="primary" size="large" @click="toStart">
  21. 开始测评
  22. </van-button>
  23. </div>
  24. {/block}
  25. {block name="script"}
  26. <script>
  27. function v_setup() {
  28. let base = {};
  29. base.toStart = () => {
  30. location.href = "{:url('officer/answer')}?id={$review.id}"
  31. }
  32. return base;
  33. }
  34. </script>
  35. {/block}