hires.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <template>
  2. <div>
  3. <ul class="company-con">
  4. <li v-for="item,index in company">
  5. <img :src="item.imgArr" alt="">
  6. <label>{{item.companyname}}</label>
  7. </li>
  8. </ul>
  9. </div>
  10. </template>
  11. <script>
  12. export default{
  13. name:'hire',
  14. data(){
  15. return{
  16. company:[
  17. {
  18. imgArr:'../../../assets/expo2019.png',
  19. companyname:'苏州天泓燃气有限公司'
  20. },
  21. {
  22. imgArr:'../../../assets/expo2019.png',
  23. companyname:'苏州天泓燃气有限公司'
  24. },
  25. {
  26. imgArr:'../../../assets/expo2019.png',
  27. companyname:'苏州天泓燃气有限公司'
  28. },
  29. {
  30. imgArr:'../../../assets/expo2019.png',
  31. companyname:'苏州天泓燃气有限公司'
  32. },
  33. {
  34. imgArr:'../../../assets/expo2019.png',
  35. companyname:'苏州天泓燃气有限公司'
  36. },
  37. {
  38. imgArr:'../../../assets/expo2019.png',
  39. companyname:'苏州天泓燃气有限公司'
  40. },
  41. {
  42. imgArr:'../../../assets/expo2019.png',
  43. companyname:'苏州天泓燃气有限公司'
  44. },
  45. {
  46. imgArr:'../../../assets/expo2019.png',
  47. companyname:'苏州天泓燃气有限公司'
  48. }
  49. ]
  50. }
  51. }
  52. }
  53. </script>
  54. <style>
  55. body{
  56. position: relative;
  57. }
  58. .company-con{
  59. width: 100%;
  60. height: 35vh;
  61. margin: 0 auto;
  62. justify-content: center;
  63. align-items: center;
  64. position: absolute;
  65. }
  66. .company-con > li{
  67. width: 17.5rem;
  68. height: 20vh;
  69. background-color: #fafafa;
  70. border: 1px solid #dfdbda;
  71. position: absolute;
  72. }
  73. .company-con > li > img{
  74. width: 50%;
  75. height: 13vh;
  76. margin-left: 4.5rem;
  77. }
  78. .company-con> li:nth-child(1){
  79. top: 36rem;
  80. left: 12.4rem;
  81. }
  82. .company-con> li:nth-child(2){
  83. top: 36rem;
  84. left: 30.5rem;
  85. }
  86. .company-con> li:nth-child(3){
  87. top: 36rem;
  88. left: 48.6rem;
  89. }
  90. .company-con> li:nth-child(4){
  91. top: 36rem;
  92. left: 66.7rem;
  93. }
  94. .company-con> li:nth-child(5){
  95. top: 46.2rem;
  96. left: 12.4rem;
  97. }
  98. .company-con> li:nth-child(6){
  99. top: 46.2rem;
  100. left: 30.5rem;
  101. }
  102. .company-con> li:nth-child(7){
  103. top: 46.2rem;
  104. left: 48.6rem;
  105. }
  106. .company-con> li:nth-child(8){
  107. top: 46.2rem;
  108. left: 66.7rem;
  109. }
  110. .company-con > li > label{
  111. color: #00030c;
  112. font-size: 13px;
  113. position: absolute;
  114. left: 75px;
  115. bottom: 10px;
  116. }
  117. </style>