login.vue 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <template>
  2. <div id="login">
  3. <el-row>
  4. <el-col :span="24" class="login">
  5. <el-link :underline="false" target="_blank">
  6. <el-image style="width:294px;height:50px;padding: 0 0 0 40px;" :src="yizhanshi"></el-image>
  7. </el-link>
  8. <el-link :underline="false" target="_blank" href="http://jilinbys.ncss.org.cn/login">
  9. <el-image style="width:112px;height:50px;padding: 0 0 0 15px;" :src="xuesheng"></el-image>
  10. </el-link>
  11. <el-link :underline="false" target="_blank" href="http://jilinbys.ncss.org.cn/rec/login">
  12. <el-image style="width:112px;height:50px;padding: 0 0 0 15px;" :src="qiye"></el-image>
  13. </el-link>
  14. <el-link :underline="false" target="_blank" href="http://file.ncss.org.cn/ncsFile/ncss/guidebook/student_guide.pdf">
  15. <el-image style="width:167px;height:50px;padding: 0 0 0 190px;" :src="shouce"></el-image>
  16. </el-link>
  17. <el-link :underline="false" target="_blank" href="http://file.ncss.org.cn/ncsFile/ncss/guidebook/rec_guide.pdf">
  18. <el-image style="width:167px;height:50px;padding: 0 0 0 15px;" :src="shouces"></el-image>
  19. </el-link>
  20. </el-col>
  21. </el-row>
  22. </div>
  23. </template>
  24. <script>
  25. export default {
  26. name: 'login',
  27. props: {},
  28. components: {},
  29. data: () => ({
  30. yizhanshi: require('@/assets/yizhan.png'),
  31. xuesheng: require('@/assets/xuesheng.png'),
  32. qiye: require('@/assets/qiye.png'),
  33. shouce: require('@/assets/shouce.png'),
  34. shouces: require('@/assets/shouces.png'),
  35. }),
  36. created() {},
  37. computed: {},
  38. methods: {},
  39. };
  40. </script>
  41. <style lang="less" scoped>
  42. .login {
  43. height: 50px;
  44. line-height: 0px;
  45. background-color: #4193c5;
  46. }
  47. .login .el-link {
  48. height: 48px;
  49. }
  50. </style>