index.vue 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <template>
  2. <div id="index">
  3. <nut-cell title="校园招聘会" :showIcon="true" @click.native="$router.push({ path: '/jobfair/index' })"> </nut-cell>
  4. <nut-cell title="校园宣讲会" :showIcon="true" @click.native="$router.push({ path: '/talk/index' })"> </nut-cell>
  5. <nut-cell title="招聘信息管理" :showIcon="true" @click.native="$router.push({ path: '/jobinfo/index' })"> </nut-cell>
  6. <nut-cell title="职位管理" :showIcon="true" @click.native="$router.push({ path: '/jobs/index' })"> </nut-cell>
  7. <nut-cell title="招聘简章管理" :showIcon="true" @click.native="$router.push({ path: '/profile/index' })"> </nut-cell>
  8. <nut-cell title="生源查看" :showIcon="true" @click.native="$router.push({ path: '/source/index' })"> </nut-cell>
  9. <nut-cell title="HR信息" :showIcon="true" @click.native="$router.push({ path: '/hr/index' })"> </nut-cell>
  10. <el-row class="btn__row">
  11. <el-col :span="23">
  12. <el-button type="info" @click="back">返回首页 </el-button>
  13. </el-col>
  14. </el-row>
  15. </div>
  16. </template>
  17. <script>
  18. export default {
  19. name: 'index',
  20. props: {},
  21. components: {},
  22. data: () => ({}),
  23. created() {},
  24. computed: {},
  25. methods: {
  26. back() {
  27. window.location.href = '/';
  28. },
  29. },
  30. };
  31. </script>
  32. <style lang="less" scoped>
  33. .btn__row {
  34. .el-col {
  35. margin-top: 1rem;
  36. }
  37. .el-button {
  38. width: 100%;
  39. border-radius: 30px;
  40. }
  41. }
  42. </style>