contact.vue 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. <template>
  2. <div class="com-main com-width-1400 com-margin-auto">
  3. <el-breadcrumb separator-class="el-icon-arrow-right">
  4. <el-breadcrumb-item :to="{ path: '/' }">Home</el-breadcrumb-item>
  5. <el-breadcrumb-item>Contacts</el-breadcrumb-item>
  6. </el-breadcrumb>
  7. <p class="title">Key contacts at Promocollection</p>
  8. <div class="line"></div>
  9. <div class="description">
  10. <p>General contact info</p>
  11. <p>Email: Info@promocollection.uk</p>
  12. <p>Phone:1300 369 252</p>
  13. <p>Address: 15/10 Chilvers Road, Thornleigh, NSW</p>
  14. </div>
  15. <div class="content">
  16. <ul class="item">
  17. <li v-for="item in accountManagersList" :key="item.id">
  18. <div class="item-img">
  19. <img
  20. :src="
  21. $mediaRegExp.test(item.image)
  22. ? item.image
  23. : 'https://www.promocollection.uk/' + item.image
  24. "
  25. alt=""
  26. />
  27. </div>
  28. <div class="item-info">
  29. <div class="name">{{ item.name }}</div>
  30. <div class="position" :title="item.position" v-if="item.position">
  31. {{ item.position }}
  32. </div>
  33. <div class="introduction" :title="item.introduction" v-if="item.introduction">
  34. {{ item.introduction }}
  35. </div>
  36. <div class="email">
  37. <img src="@/assets/img/home/e-mail.png" alt="" />
  38. <span :title="item.email">{{ item.email }}</span>
  39. </div>
  40. <div class="phone" v-if="item.phone">
  41. <img src="@/assets/img/home/phone.png" alt="" />
  42. <span :title="item.phone">{{ item.phone }}</span>
  43. </div>
  44. <div class="Landline" v-if="item.tel">
  45. <img src="@/assets/img/home/Landline.png" alt="" />
  46. <span :title="item.tel">{{ item.tel }}</span>
  47. </div>
  48. </div>
  49. </li>
  50. </ul>
  51. <ul class="item">
  52. <li v-for="item in financeTeamList" :key="item.id">
  53. <div class="item-img">
  54. <img
  55. :src="
  56. $mediaRegExp.test(item.image)
  57. ? item.image
  58. : 'https://www.promocollection.uk/' + item.image
  59. "
  60. alt=""
  61. />
  62. </div>
  63. <div class="item-info">
  64. <div class="name">{{ item.name }}</div>
  65. <div class="position">
  66. {{ item.position }}
  67. </div>
  68. <div class="introduction" :title="item.introduction">
  69. {{ item.introduction }}
  70. </div>
  71. <div class="email">
  72. <img src="@/assets/img/home/e-mail.png" alt="" />
  73. <span>{{ item.email }}</span>
  74. </div>
  75. <div class="phone">
  76. <img src="@/assets/img/home/phone.png" alt="" />
  77. <span>{{ item.phone }}</span>
  78. </div>
  79. <div class="Landline">
  80. <img src="@/assets/img/home/Landline.png" alt="" />
  81. <span>{{ item.tel }}</span>
  82. </div>
  83. </div>
  84. </li>
  85. </ul>
  86. </div>
  87. </div>
  88. </template>
  89. <script>
  90. export default {
  91. data() {
  92. return {
  93. // total: 0,
  94. // listQuery: {
  95. // page: 1,
  96. // limit: 20,
  97. // },
  98. accountManagersList: [],
  99. financeTeamList: [],
  100. };
  101. },
  102. async created() {
  103. await this.getInfoList();
  104. },
  105. methods: {
  106. getInfoList() {
  107. this.$axios
  108. .get(
  109. "others/contact/list"
  110. // ,{
  111. // page: this.listQuery.page,
  112. // limit: this.listQuery.limit,
  113. // }
  114. )
  115. .then((res) => {
  116. if (res.code == 1) {
  117. res.result.data.forEach((item) => {
  118. if (item.id === 1) {
  119. this.accountManagersList = item.contact;
  120. } else if (item.id == 2) {
  121. this.financeTeamList = item.contact;
  122. }
  123. });
  124. }
  125. })
  126. .catch(() => {});
  127. },
  128. },
  129. };
  130. </script>
  131. <style lang="scss" scoped>
  132. .title {
  133. height: 50px;
  134. font-size: 35px;
  135. font-family: Proxima Nova;
  136. font-weight: bold;
  137. color: #00213b;
  138. text-align: center;
  139. line-height: 50px;
  140. }
  141. .line {
  142. width: 99px;
  143. height: 4px;
  144. background: #e90000;
  145. margin: 15px auto 0px;
  146. }
  147. .description {
  148. font-family: Proxima Nova;
  149. margin: 48px auto;
  150. width: 490px;
  151. height: 180px;
  152. font-size: 18px;
  153. background: #ffffff;
  154. color: #00213b;
  155. border: 1px solid #f2f2f2;
  156. box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
  157. p {
  158. font-weight: 400;
  159. line-height: 24px;
  160. margin: 0px 40px 5px;
  161. }
  162. p:nth-of-type(1) {
  163. font-weight: bold;
  164. line-height: 24px;
  165. text-align: center;
  166. margin: 26px auto;
  167. }
  168. }
  169. .content {
  170. padding: 0px 50px;
  171. .item {
  172. display: flex;
  173. justify-content: space-between;
  174. align-items: center;
  175. flex-wrap: wrap;
  176. li {
  177. display: flex;
  178. justify-content: flex-start;
  179. margin-bottom: 31px;
  180. .item-img {
  181. width: 234px;
  182. height: 348px;
  183. img {
  184. width: 234px;
  185. height: 348px;
  186. object-fit: cover;
  187. }
  188. }
  189. .item-info {
  190. width: 380px;
  191. font-family: Proxima Nova;
  192. margin-left: 20px;
  193. div {
  194. height: 24px;
  195. font-size: 16px;
  196. font-family: Proxima Nova;
  197. font-weight: 400;
  198. line-height: 24px;
  199. margin-bottom: 15px;
  200. color: #00213B;
  201. text-align: center;
  202. padding: 0 5px;
  203. }
  204. .name {
  205. font-size: 24px;
  206. font-weight: 600;
  207. margin-top: 10px;
  208. }
  209. .position {
  210. font-size: 18px;
  211. }
  212. .introduction {
  213. height: 100px;
  214. font-size: 16px;
  215. display: -webkit-box;
  216. -webkit-box-orient: vertical;
  217. -webkit-line-clamp: 4;
  218. overflow: hidden;
  219. text-overflow: ellipsis;
  220. }
  221. .email,
  222. .phone,
  223. .Landline {
  224. text-align: left;
  225. img {
  226. vertical-align: middle;
  227. margin-right: 12px;
  228. }
  229. }
  230. }
  231. &:hover {
  232. box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.15);
  233. }
  234. }
  235. }
  236. }
  237. :deep(.el-pagination.is-background) {
  238. .el-pager {
  239. li.number {
  240. background-color: #f8f8f8;
  241. border-radius: 50%;
  242. color: #a7a7a7;
  243. }
  244. li:not(.disabled).active {
  245. background-color: #00213b;
  246. color: #d4d7da;
  247. }
  248. }
  249. .btn-prev,
  250. .btn-next {
  251. border-radius: 50%;
  252. background-color: #fff;
  253. .el-icon-arrow-left:before {
  254. content: "";
  255. }
  256. .el-icon-arrow-right:before {
  257. content: "";
  258. }
  259. }
  260. }
  261. </style>