EDMS.vue 2.8 KB

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