newsLetter.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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> NewsLetter</el-breadcrumb-item>
  6. </el-breadcrumb>
  7. <p class="title">NewsLetter</p>
  8. <div class="line"></div>
  9. <div class="item" v-loading="listLoading">
  10. <ul>
  11. <book-card
  12. v-for="item in newsLetterInfo"
  13. :key="item.id"
  14. :cardData="item"></book-card>
  15. </ul>
  16. <pagination
  17. v-show="total > 0"
  18. :total="total"
  19. :page.sync="listQuery.page"
  20. :limit.sync="listQuery.limit"
  21. @pagination="getInfoList"
  22. />
  23. </div>
  24. <div v-if="!newsLetterInfo.length">
  25. <el-empty description="No Data"></el-empty>
  26. </div>
  27. </div>
  28. </template>
  29. <script>
  30. export default {
  31. data() {
  32. return {
  33. total: 0,
  34. listQuery: {
  35. page: 1,
  36. limit: 20,
  37. },
  38. newsLetterInfo: [],
  39. listLoading: true,
  40. };
  41. },
  42. async created() {
  43. await this.getInfoList();
  44. },
  45. methods: {
  46. getInfoList() {
  47. this.$axios
  48. .get("/api/others/au/newsletter",{
  49. page: this.listQuery.page,
  50. limit: this.listQuery.limit,
  51. })
  52. .then((res) => {
  53. if (res.code == 1) {
  54. this.total = res.result.total;
  55. res.result.data.forEach((item) => {
  56. item.filepath =
  57. !this.$mediaRegExp.test(item.filepath)
  58. ? this.$OSS_PREFIX +
  59. item.filepath
  60. : item.filepath;
  61. item.img =
  62. !this.$mediaRegExp.test(item.img)
  63. ? this.$OSS_PREFIX +
  64. item.img
  65. : item.img;
  66. });
  67. this.newsLetterInfo = res.result.data;
  68. this.listLoading = false;
  69. }
  70. this.$nextTick(() => {
  71. window.scroll(0, 0);
  72. });
  73. })
  74. .catch(() => {
  75. this.listLoading = false;
  76. this.newsLetterInfo = [];
  77. });
  78. },
  79. },
  80. };
  81. </script>
  82. <style lang="scss" scoped>
  83. .title {
  84. height: 50px;
  85. font-size: 35px;
  86. font-family: Proxima Nova;
  87. font-weight: bold;
  88. color: #00213B;
  89. text-align: center;
  90. line-height: 50px;
  91. }
  92. .line {
  93. width: 99px;
  94. height: 4px;
  95. background: #e90000;
  96. margin: 15px auto;
  97. }
  98. .item {
  99. ul {
  100. width: 940px;
  101. margin: 0 auto;
  102. display: flex;
  103. justify-content: flex-start;
  104. flex-wrap: wrap;
  105. }
  106. }
  107. :deep(.el-pagination.is-background) {
  108. .el-pager {
  109. li.number {
  110. background-color: #f8f8f8;
  111. border-radius: 50%;
  112. color: #a7a7a7;
  113. }
  114. li:not(.disabled).active {
  115. background-color: #00213b;
  116. color: #d4d7da;
  117. }
  118. }
  119. .btn-prev,
  120. .btn-next {
  121. border-radius: 50%;
  122. background-color: #fff;
  123. .el-icon-arrow-left:before {
  124. content: "";
  125. }
  126. .el-icon-arrow-right:before {
  127. content: "";
  128. }
  129. }
  130. }
  131. </style>