index.html 659 B

123456789101112131415161718192021222324252627
  1. {extend name="public/base_el"/}
  2. {block name="css"}
  3. <style>
  4. .title {margin-top:100px;}
  5. .title p{margin:10px auto;padding:0 20px;text-align: center;font-size:24px;font-weight: 700;}
  6. </style>
  7. {/block}
  8. {block name="body"}
  9. <div class="title">{$review.name}</div>
  10. <div style="margin: 100px 20px;text-align: center;">
  11. <el-button type="primary" size="large" @click="toStart">开始测评</el-button>
  12. </div>
  13. {/block}
  14. {block name="script"}
  15. <script>
  16. function v_setup() {
  17. let base = {};
  18. base.toStart = () => {
  19. location.href = "{:url('officer/answer')}?id={$review.id}"
  20. }
  21. return base;
  22. }
  23. </script>
  24. {/block}