12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <template>
- <div id="index">
- <nut-cell title="招聘简章管理" :showIcon="true" @click.native="$router.push({ path: '/profile/index' })"> </nut-cell>
- <nut-cell title="职位管理" :showIcon="true" @click.native="$router.push({ path: '/jobs/index' })"> </nut-cell>
- <nut-cell title="校园宣讲会" :showIcon="true" @click.native="$router.push({ path: '/talk/index' })"> </nut-cell>
- <nut-cell title="校园招聘会" :showIcon="true" @click.native="$router.push({ path: '/jobfair/index' })"> </nut-cell>
- <nut-cell title="招聘信息管理" :showIcon="true" @click.native="$router.push({ path: '/jobinfo/index' })"> </nut-cell>
- <!-- <nut-cell title="生源查看" :showIcon="true" @click.native="$router.push({ path: '/source/index' })"> </nut-cell> -->
- <nut-cell title="HR信息" :showIcon="true" @click.native="$router.push({ path: '/hr/index' })"> </nut-cell>
- <el-row class="btn__row">
- <el-col :span="23">
- <el-button type="info" @click="back">返回首页 </el-button>
- </el-col>
- </el-row>
- </div>
- </template>
- <script>
- export default {
- metaInfo() {
- return {
- title: '企业管理',
- };
- },
- name: 'index',
- props: {},
- components: {},
- data: () => ({}),
- created() {},
- computed: {},
- methods: {
- back() {
- window.location.href = 'http://smart.cc-lotus.info/weixin/auth?redirect_uri=http://smart.cc-lotus.info/mobile/#/';
- },
- },
- };
- </script>
- <style lang="less" scoped>
- .btn__row {
- .el-col {
- margin-top: 1rem;
- }
- .el-button {
- width: 100%;
- border-radius: 30px;
- }
- }
- </style>
|