index.vue 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  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>Current Flyer</el-breadcrumb-item>
  6. </el-breadcrumb>
  7. <div class="item">
  8. <div class="item-title">
  9. <span></span>
  10. <span>Current Flyer</span>
  11. </div>
  12. <ul class="item-content" v-loading="listLoading">
  13. <li v-for="item in articleLists" :key="item.id">
  14. <nuxt-link
  15. :to="{
  16. name: 'news-newsName',
  17. params: {
  18. newsName: item.title
  19. .replace(/\s+/g, '-')
  20. .replace('&', '%26')
  21. },
  22. }"
  23. >
  24. <div class="main-content">
  25. <div>{{ item.title }}</div>
  26. <div>{{ item.create_time }}</div>
  27. </div>
  28. </nuxt-link>
  29. </li>
  30. </ul>
  31. <pagination
  32. v-show="total > 0"
  33. :total="total"
  34. :page.sync="listQuery.page"
  35. :limit.sync="listQuery.limit"
  36. @pagination="getList"
  37. />
  38. <div v-if="!articleLists.length">
  39. <el-empty description="No Data"></el-empty>
  40. </div>
  41. </div>
  42. </div>
  43. </template>
  44. <script>
  45. export default {
  46. data() {
  47. return {
  48. total: 0,
  49. listQuery: {
  50. page: 1,
  51. limit: 12,
  52. },
  53. articleLists: [],
  54. listLoading: true,
  55. };
  56. },
  57. async created() {
  58. await this.getList();
  59. },
  60. methods: {
  61. getList() {
  62. this.$axios
  63. .post("/uk-api/home/articleList", {
  64. page: this.listQuery.page,
  65. limit: this.listQuery.limit,
  66. })
  67. .then((res) => {
  68. if (res.code == 1) {
  69. this.articleLists = res.result.data;
  70. this.total = res.result.total;
  71. this.listLoading = false;
  72. }
  73. this.$nextTick(() => {
  74. window.scroll(0, 0);
  75. });
  76. })
  77. .catch(() => {
  78. this.listLoading = false;
  79. this.articleLists = [];
  80. });
  81. },
  82. },
  83. };
  84. </script>
  85. <style lang="scss" scoped>
  86. .item {
  87. margin-top: 20px;
  88. margin-bottom: 20px;
  89. background: #ffffff;
  90. box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
  91. padding-top: 20px;
  92. .item-title {
  93. margin-left: 55px;
  94. span:nth-of-type(1) {
  95. display: inline-block;
  96. width: 3px;
  97. height: 13px;
  98. background: #e90000;
  99. border-radius: 2px;
  100. }
  101. span:nth-of-type(2) {
  102. height: 24px;
  103. font-size: 18px;
  104. font-family: Proxima Nova;
  105. font-weight: 600;
  106. color: #333333;
  107. line-height: 24px;
  108. }
  109. }
  110. .item-content {
  111. font-size: 16px;
  112. font-family: Proxima Nova;
  113. font-weight: 400;
  114. color: #4a596c;
  115. list-style: circle;
  116. margin: 10px 20px 10px 70px;
  117. li {
  118. height: 32px;
  119. line-height: 32px;
  120. &::marker {
  121. color: #0b6dc9;
  122. }
  123. .main-content {
  124. display: flex;
  125. justify-content: space-between;
  126. align-items: center;
  127. background: url(@/assets/img/home/line.png) repeat-x 0 16px;
  128. div:nth-of-type(1) {
  129. background-color: #fff;
  130. padding-right: 10px;
  131. }
  132. div:nth-of-type(2) {
  133. width: 200px;
  134. background-color: #fff;
  135. padding-left: 10px;
  136. box-sizing: border-box;
  137. }
  138. }
  139. }
  140. }
  141. }
  142. :deep(.el-pagination.is-background) {
  143. .el-pager {
  144. li.number {
  145. font-family: Proxima Nova;
  146. background: linear-gradient(0deg, #ebebeb, #ffffff);
  147. border: 1px solid #d5d5d5;
  148. border-radius: 50%;
  149. font-weight: 400;
  150. color: #a7a7a7;
  151. text-shadow: 0px 1px 0px #ffffff;
  152. }
  153. li:not(.disabled).active {
  154. background: #00213b;
  155. box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.4);
  156. border-radius: 50%;
  157. color: #ffffff;
  158. }
  159. }
  160. .btn-prev,
  161. .btn-next {
  162. border-radius: 50%;
  163. background-color: #fff;
  164. .el-icon-arrow-left:before {
  165. content: "";
  166. }
  167. .el-icon-arrow-right:before {
  168. content: "";
  169. }
  170. }
  171. }
  172. </style>