PcFooter.vue 13 KB

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