PcFooter.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462
  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="websitelogo"
  35. alt="logo" />
  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">{{ footerInfo }}</div>
  136. <div class="footer-bottom-item-right">
  137. {{ indexConfigWebsite.version_info }}
  138. </div>
  139. </div>
  140. </div>
  141. <dialog-XX-success
  142. :imgShow="false"
  143. :visible.sync="xxContentVisible"
  144. :desc="xxDesc"></dialog-XX-success>
  145. </footer>
  146. </template>
  147. <script>
  148. import { mapMutations } from 'vuex'
  149. import dialogXXSuccess from './DIalogXXSuccess.vue'
  150. export default {
  151. components: { 'dialog-XX-success': dialogXXSuccess },
  152. data() {
  153. return {
  154. footerBannerList: [],
  155. productList: [],
  156. indexConfigWebsite: [],
  157. aboutUsArticle: {},
  158. flag_scroll: false,
  159. scroll: 0,
  160. xxContentVisible: false,
  161. xxDesc: '',
  162. websitelogo: '',
  163. footerInfo: '',
  164. }
  165. },
  166. async fetch() {
  167. await this.$axios
  168. .post('home/indexBanner', { site: 1, type: 6 })
  169. .then(res => {
  170. this.footerBannerList = res.result.data
  171. // this.$store.commit("config/setConfigInfo", res.result);
  172. })
  173. await this.$axios.post('home/indexConfigWebsite', { site: 1 }).then(res => {
  174. this.indexConfigWebsite = res.result
  175. this.$store.commit('config/setConfigInfo', res.result)
  176. })
  177. await this.$axios.post('common/shopProductList').then(res => {
  178. this.productList = res.result
  179. })
  180. await this.$axios
  181. .post('/home/articleLists', { state: 'au', keyword: 'About us' })
  182. .then(res => {
  183. this.aboutUsArticle = res.result.data[0]
  184. })
  185. },
  186. computed: {
  187. audit_status() {
  188. return this.$store.state.userInfo?.audit_status === 1
  189. },
  190. isLogin() {
  191. return !!this.$store.state.userInfo?.email
  192. },
  193. },
  194. beforeMount() {
  195. this.$store.dispatch('getShopInfo').then(res => {
  196. this.websitelogo = !this.$mediaRegExp.test(res.logo)
  197. ? this.$OSS_PREFIX +
  198. (/^\/.+/.test(res.logo) ? res.logo : `/${res.logo}`)
  199. : res.logo
  200. this.footerInfo = res.footer || ''
  201. })
  202. },
  203. methods: {
  204. ...mapMutations('config', ['setConfigInfo']),
  205. ...mapMutations(['openDialog']),
  206. backTop() {
  207. var timer = setInterval(function () {
  208. document.documentElement.scrollTop -= 20
  209. if (document.documentElement.scrollTop <= 0) {
  210. clearInterval(timer)
  211. }
  212. }, 10)
  213. },
  214. handleScroll() {
  215. const scrollobj =
  216. document.body.scrollTop + document.documentElement.scrollTop
  217. if (scrollobj > 500) {
  218. this.flag_scroll = true
  219. } else {
  220. this.flag_scroll = false
  221. }
  222. },
  223. openLoginDialog() {
  224. if (this.$utils.checkLogin()) {
  225. this.$router.push({
  226. name: 'news-newsName',
  227. params: { newsName: 'About-Us' },
  228. })
  229. } else {
  230. this.openDialog()
  231. }
  232. },
  233. goApiWord() {
  234. if (this.isLogin) {
  235. if (this.$store.state.userInfo.open_platform) {
  236. const { href } = this.$router.resolve({
  237. name: 'home-api',
  238. })
  239. window.open(href, '_black')
  240. } else {
  241. this.submitLoading = false
  242. this.xxContentVisible = true
  243. this.xxDesc =
  244. 'If you encounter difficulties, please contact info@promocollection.com.au'
  245. // this.$message.error(
  246. // 'If you encounter difficulties, please contact info@promocollection.com.au'
  247. // )
  248. }
  249. } else {
  250. this.openDialog()
  251. }
  252. },
  253. },
  254. mounted() {
  255. window.addEventListener('scroll', this.handleScroll, true)
  256. },
  257. destroyed() {
  258. window.removeEventListener('scroll', this.scrollToTop)
  259. },
  260. }
  261. </script>
  262. <style lang="scss" scoped>
  263. footer {
  264. line-height: 0;
  265. margin-top: 15px;
  266. font-family: Proxima Nova;
  267. .footer-top {
  268. position: relative;
  269. .footer-banner {
  270. width: 100%;
  271. height: 500px;
  272. }
  273. .top-item {
  274. position: absolute;
  275. top: 160px;
  276. left: 20%;
  277. p:first-of-type {
  278. width: 360px;
  279. height: 66px;
  280. font-size: 36px;
  281. font-weight: bold;
  282. color: #ffffff;
  283. line-height: 33px;
  284. margin-bottom: 18px;
  285. }
  286. p:nth-of-type(2) {
  287. width: 400px;
  288. height: 38px;
  289. font-size: 16px;
  290. font-weight: 400;
  291. color: #8290a1;
  292. line-height: 20px;
  293. margin-bottom: 16px;
  294. }
  295. .btn {
  296. width: 172px;
  297. height: 50px;
  298. line-height: 50px;
  299. border-radius: 6px;
  300. font-size: 14px;
  301. font-family: Proxima Nova;
  302. font-weight: bold;
  303. color: #ffffff;
  304. text-transform: uppercase;
  305. border: none;
  306. cursor: pointer;
  307. margin-right: 16px;
  308. text-align: center;
  309. a {
  310. display: block;
  311. width: 100%;
  312. color: #ffffff;
  313. }
  314. }
  315. .btn-red {
  316. background: #e90000;
  317. }
  318. .btn-blue {
  319. background: #0b6dc9;
  320. }
  321. }
  322. }
  323. .footer-middle {
  324. max-width: 1400px;
  325. .middle {
  326. display: flex;
  327. justify-content: space-around;
  328. // background: url('@/assets/img/Shape 28.png') no-repeat;
  329. height: 377px;
  330. .footer-middle-item {
  331. width: 100%;
  332. }
  333. }
  334. .middle-item-left {
  335. margin-right: 10px;
  336. img {
  337. // width: 241px;
  338. height: 80px;
  339. }
  340. p {
  341. max-width: 465px;
  342. font-size: 12px;
  343. font-weight: 400;
  344. color: #4a596c;
  345. line-height: 24px;
  346. margin-left: 20px;
  347. margin-top: 15px;
  348. }
  349. }
  350. .middle-item-right {
  351. display: flex;
  352. justify-content: space-around;
  353. margin-top: 35px;
  354. .item-menu {
  355. &:nth-child(2) {
  356. margin-left: 80px;
  357. }
  358. &:last-child {
  359. margin-left: 35px;
  360. }
  361. height: 172px;
  362. .item-title {
  363. white-space: nowrap;
  364. height: 20px;
  365. line-height: 20px;
  366. font-size: 14px;
  367. font-weight: bold;
  368. color: #000000;
  369. padding-bottom: 5px;
  370. }
  371. .item-line {
  372. width: 40px;
  373. height: 2px;
  374. background: #e90000;
  375. }
  376. .item-content {
  377. margin-top: 20px;
  378. height: 104px;
  379. div {
  380. height: 100%;
  381. a,
  382. .item-content-a {
  383. white-space: nowrap;
  384. display: block;
  385. // width: 120px;
  386. height: 20px;
  387. line-height: 20px;
  388. font-size: 0.87rem;
  389. font-weight: 400;
  390. color: #4a596c;
  391. padding-bottom: 5px;
  392. cursor: pointer;
  393. &:hover {
  394. color: #006dc9;
  395. }
  396. }
  397. ul {
  398. display: flex;
  399. justify-content: flex-start;
  400. flex-wrap: wrap;
  401. width: 200px;
  402. li {
  403. &:nth-child(even) {
  404. a {
  405. width: 80px;
  406. }
  407. }
  408. &:nth-child(odd) {
  409. a {
  410. width: 120px;
  411. }
  412. }
  413. a {
  414. display: inline-block;
  415. height: 20px;
  416. line-height: 20px;
  417. // font-size: 12px;
  418. font-size: 0.87rem;
  419. font-weight: 400;
  420. color: #4a596c;
  421. padding-bottom: 5px;
  422. cursor: pointer;
  423. }
  424. }
  425. }
  426. }
  427. }
  428. }
  429. }
  430. .goTop {
  431. width: 1.6cm;
  432. height: 1.6cm;
  433. position: fixed;
  434. z-index: 2;
  435. bottom: 2cm;
  436. right: 12px;
  437. cursor: pointer;
  438. img {
  439. width: 100%;
  440. }
  441. }
  442. }
  443. .footer-bottom {
  444. width: 100%;
  445. background-color: #f1f4f9;
  446. .footer-bottom-item {
  447. height: 56px;
  448. display: flex;
  449. justify-content: space-between;
  450. align-items: center;
  451. font-size: 12px;
  452. font-weight: 400;
  453. color: #4a596c;
  454. }
  455. }
  456. }
  457. </style>