login.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <template>
  2. <div id="login">
  3. <el-row>
  4. <el-col :span="24">
  5. <el-col :span="8" class="login">
  6. <el-link :underline="false" href="http://hr.smart.cc-lotus.info/www/login">
  7. <el-image style="width:75px;height:75px;" :src="shengyuan"></el-image>
  8. <p class="mainTwoTit">生源信息</p>
  9. </el-link>
  10. </el-col>
  11. <el-col :span="8" class="login">
  12. <el-link :underline="false" href="http://hr.smart.cc-lotus.info/www/login">
  13. <el-image style="width:75px;height:75px;" :src="qiye"></el-image>
  14. <p class="mainTwoTit">单位登录/注册</p>
  15. </el-link>
  16. </el-col>
  17. <el-col :span="8" class="login">
  18. <el-link :underline="false" href="http://99991.smart.cc-lotus.info/www/student/login">
  19. <el-image style="width:75px;height:75px;" :src="xuesheng"></el-image>
  20. <p class="mainTwoTit">学生登录</p>
  21. </el-link>
  22. </el-col>
  23. </el-col>
  24. </el-row>
  25. </div>
  26. </template>
  27. <script>
  28. export default {
  29. name: 'login',
  30. props: {},
  31. components: {},
  32. data: () => ({
  33. shengyuan: require('../../../assets/shengyuan.png'),
  34. qiye: require('../../../assets/company.png'),
  35. xuesheng: require('../../../assets/stu.png'),
  36. }),
  37. created() {},
  38. computed: {},
  39. methods: {},
  40. };
  41. </script>
  42. <style lang="less" scoped>
  43. .login {
  44. text-align: center;
  45. padding: 10px 0 0 0;
  46. }
  47. .mainTwoTit {
  48. font-size: 18px;
  49. color: #666;
  50. font-family: 微软雅黑;
  51. margin: 0;
  52. padding: 10px 0;
  53. }
  54. </style>