catalogue.vue 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  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>Catalogue</el-breadcrumb-item>
  6. </el-breadcrumb>
  7. <p class="title">Catalogue Library</p>
  8. <div class="line"></div>
  9. <div class="item" v-loading="listLoading">
  10. <div class="backgroung-img-1" v-show="catalogueList.length > 0">
  11. <img src="@/assets/img/home/Wood.png" alt="" />
  12. </div>
  13. <div class="backgroung-img-2" v-show="catalogueList.length > 4">
  14. <img src="@/assets/img/home/Wood.png" alt="" />
  15. </div>
  16. <div class="backgroung-img-3" v-show="catalogueList.length > 8">
  17. <img src="@/assets/img/home/Wood.png" alt="" />
  18. </div>
  19. <ul>
  20. <li v-for="item in catalogueList" :key="item.id">
  21. <a :href="item.filepath" target="_blank">
  22. <div class="item-img">
  23. <!-- <img src="@/assets/img/home/Book.png" alt="" /> -->
  24. <el-image :src="$utils.generateResizedImageUrl(item.img,500)" fit="cover" style="width: 100%; height: 100%"></el-image>
  25. </div>
  26. <div class="item-title">
  27. <p>Promo Collection</p>
  28. <p>{{ item.title }}</p>
  29. </div>
  30. <p class="item-date">{{ item.update_time }}</p>
  31. </a>
  32. </li>
  33. </ul>
  34. <pagination
  35. v-show="total > 0"
  36. :total="total"
  37. :page.sync="listQuery.page"
  38. :limit.sync="listQuery.limit"
  39. @pagination="getList"
  40. />
  41. </div>
  42. <div v-if="!catalogueList.length">
  43. <el-empty description="No Data"></el-empty>
  44. </div>
  45. </div>
  46. </template>
  47. <script>
  48. export default {
  49. data() {
  50. return {
  51. total: 0,
  52. listQuery: {
  53. page: 1,
  54. limit: 12,
  55. },
  56. catalogueList: [],
  57. listLoading: true,
  58. };
  59. },
  60. async created() {
  61. await this.getList();
  62. },
  63. methods: {
  64. getList() {
  65. this.$axios
  66. .post("/api/resources/catalogue/list", {
  67. state: "au",
  68. page: this.listQuery.page,
  69. limit: this.listQuery.limit,
  70. })
  71. .then((res) => {
  72. if (res.code === 1) {
  73. res.result.data.forEach((item) => {
  74. item.filepath =
  75. !this.$mediaRegExp.test(item.filepath)
  76. ? this.$OSS_PREFIX +
  77. item.filepath
  78. : item.filepath;
  79. item.img =
  80. !this.$mediaRegExp.test(item.img)
  81. ? this.$OSS_PREFIX +
  82. item.img
  83. : item.img;
  84. });
  85. this.catalogueList = res.result.data;
  86. this.total = res.result.total;
  87. this.listLoading = false;
  88. }
  89. // if(process.client){
  90. // this.$nextTick(() => {
  91. // window.scroll(0, 0);
  92. // });
  93. // }
  94. })
  95. .catch(() => {
  96. this.listLoading = false;
  97. this.catalogueList = [];
  98. });
  99. },
  100. },
  101. };
  102. </script>
  103. <style lang="scss" scoped>
  104. .title {
  105. height: 50px;
  106. font-size: 35px;
  107. font-family: Proxima Nova;
  108. font-weight: bold;
  109. color: #00213b;
  110. text-align: center;
  111. line-height: 50px;
  112. }
  113. .line {
  114. width: 99px;
  115. height: 4px;
  116. background: #e90000;
  117. margin: 15px auto;
  118. }
  119. .item {
  120. width: 1320px;
  121. margin: 0 auto;
  122. position: relative;
  123. .backgroung-img-1 {
  124. position: absolute;
  125. left: -15px;
  126. top: 330px;
  127. }
  128. .backgroung-img-2 {
  129. position: absolute;
  130. left: -15px;
  131. top: 846px;
  132. }
  133. .backgroung-img-3 {
  134. position: absolute;
  135. left: -15px;
  136. top: 1363px;
  137. }
  138. ul {
  139. display: flex;
  140. justify-content: flex-start;
  141. flex-wrap: wrap;
  142. li {
  143. margin: 10px 44px 40px 55px;
  144. a {
  145. .item-img {
  146. width: 231px;
  147. height: 337px;
  148. img {
  149. width: 100%;
  150. height: 100%;
  151. border-radius: 5px;
  152. }
  153. }
  154. .item-title {
  155. width: 200px;
  156. height: 52px;
  157. line-height: 26px;
  158. font-size: 18px;
  159. color: #00213b;
  160. text-align: center;
  161. margin: 0 auto;
  162. margin-top: 45px;
  163. margin-bottom: 10px;
  164. }
  165. .item-date {
  166. width: 208px;
  167. line-height: 18px;
  168. font-size: 14px;
  169. color: #606e80;
  170. text-align: center;
  171. margin: 0 auto;
  172. }
  173. }
  174. }
  175. }
  176. }
  177. :deep(.el-pagination.is-background) {
  178. .el-pager {
  179. li.number {
  180. background-color: #f8f8f8;
  181. border-radius: 50%;
  182. color: #a7a7a7;
  183. }
  184. li:not(.disabled).active {
  185. background-color: #00213b;
  186. color: #d4d7da;
  187. }
  188. }
  189. .btn-prev,
  190. .btn-next {
  191. border-radius: 50%;
  192. background-color: #fff;
  193. .el-icon-arrow-left:before {
  194. content: "";
  195. }
  196. .el-icon-arrow-right:before {
  197. content: "";
  198. }
  199. }
  200. }
  201. </style>