PcFooter.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526
  1. <template>
  2. <footer>
  3. <div
  4. class="footer-top"
  5. v-if="footerBannerList.length > 0">
  6. <el-image
  7. lazy
  8. :src="footerBannerList[0].image"
  9. alt=""
  10. class="footer-banner"
  11. fit="cover"></el-image>
  12. <div class="top-item">
  13. <p>Need ideas? Samples? Art assistance?</p>
  14. <p>Get in touch, we're here to help</p>
  15. <!-- <el-button
  16. class="btn btn-red"
  17. @click="openLoginDialog">
  18. Become a member
  19. </el-button> -->
  20. <div class="btn btn-blue">
  21. <nuxt-link
  22. to="/home/contact"
  23. v-if="isLogin">
  24. Contact Us
  25. </nuxt-link>
  26. <nuxt-link
  27. to="/home/contactPromoCollection"
  28. v-else>
  29. Contact Us
  30. </nuxt-link>
  31. </div>
  32. </div>
  33. </div>
  34. <div class="footer-middle com-margin-auto">
  35. <div class="middle com-margin-auto com-flex">
  36. <div class="middle-item-left">
  37. <img
  38. src="@/assets/img/logo_footer.png"
  39. alt="" />
  40. <p>{{ indexConfigWebsite.company_introduction }}</p>
  41. </div>
  42. <div class="middle-item-right">
  43. <div class="item-menu">
  44. <div class="item-title">OUR PRODUCTS</div>
  45. <div class="item-line"></div>
  46. <div class="item-content">
  47. <div>
  48. <ul>
  49. <li
  50. v-for="item in productList"
  51. :key="item.id">
  52. <nuxt-link
  53. :to="{
  54. name: 'category-firstCategory',
  55. params: {
  56. firstCategory: item.name
  57. .replace(/\s+/g, '-')
  58. .replace('-&', '')
  59. .toLowerCase(),
  60. id: item.id,
  61. },
  62. }">
  63. {{ item.name }}
  64. </nuxt-link>
  65. </li>
  66. </ul>
  67. </div>
  68. </div>
  69. </div>
  70. <div class="item-menu">
  71. <div class="item-title">CUSTOMER SUPPORT</div>
  72. <div class="item-line"></div>
  73. <div class="item-content">
  74. <div>
  75. <!-- <nuxt-link to="/home/helpCenter">Help Center </nuxt-link> -->
  76. <a
  77. href="mailto:Info@promocollection.uk?subject=Sample%20Request"
  78. v-show="audit_status">
  79. Sample Request
  80. </a>
  81. <nuxt-link to="/home/termsConditions">
  82. Terms & Conditions
  83. </nuxt-link>
  84. <!-- <nuxt-link
  85. to="/home/refundReturns"
  86. v-show="audit_status">
  87. Refund & Returns
  88. </nuxt-link> -->
  89. </div>
  90. </div>
  91. </div>
  92. <div class="item-menu">
  93. <div class="item-title">ADDITIONAL INFO</div>
  94. <div class="item-line"></div>
  95. <div class="item-content">
  96. <div>
  97. <nuxt-link
  98. to="/media"
  99. target="_self"
  100. >Media Centre
  101. </nuxt-link>
  102. <!-- <nuxt-link to="/home/newsLetter"> NewsLetter </nuxt-link> -->
  103. <nuxt-link
  104. to="/home/downloadCenter"
  105. v-show="audit_status">
  106. Download Center
  107. </nuxt-link>
  108. <!-- <nuxt-link to="/home/FAQs"> FAQ </nuxt-link> -->
  109. <nuxt-link to="/home/privacyPolicy"> Privacy Policy </nuxt-link>
  110. <nuxt-link
  111. to="/home/contact"
  112. v-if="isLogin">
  113. Contact Us
  114. </nuxt-link>
  115. <nuxt-link
  116. to="/home/contactPromoCollection"
  117. v-else>
  118. Contact Us
  119. </nuxt-link>
  120. <nuxt-link
  121. :to="{
  122. name: 'news-newsName',
  123. params: { newsName: 'About-Us' },
  124. }"
  125. >About Us
  126. </nuxt-link>
  127. <div
  128. class="item-content-a"
  129. @click="goApiWord">
  130. API
  131. </div>
  132. </div>
  133. </div>
  134. </div>
  135. </div>
  136. </div>
  137. <div
  138. v-show="flag_scroll"
  139. class="goTop"
  140. @click="backTop">
  141. <img
  142. src="@/assets/img/Floating.png"
  143. alt=""
  144. @click="backTop" />
  145. </div>
  146. </div>
  147. <div class="footer-bottom">
  148. <div class="footer-bottom-item com-width-1400 com-margin-auto">
  149. <div class="footer-bottom-item-left">
  150. <a href="https://www.facebook.com/PromoCollection/">
  151. <img
  152. src="@/assets/img/Shape 4.png"
  153. alt="" />
  154. </a>
  155. <a href="https://twitter.com/Promocollection/">
  156. <img
  157. src="@/assets/img/Shape 5.png"
  158. alt="" />
  159. </a>
  160. <a href="https://www.youtube.com/channel/UCXHWdW0Khk-TNxjObLqi7Yg">
  161. <img
  162. src="@/assets/img/Shape 7.png"
  163. alt="" />
  164. </a>
  165. <a href="https://www.instagram.com/promocollectionau/">
  166. <img
  167. src="@/assets/img/Shape 21.png"
  168. alt="" />
  169. </a>
  170. </div>
  171. <div class="contact">
  172. <div>(+44)203 916 5098</div>
  173. <div>info@promocollection.uk</div>
  174. </div>
  175. <div class="flex icon-wrap">
  176. <img
  177. src="@/assets/img/footer/uk_foot3.jpg"
  178. height="68.4"
  179. width="143"
  180. style="margin-right: 20px" />
  181. <img
  182. src="@/assets/img/footer/uk_foot4.png"
  183. height="68.4"
  184. width="68.4"
  185. style="margin-right: 20px" />
  186. <img
  187. src="@/assets/img/footer/uk_foot5.jpg"
  188. height="64.82"
  189. width="261" />
  190. </div>
  191. <div class="footer-bottom-item-right">
  192. {{ indexConfigWebsite.version_info }}
  193. </div>
  194. </div>
  195. </div>
  196. <dialog-XX-success
  197. :imgShow="false"
  198. :visible.sync="xxContentVisible"
  199. :desc="xxDesc"></dialog-XX-success>
  200. </footer>
  201. </template>
  202. <script>
  203. import { mapMutations } from 'vuex'
  204. import dialogXXSuccess from './DIalogXXSuccess.vue'
  205. export default {
  206. components: { 'dialog-XX-success': dialogXXSuccess },
  207. data() {
  208. return {
  209. footerBannerList: [],
  210. productList: [],
  211. indexConfigWebsite: [],
  212. aboutUsArticle: {},
  213. flag_scroll: false,
  214. scroll: 0,
  215. xxContentVisible: false,
  216. xxDesc: '',
  217. }
  218. },
  219. async fetch() {
  220. await this.$axios
  221. .post('/uk-api/home/indexBanner', { type: 6 })
  222. .then(res => {
  223. this.footerBannerList = res.result.data
  224. // this.$store.commit("config/setConfigInfo", res.result);
  225. })
  226. await this.$axios.post('/uk-api/home/indexConfigWebsite', { site: 1 }).then(res => {
  227. this.indexConfigWebsite = res.result
  228. this.$store.commit('config/setConfigInfo', res.result)
  229. })
  230. await this.$axios.post('/uk-api/common/shopProductList').then(res => {
  231. this.productList = res.result
  232. })
  233. await this.$axios
  234. .post('/uk-api/home/articleList', { keyword: 'About us' })
  235. .then(res => {
  236. this.aboutUsArticle = res.result.data[0]
  237. })
  238. },
  239. computed: {
  240. audit_status() {
  241. return this.$store.state.userInfo?.audit_status === 1
  242. },
  243. isLogin() {
  244. return !!this.$store.state.userInfo?.email
  245. },
  246. },
  247. methods: {
  248. ...mapMutations('config', ['setConfigInfo']),
  249. ...mapMutations(['openDialog']),
  250. backTop() {
  251. var timer = setInterval(function () {
  252. document.documentElement.scrollTop -= 20
  253. if (document.documentElement.scrollTop <= 0) {
  254. clearInterval(timer)
  255. }
  256. }, 10)
  257. },
  258. handleScroll() {
  259. const scrollobj =
  260. document.body.scrollTop + document.documentElement.scrollTop
  261. if (scrollobj > 500) {
  262. this.flag_scroll = true
  263. } else {
  264. this.flag_scroll = false
  265. }
  266. },
  267. openLoginDialog() {
  268. if (this.$utils.checkLogin()) {
  269. this.$router.push({
  270. name: 'news-newsName',
  271. params: { newsName: 'About-Us' },
  272. })
  273. } else {
  274. this.openDialog()
  275. }
  276. },
  277. goApiWord() {
  278. if (this.isLogin) {
  279. if (this.$store.state.userInfo.open_platform) {
  280. const { href } = this.$router.resolve({
  281. name: 'home-api',
  282. })
  283. window.open(href, '_black')
  284. } else {
  285. this.submitLoading = false
  286. this.xxContentVisible = true
  287. this.xxDesc =
  288. 'If you encounter difficulties, please contact info@promocollection.uk'
  289. // this.$message.error(
  290. // 'If you encounter difficulties, please contact info@promocollection.uk'
  291. // )
  292. }
  293. } else {
  294. this.openDialog()
  295. }
  296. },
  297. },
  298. mounted() {
  299. window.addEventListener('scroll', this.handleScroll, true)
  300. },
  301. destroyed() {
  302. window.removeEventListener('scroll', this.scrollToTop)
  303. },
  304. }
  305. </script>
  306. <style lang="scss" scoped>
  307. footer {
  308. line-height: 0;
  309. margin-top: 15px;
  310. font-family: Proxima Nova;
  311. .footer-top {
  312. position: relative;
  313. .footer-banner {
  314. width: 100%;
  315. height: 500px;
  316. }
  317. .top-item {
  318. position: absolute;
  319. top: 160px;
  320. left: 20%;
  321. p:first-of-type {
  322. width: 360px;
  323. height: 66px;
  324. font-size: 36px;
  325. font-weight: bold;
  326. color: #ffffff;
  327. line-height: 33px;
  328. margin-bottom: 18px;
  329. }
  330. p:nth-of-type(2) {
  331. width: 400px;
  332. height: 38px;
  333. font-size: 16px;
  334. font-weight: 400;
  335. color: #8290a1;
  336. line-height: 20px;
  337. margin-bottom: 16px;
  338. }
  339. .btn {
  340. width: 172px;
  341. height: 50px;
  342. line-height: 50px;
  343. border-radius: 6px;
  344. font-size: 14px;
  345. font-family: Proxima Nova;
  346. font-weight: bold;
  347. color: #ffffff;
  348. text-transform: uppercase;
  349. border: none;
  350. cursor: pointer;
  351. margin-right: 16px;
  352. text-align: center;
  353. a {
  354. display: block;
  355. width: 100%;
  356. color: #ffffff;
  357. }
  358. }
  359. .btn-red {
  360. background: #e90000;
  361. }
  362. .btn-blue {
  363. background: #0b6dc9;
  364. }
  365. }
  366. }
  367. .footer-middle {
  368. max-width: 1400px;
  369. .middle {
  370. display: flex;
  371. justify-content: space-around;
  372. background: url('@/assets/img/Shape 28.png') no-repeat;
  373. height: 377px;
  374. .footer-middle-item {
  375. width: 100%;
  376. }
  377. }
  378. .middle-item-left {
  379. margin-right: 10px;
  380. img {
  381. width: 241px;
  382. height: 65px;
  383. }
  384. p {
  385. max-width: 465px;
  386. font-size: 12px;
  387. font-weight: 400;
  388. color: #4a596c;
  389. line-height: 24px;
  390. margin-left: 20px;
  391. margin-top: 15px;
  392. }
  393. }
  394. .middle-item-right {
  395. display: flex;
  396. justify-content: space-around;
  397. margin-top: 35px;
  398. .item-menu {
  399. &:nth-child(2) {
  400. margin-left: 80px;
  401. }
  402. &:last-child {
  403. margin-left: 35px;
  404. }
  405. height: 172px;
  406. .item-title {
  407. white-space: nowrap;
  408. height: 20px;
  409. line-height: 20px;
  410. font-size: 14px;
  411. font-weight: bold;
  412. color: #000000;
  413. padding-bottom: 5px;
  414. }
  415. .item-line {
  416. width: 40px;
  417. height: 2px;
  418. background: #e90000;
  419. }
  420. .item-content {
  421. margin-top: 20px;
  422. height: 104px;
  423. div {
  424. height: 100%;
  425. a,
  426. .item-content-a {
  427. white-space: nowrap;
  428. display: block;
  429. // width: 120px;
  430. height: 20px;
  431. line-height: 20px;
  432. font-size: 0.87rem;
  433. font-weight: 400;
  434. color: #4a596c;
  435. padding-bottom: 5px;
  436. cursor: pointer;
  437. &:hover {
  438. color: #006dc9;
  439. }
  440. }
  441. ul {
  442. display: flex;
  443. justify-content: flex-start;
  444. flex-wrap: wrap;
  445. width: 200px;
  446. li {
  447. &:nth-child(even) {
  448. a {
  449. width: 80px;
  450. }
  451. }
  452. &:nth-child(odd) {
  453. a {
  454. width: 120px;
  455. }
  456. }
  457. a {
  458. display: inline-block;
  459. height: 20px;
  460. line-height: 20px;
  461. // font-size: 12px;
  462. font-size: 0.87rem;
  463. font-weight: 400;
  464. color: #4a596c;
  465. padding-bottom: 5px;
  466. cursor: pointer;
  467. }
  468. }
  469. }
  470. }
  471. }
  472. }
  473. }
  474. .goTop {
  475. width: 1.6cm;
  476. height: 1.6cm;
  477. position: fixed;
  478. z-index: 2;
  479. bottom: 2cm;
  480. right: 12px;
  481. cursor: pointer;
  482. img {
  483. width: 100%;
  484. }
  485. }
  486. }
  487. .footer-bottom {
  488. width: 100%;
  489. background-color: #f1f4f9;
  490. font-size: 12px;
  491. line-height: 14px;
  492. font-weight: 400;
  493. color: #4a596c;
  494. .contact div {
  495. margin-bottom: 6px;
  496. }
  497. .icon-wrap {
  498. padding: 0 4px;
  499. }
  500. .footer-bottom-item {
  501. padding: 4px;
  502. min-height: 130px;
  503. display: flex;
  504. justify-content: space-between;
  505. align-items: center;
  506. flex-wrap: wrap;
  507. .footer-bottom-item-left {
  508. padding: 0 10px 0 0;
  509. a {
  510. cursor: pointer;
  511. img {
  512. width: 19px;
  513. height: 20px;
  514. margin-left: 24px;
  515. }
  516. }
  517. }
  518. }
  519. }
  520. }
  521. </style>