123456789101112131415161718192021222324252627 |
- {extend name="public/base_el"/}
- {block name="css"}
- <style>
- .title {margin-top:100px;}
- .title p{margin:10px auto;padding:0 20px;text-align: center;font-size:24px;font-weight: 700;}
- </style>
- {/block}
- {block name="body"}
- <div class="title">{$review.name}</div>
- <div style="margin: 100px 20px;text-align: center;">
- <el-button type="primary" size="large" @click="toStart">开始测评</el-button>
- </div>
- {/block}
- {block name="script"}
- <script>
- function v_setup() {
- let base = {};
- base.toStart = () => {
- location.href = "{:url('officer/answer')}?id={$review.id}"
- }
- return base;
- }
- </script>
- {/block}
|