You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

273 lines
7.5 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. <template>
  2. <div class="bottom_container">
  3. <div class="info_container">
  4. <div class="real">
  5. <div class="first_wrap">
  6. <div class="title">更多服务 More</div>
  7. <div class="links">
  8. <div class="link" @click="toPage('/')">
  9. <span>整机开发</span>
  10. <p>></p>
  11. </div>
  12. <div class="link" @click="toPage('/pc/design')">
  13. <span>工业设计</span>
  14. <p>></p>
  15. </div>
  16. <div class="link" @click="toPage('/pc/hardware')">
  17. <span>软硬件开发</span>
  18. <p>></p>
  19. </div>
  20. <div class="link" @click="toPage('/pc/metal')">
  21. <span>加工生产</span>
  22. <p>></p>
  23. </div>
  24. <!-- <p class="link" @click="toPage('/medical')">医疗健康</p> -->
  25. </div>
  26. </div>
  27. <div class="line1"></div>
  28. <div class="second_wrap">
  29. <div class="title">联系我们 Contact</div>
  30. <img class="qrcode" :src="CodePng" alt="" />
  31. <div class="info_text">
  32. <div class="line_phone">
  33. <span>商务咨询</span>
  34. <p class="phone">
  35. <span>1</span>
  36. <span>3</span>
  37. <span>7</span>
  38. <span>1</span>
  39. <span>7</span>
  40. <span>8</span>
  41. <span>9</span>
  42. <span>2</span>
  43. <span>0</span>
  44. <span>1</span>
  45. <span>8</span>
  46. </p>
  47. <span>| 袁老师</span>
  48. </div>
  49. <div class="line_phone">
  50. <span>商务咨询</span>
  51. <p class="phone">
  52. <span>1</span>
  53. <span>5</span>
  54. <span>6</span>
  55. <span>2</span>
  56. <span>4</span>
  57. <span>9</span>
  58. <span>6</span>
  59. <span>2</span>
  60. <span>2</span>
  61. <span>9</span>
  62. <span>0</span>
  63. </p>
  64. <span>| 杨老师</span>
  65. </div>
  66. </div>
  67. </div>
  68. <div class="line2"></div>
  69. <div class="third_wrap">
  70. <div class="title">电子邮箱 E-mail</div>
  71. <div class="info_text mb">
  72. <p>商务邮箱info@iflytop.com</p>
  73. <p>招聘邮箱hr@iflytop.com</p>
  74. </div>
  75. <div class="title">我们的位置 Position</div>
  76. <div class="info_text">
  77. <p>北京市昌平区回龙观街道</p>
  78. <p>博纳集团3号楼一层 产品梦工厂</p>
  79. </div>
  80. </div>
  81. </div>
  82. </div>
  83. <div class="map_container" id="map_container"></div>
  84. </div>
  85. </template>
  86. <script setup>
  87. import { onMounted } from 'vue'
  88. import CodePng from '@/assets/design/bottom/code.png'
  89. import { useRouter } from 'vue-router'
  90. const router = useRouter()
  91. const toPage = path => {
  92. document.body.scrollTop = document.documentElement.scrollTop = 0
  93. window.location.href = `http://iflytop.com${path}`
  94. }
  95. const props = defineProps({
  96. isBlack: {
  97. type: Boolean,
  98. },
  99. })
  100. onMounted(() => {
  101. var map = new BMapGL.Map('map_container')
  102. var point = new BMapGL.Point(116.311629, 40.088971)
  103. map.centerAndZoom(point, 15)
  104. map.enableScrollWheelZoom(true)
  105. var opts = {
  106. width: 250, // 信息窗口宽度
  107. height: 60, // 信息窗口高度
  108. title: '产品梦工厂', // 信息窗口标题
  109. }
  110. var infoWindow = new BMapGL.InfoWindow(
  111. '北京市昌平区回龙观街道博纳集团3号楼一层 产品梦工厂',
  112. opts,
  113. ) // 创建信息窗口对象
  114. map.openInfoWindow(infoWindow, map.getCenter())
  115. })
  116. </script>
  117. <style lang="scss" scoped>
  118. .bottom_container {
  119. background: #fff;
  120. display: flex;
  121. align-items: center;
  122. height: 368px;
  123. box-sizing: border-box;
  124. .info_container {
  125. flex: 1;
  126. height: 368px;
  127. padding: 40px;
  128. box-sizing: border-box;
  129. .real {
  130. border-radius: 38px;
  131. background: #f6f6f6;
  132. width: 100%;
  133. display: flex;
  134. height: 287px;
  135. padding: 35px 0 27px 119px;
  136. box-sizing: border-box;
  137. .first_wrap {
  138. display: flex;
  139. flex-direction: column;
  140. align-items: flex-start;
  141. .title {
  142. font-family: Source Han Sans;
  143. font-size: 18px;
  144. font-weight: bold;
  145. line-height: normal;
  146. letter-spacing: 0em;
  147. font-feature-settings: 'kern' on;
  148. color: #000000;
  149. margin-bottom: 32px;
  150. }
  151. .links {
  152. display: flex;
  153. flex-direction: column;
  154. align-items: flex-start;
  155. .link {
  156. font-family: Source Han Sans;
  157. font-size: 16px;
  158. font-weight: bold;
  159. line-height: normal;
  160. letter-spacing: 0.06em;
  161. font-feature-settings: 'kern' on;
  162. color: #000000;
  163. margin-bottom: 17px;
  164. cursor: pointer;
  165. border-bottom: solid 1px #ddd;
  166. width: 270px;
  167. padding-bottom: 6px;
  168. display: flex;
  169. align-items: center;
  170. justify-content: space-between;
  171. // &:hover {
  172. // text-decoration: underline;
  173. // }
  174. }
  175. }
  176. }
  177. .line1 {
  178. height: 224.89px;
  179. width: 1px;
  180. background: #d8d8d8;
  181. margin-right: 101px;
  182. margin-left: 45px;
  183. }
  184. .second_wrap {
  185. display: flex;
  186. flex-direction: column;
  187. align-items: flex-start;
  188. .title {
  189. font-family: Source Han Sans;
  190. font-size: 18px;
  191. font-weight: bold;
  192. line-height: normal;
  193. letter-spacing: 0em;
  194. font-feature-settings: 'kern' on;
  195. color: #000000;
  196. margin-bottom: 18px;
  197. }
  198. .qrcode {
  199. width: 111px;
  200. height: 108px;
  201. margin-bottom: 16px;
  202. }
  203. .info_text {
  204. .line_phone {
  205. font-family: Source Han Sans;
  206. font-size: 16px;
  207. font-weight: 500;
  208. line-height: 26px;
  209. letter-spacing: 0.04em;
  210. font-feature-settings: 'kern' on;
  211. color: #000000;
  212. display: flex;
  213. align-items: center;
  214. justify-content: space-between;
  215. flex-wrap: nowrap;
  216. .phone {
  217. flex: 1;
  218. display: flex;
  219. align-items: center;
  220. justify-content: space-between;
  221. margin-right: 6px;
  222. }
  223. }
  224. }
  225. }
  226. .line2 {
  227. height: 224.89px;
  228. width: 1px;
  229. background: #d8d8d8;
  230. margin-right: 81px;
  231. margin-left: 116px;
  232. }
  233. .third_wrap {
  234. display: flex;
  235. flex-direction: column;
  236. align-items: flex-start;
  237. .title {
  238. font-family: Source Han Sans;
  239. font-size: 18px;
  240. font-weight: bold;
  241. line-height: normal;
  242. letter-spacing: 0em;
  243. font-feature-settings: 'kern' on;
  244. color: #000000;
  245. margin-bottom: 18px;
  246. }
  247. .info_text {
  248. font-family: 思源黑体;
  249. font-size: 16px;
  250. font-weight: normal;
  251. line-height: 26px;
  252. letter-spacing: 0.04em;
  253. font-feature-settings: 'kern' on;
  254. color: #000000;
  255. }
  256. .mb {
  257. margin-bottom: 27px;
  258. }
  259. }
  260. }
  261. }
  262. .map_container {
  263. width: 495px;
  264. height: 368px;
  265. }
  266. }
  267. </style>