1234567891011121314151617181920212223242526 |
- <template>
- <index-card title="模拟志愿">
- <el-image :src="require('@/assets/images/index/voluntary/voluntary-simulate.png')"/>
- <div class="fx-row fx-cen-cen">
- <div class="mt15">
- <el-button type="primary" size="large" @click="$router.push({name: 'SimulatedVolunteer'})">进入填报</el-button>
- <el-button type="primary" size="large" @click="$router.push({name: 'VolunteerList'})">我的志愿</el-button>
- </div>
- </div>
- </index-card>
- </template>
- <script>
- import IndexCard from "@/views/index/components/index-card.vue";
- export default {
- name: "index-card-voluntary-entry",
- components: {IndexCard}
- }
- </script>
- <style scoped>
- .el-button + .el-button {
- margin-left: 40px;
- }
- </style>
|