index.vue 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <template>
  2. <div id="index">
  3. <nut-cell title="招聘简章管理" :showIcon="true" @click.native="$router.push({ path: '/profile/index' })"> </nut-cell>
  4. <nut-cell title="职位管理" :showIcon="true" @click.native="$router.push({ path: '/jobs/index' })"> </nut-cell>
  5. <nut-cell title="校园宣讲会" :showIcon="true" @click.native="$router.push({ path: '/talk/index' })"> </nut-cell>
  6. <nut-cell title="校园招聘会" :showIcon="true" @click.native="$router.push({ path: '/jobfair/index' })"> </nut-cell>
  7. <nut-cell title="招聘信息管理" :showIcon="true" @click.native="$router.push({ path: '/jobinfo/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. metaInfo() {
  20. return {
  21. title: '企业管理',
  22. };
  23. },
  24. name: 'index',
  25. props: {},
  26. components: {},
  27. data: () => ({}),
  28. created() {},
  29. computed: {},
  30. methods: {
  31. back() {
  32. window.location.href = 'http://smart.cc-lotus.info/weixin/auth?redirect_uri=http://smart.cc-lotus.info/mobile/#/';
  33. },
  34. },
  35. };
  36. </script>
  37. <style lang="less" scoped>
  38. .btn__row {
  39. .el-col {
  40. margin-top: 1rem;
  41. }
  42. .el-button {
  43. width: 100%;
  44. border-radius: 30px;
  45. }
  46. }
  47. </style>