index-card-voluntary-entry.vue 735 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <index-card title="模拟志愿">
  3. <el-image :src="require('@/assets/images/index/voluntary/voluntary-simulate.png')"/>
  4. <div class="fx-row fx-cen-cen">
  5. <div class="mt15">
  6. <el-button type="primary" size="large" @click="$router.push({name: 'SimulatedVolunteer'})">进入填报</el-button>
  7. <el-button type="primary" size="large" @click="$router.push({name: 'VolunteerList'})">我的志愿</el-button>
  8. </div>
  9. </div>
  10. </index-card>
  11. </template>
  12. <script>
  13. import IndexCard from "@/views/index/components/index-card.vue";
  14. export default {
  15. name: "index-card-voluntary-entry",
  16. components: {IndexCard}
  17. }
  18. </script>
  19. <style scoped>
  20. .el-button + .el-button {
  21. margin-left: 40px;
  22. }
  23. </style>