yizhanshi.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. <template>
  2. <div id="yizhanshi">
  3. <el-row v-if="image">
  4. <el-col :span="24">
  5. <el-col class="ThrMainLogin" :span="24">
  6. <el-link :underline="false">
  7. <el-image style="width: 253px; height: 35px" :src="image.yizhan"></el-image>
  8. </el-link>
  9. <el-link :underline="false" href="http://jilinbys.ncss.org.cn/login">
  10. <el-image style="width: 98px; height: 37px" :src="image.xuesheng"></el-image>
  11. </el-link>
  12. <el-link :underline="false" href="http://jilinbys.ncss.org.cn/rec/login">
  13. <el-image style="width: 98px; height: 37px" :src="image.danwei"></el-image>
  14. </el-link>
  15. <el-link :underline="false" href="http://file.ncss.org.cn/ncsFile/ncss/guidebook/student_guide.pdf">
  16. <el-image style="width: 141px; height: 24px" :src="image.shouce"></el-image>
  17. </el-link>
  18. <el-link :underline="false" href="http://file.ncss.org.cn/ncsFile/ncss/guidebook/rec_guide.pdf">
  19. <el-image style="width: 141px; height: 24px" :src="image.shouces"></el-image>
  20. </el-link>
  21. </el-col>
  22. <el-col :span="24" class="yizhan">
  23. <el-col :span="12" class="yizhanTit" v-for="(item, index) in yizhanList" :key="index" :type="item.type">
  24. <el-link :underline="false" href="" class="item-link has-dot" target="_blank">
  25. <p style="font-size:13px;">{{ item.title }}({{ item.time }})</p>
  26. </el-link>
  27. </el-col>
  28. </el-col>
  29. </el-col>
  30. </el-row>
  31. </div>
  32. </template>
  33. <script>
  34. export default {
  35. name: 'yizhanshi',
  36. props: {},
  37. components: {},
  38. data: () => ({
  39. image: {
  40. yizhan: require('@/assets/yizhan.jpg'),
  41. xuesheng: require('@/assets/xuesheng.jpg'),
  42. danwei: require('@/assets/danwei.jpg'),
  43. shouce: require('@/assets/shouce.jpg'),
  44. shouces: require('@/assets/shouces.jpg'),
  45. },
  46. yizhanList: [
  47. {
  48. title: '[浙江] 宁波市天普橡胶科技股份有限公司',
  49. time: '11-22',
  50. },
  51. {
  52. title: '[浙江] 杭州巨峰科技有限公司',
  53. time: '11-22',
  54. },
  55. {
  56. title: '[山东] 青岛美艾丝国际贸易有限公司',
  57. time: '11-22',
  58. },
  59. {
  60. title: '[北京] 北京粉笔蓝天科技有限公司',
  61. time: '11-22',
  62. },
  63. {
  64. title: '[浙江] 杭州巨峰科技有限公司',
  65. time: '11-22',
  66. },
  67. {
  68. title: '[北京] 卓然天工自动化仪表(北京)有限公司',
  69. time: '11-22',
  70. },
  71. {
  72. title: '[山东] 青岛宏智软件有限公司',
  73. time: '11-22',
  74. },
  75. {
  76. title: '[北京] 北京棣南新宇科技有限公司',
  77. time: '11-22',
  78. },
  79. {
  80. title: '[天津] 天津环球优路教育科技有限公司',
  81. time: '11-22',
  82. },
  83. {
  84. title: '[北京] 北京棣南新宇科技有限公司',
  85. time: '11-22',
  86. },
  87. ],
  88. }),
  89. created() {},
  90. computed: {},
  91. methods: {},
  92. };
  93. </script>
  94. <style lang="less" scoped>
  95. p {
  96. margin: 0;
  97. padding: 0;
  98. }
  99. .ThrMainLogin {
  100. float: left;
  101. width: 100%;
  102. height: auto;
  103. background: #4193c5;
  104. }
  105. .ThrMainLogin .el-link {
  106. margin: 0 9px;
  107. padding: 8px 0;
  108. }
  109. .ThrMainLogin img {
  110. max-width: 100%;
  111. max-height: 100%;
  112. vertical-align: middle;
  113. }
  114. .yizhanTit {
  115. padding: 11px 10px;
  116. border-bottom: 1px dashed #ccc;
  117. overflow: hidden;
  118. text-overflow: ellipsis;
  119. white-space: nowrap;
  120. }
  121. </style>