index.vue 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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("/home/articleLists", {
  64. state: "au",
  65. page: this.listQuery.page,
  66. limit: this.listQuery.limit,
  67. })
  68. .then((res) => {
  69. if (res.code == 1) {
  70. this.articleLists = res.result.data;
  71. this.total = res.result.total;
  72. this.listLoading = false;
  73. }
  74. this.$nextTick(() => {
  75. window.scroll(0, 0);
  76. });
  77. })
  78. .catch(() => {
  79. this.listLoading = false;
  80. this.articleLists = [];
  81. });
  82. },
  83. },
  84. };
  85. </script>
  86. <style lang="scss" scoped>
  87. .item {
  88. margin-top: 20px;
  89. margin-bottom: 20px;
  90. background: #ffffff;
  91. box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
  92. padding-top: 20px;
  93. .item-title {
  94. margin-left: 55px;
  95. span:nth-of-type(1) {
  96. display: inline-block;
  97. width: 3px;
  98. height: 13px;
  99. background: #e90000;
  100. border-radius: 2px;
  101. }
  102. span:nth-of-type(2) {
  103. height: 24px;
  104. font-size: 18px;
  105. font-family: Proxima Nova;
  106. font-weight: 600;
  107. color: #333333;
  108. line-height: 24px;
  109. }
  110. }
  111. .item-content {
  112. font-size: 16px;
  113. font-family: Proxima Nova;
  114. font-weight: 400;
  115. color: #4a596c;
  116. list-style: circle;
  117. margin: 10px 20px 10px 70px;
  118. li {
  119. height: 32px;
  120. line-height: 32px;
  121. &::marker {
  122. color: #0b6dc9;
  123. }
  124. .main-content {
  125. display: flex;
  126. justify-content: space-between;
  127. align-items: center;
  128. background: url(@/assets/img/home/line.png) repeat-x 0 16px;
  129. div:nth-of-type(1) {
  130. background-color: #fff;
  131. padding-right: 10px;
  132. }
  133. div:nth-of-type(2) {
  134. width: 200px;
  135. background-color: #fff;
  136. padding-left: 10px;
  137. box-sizing: border-box;
  138. }
  139. }
  140. }
  141. }
  142. }
  143. :deep(.el-pagination.is-background) {
  144. .el-pager {
  145. li.number {
  146. font-family: Proxima Nova;
  147. background: linear-gradient(0deg, #ebebeb, #ffffff);
  148. border: 1px solid #d5d5d5;
  149. border-radius: 50%;
  150. font-weight: 400;
  151. color: #a7a7a7;
  152. text-shadow: 0px 1px 0px #ffffff;
  153. }
  154. li:not(.disabled).active {
  155. background: #00213b;
  156. box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.4);
  157. border-radius: 50%;
  158. color: #ffffff;
  159. }
  160. }
  161. .btn-prev,
  162. .btn-next {
  163. border-radius: 50%;
  164. background-color: #fff;
  165. .el-icon-arrow-left:before {
  166. content: "";
  167. }
  168. .el-icon-arrow-right:before {
  169. content: "";
  170. }
  171. }
  172. }
  173. </style>