123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <template>
- <div id="login">
- <el-row>
- <el-col :span="24">
- <el-col :span="8" class="login">
- <el-link :underline="false" href="http://hr.smart.cc-lotus.info/www/login">
- <el-image style="width:75px;height:75px;" :src="shengyuan"></el-image>
- <p class="mainTwoTit">生源信息</p>
- </el-link>
- </el-col>
- <el-col :span="8" class="login">
- <el-link :underline="false" href="http://hr.smart.cc-lotus.info/www/login">
- <el-image style="width:75px;height:75px;" :src="qiye"></el-image>
- <p class="mainTwoTit">单位登录/注册</p>
- </el-link>
- </el-col>
- <el-col :span="8" class="login">
- <el-link :underline="false" href="http://99991.smart.cc-lotus.info/www/student/login">
- <el-image style="width:75px;height:75px;" :src="xuesheng"></el-image>
- <p class="mainTwoTit">学生登录</p>
- </el-link>
- </el-col>
- </el-col>
- </el-row>
- </div>
- </template>
- <script>
- export default {
- name: 'login',
- props: {},
- components: {},
- data: () => ({
- shengyuan: require('../../../assets/shengyuan.png'),
- qiye: require('../../../assets/company.png'),
- xuesheng: require('../../../assets/stu.png'),
- }),
- created() {},
- computed: {},
- methods: {},
- };
- </script>
- <style lang="less" scoped>
- .login {
- text-align: center;
- padding: 10px 0 0 0;
- }
- .mainTwoTit {
- font-size: 18px;
- color: #666;
- font-family: 微软雅黑;
- margin: 0;
- padding: 10px 0;
- }
- </style>
|