_code.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <template>
  2. <div class="com-main com-margin-auto ">
  3. <template v-if="pageData?.id">
  4. <breadcrumb :pageData="pageData" ></breadcrumb>
  5. <section class="product">
  6. <product-left :pageData="pageData" :id="pageData.id"></product-left>
  7. <product-right :pageData="pageData" :id="pageData.id"></product-right>
  8. </section>
  9. <ul class="picLink-wrap">
  10. <li v-if="pageData.showcase[0]?.length">
  11. <p class="title">SERVICES</p>
  12. <p class="intro">We offer a variety of services to suit your needs</p>
  13. <a :href="item.url" v-for="(item,index) in pageData.showcase[0]" :key="index" class="showcase">
  14. <el-image lazy :src="item.images" fit="cover" style="width: 100%; height: 356px;"></el-image>
  15. </a>
  16. </li>
  17. <li v-if="pageData.showcase[1]?.length">
  18. <p class="title">DECORATION METHODS</p>
  19. <p class="intro">A range of print enhancements to fully customise your product</p>
  20. <a :href="item.url" v-for="(item,index) in pageData.showcase[1]" :key="index" class="showcase">
  21. <el-image lazy :src="item.images" fit="cover" style="width: 100%; height: 258px;margin-top: 20px;border-radius: 12px;"></el-image>
  22. </a>
  23. </li>
  24. <li v-if="pageData.showcase[2]?.length">
  25. <p class="title">PRINT MARKETING</p>
  26. <p class="intro">A range of great print supplement options, to expand your branding messages</p>
  27. <div class="imgWrap">
  28. <a :href="item.url" v-for="(item,index) in pageData.showcase[2]" :key="index" class="showcase">
  29. <el-image lazy :src="item.images" fit="cover" style="width: 100%; height:100%;"></el-image>
  30. </a>
  31. </div>
  32. </li>
  33. <li v-if="pageData.showcase[3]?.length">
  34. <p class="title">PACKAGING</p>
  35. <p class="intro">Perfect your branding solution with great customised packaging options</p>
  36. <div class="imgWrap">
  37. <a :href="item.url" v-for="(item,index) in pageData.showcase[3]" :key="index" class="showcase">
  38. <el-image lazy :src="item.images" fit="cover" style="width: 100%; height:100%;"></el-image>
  39. </a>
  40. </div>
  41. </li>
  42. </ul>
  43. </template>
  44. <el-empty description="No Data" v-else></el-empty>
  45. <section class="com-width-1200 com-margin-auto" >
  46. <pc-title :title="'Related ltems'" :marginTop="70"></pc-title>
  47. <div class="card-wrap com-margin-auto">
  48. <card
  49. v-for="(item, k) in indexGoodsRankLists"
  50. :key="k"
  51. :cardData="item"></card>
  52. </div>
  53. </section>
  54. </div>
  55. </template>
  56. <script>
  57. export default {
  58. layout: "default",
  59. async asyncData({ $axios, params, error, redirect }) {
  60. const pageData = await $axios.get(`/uk-api/uk/goods/detail?product_code=${params.code}`);
  61. let indexGoodsRankLists=[]
  62. if(pageData.result?.category_id){
  63. try{
  64. indexGoodsRankLists = await $axios.get(`/uk-api/uk/goods/recommend/${pageData.result?.category_id}`);
  65. }catch (err) {
  66. console.log(err);
  67. }
  68. }else{
  69. indexGoodsRankLists = await $axios.get("/uk-api/home/indexGoodsRankList");
  70. }
  71. return {
  72. pageData: pageData.result,
  73. indexGoodsRankLists: indexGoodsRankLists.result,
  74. };
  75. },
  76. // middleware: 'auth',
  77. data() {
  78. return {
  79. pageData:null,
  80. indexGoodsRankLists:[]
  81. };
  82. },
  83. head() {
  84. return {
  85. title: this.pageData?.product_name || 'PromoCollection',
  86. meta: [
  87. { name: 'keywords', content: this.pageData?.keywords },
  88. { name: 'description', content: this.pageData?.main?.description },
  89. ],
  90. };
  91. },
  92. };
  93. </script>
  94. <style lang="scss" scoped>
  95. .product {
  96. display: flex;
  97. }
  98. .card-wrap {
  99. display: grid;
  100. justify-items: center;
  101. justify-content: space-evenly;
  102. // grid-template-columns: repeat(5,1fr);
  103. }
  104. .picLink-wrap{
  105. text-align: center;
  106. li{
  107. color:#1A376B;
  108. .title{
  109. font-family: ProximaNova-Black;
  110. font-size: 50px;
  111. font-weight: 900;
  112. margin-top: 50px;
  113. }
  114. .intro{
  115. font-family: ProximaNova-Light;
  116. font-size: 26px;
  117. font-weight: 300;
  118. margin:10px 0 0;
  119. }
  120. &:nth-child(1){
  121. .intro{
  122. margin-bottom: 20px;
  123. }
  124. }
  125. &:nth-child(3){
  126. .imgWrap{
  127. margin-top: 30px;
  128. display: grid;
  129. grid-template-columns: repeat(2,1fr);
  130. gap: 26px;
  131. }
  132. a {
  133. height: 484px;
  134. }
  135. }
  136. &:nth-child(4){
  137. .imgWrap{
  138. margin-top: 30px;
  139. display: grid;
  140. grid-template-columns: repeat(4,1fr);
  141. gap: 32px;
  142. }
  143. a {
  144. height: 278px;
  145. }
  146. }
  147. }
  148. }
  149. </style>