downloadCenter.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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>Download Center</el-breadcrumb-item>
  6. </el-breadcrumb>
  7. <p class="title">Download Center</p>
  8. <div class="line"></div>
  9. <ul class="item">
  10. <li
  11. v-for="item in downLoadInfo"
  12. :key="item.id" @click="download(item)">
  13. <!-- <a :href="item.file?item.file:item.link" :target="item.file.endsWith('.csv')?'_self':'_blank'"> -->
  14. <div class="item-content" >
  15. <img
  16. :src="item.image"
  17. alt="" />
  18. </div>
  19. <p>{{ item.title }}</p>
  20. <!-- </a> -->
  21. </li>
  22. </ul>
  23. <pagination
  24. v-show="total > 0"
  25. :total="total"
  26. :page.sync="listQuery.page"
  27. :limit.sync="listQuery.limit"
  28. @pagination="getInfoList" />
  29. <div v-if="!downLoadInfo.length">
  30. <el-empty description="No Data"></el-empty>
  31. </div>
  32. </div>
  33. </template>
  34. <script>
  35. export default {
  36. data() {
  37. return {
  38. total: 0,
  39. listQuery: {
  40. page: 1,
  41. limit: 20,
  42. },
  43. downLoadInfo: [],
  44. }
  45. },
  46. async created() {
  47. await this.getInfoList()
  48. },
  49. methods: {
  50. getInfoList() {
  51. this.$axios
  52. .get('/uk-api/others/download/list', {
  53. page: this.listQuery.page,
  54. limit: this.listQuery.limit,
  55. })
  56. .then(res => {
  57. if (res.code == 1) {
  58. this.total = res.result.total
  59. this.downLoadInfo = res.result.data
  60. this.downLoadInfo.forEach(item => {
  61. item.image = !this.$mediaRegExp.test(item.image)
  62. ? this.$OSS_PREFIX + item.image
  63. : item.image
  64. })
  65. }
  66. this.$nextTick(() => {
  67. if (process.client) {
  68. window.scroll(0, 0)
  69. }
  70. })
  71. })
  72. },
  73. download(item) {
  74. if (process.client) {
  75. const file = item.file
  76. if (file) {
  77. if(file.endsWith('.csv')){
  78. const urlStr = file.match('[^/]+(?!.*/)')[0]
  79. this.$utils.downloadBlob(file, decodeURIComponent(urlStr))
  80. }else if(file.endsWith('.xlsx')){
  81. window.open(file, '_self')
  82. }else{
  83. window.open(file, '_blank')
  84. }
  85. } else if (item.link) {
  86. window.open(item.link, '_blank')
  87. }
  88. }
  89. },
  90. },
  91. }
  92. </script>
  93. <style lang="scss" scoped>
  94. .title {
  95. height: 50px;
  96. font-size: 35px;
  97. font-family: Proxima Nova;
  98. font-weight: bold;
  99. color: #00213b;
  100. text-align: center;
  101. line-height: 50px;
  102. }
  103. .line {
  104. width: 99px;
  105. height: 4px;
  106. background: #e90000;
  107. margin: 15px auto;
  108. }
  109. .item {
  110. margin: 20px auto;
  111. padding-left: 100px;
  112. display: flex;
  113. justify-content: flex-start;
  114. flex-wrap: wrap;
  115. li {
  116. width: 207px;
  117. height: 226px;
  118. margin-right: 53px;
  119. margin-bottom: 20px;
  120. display: flex;
  121. flex-direction: column;
  122. justify-content: center;
  123. align-items: center;
  124. .item-content {
  125. width: 172px;
  126. height: 172px;
  127. border-radius: 30px;
  128. margin-bottom: 30px;
  129. text-align: center;
  130. background: radial-gradient(circle, #f8f6f9, #f8f6f9);
  131. cursor: pointer;
  132. img {
  133. width: 100%;
  134. height: 100%;
  135. border-radius: 30px;
  136. }
  137. }
  138. p {
  139. width: 130px;
  140. height: 28px;
  141. font-size: 15px;
  142. font-family: Lincoln - Proxima Nova;
  143. font-weight: 600;
  144. color: #00213b;
  145. text-align: center;
  146. }
  147. &:hover {
  148. img {
  149. background: radial-gradient(circle, #f0f0f0, #f0f0f0);
  150. transform: translate3d(0px, 5px, 1px);
  151. box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.25);
  152. }
  153. p {
  154. color: #0b6dc9;
  155. }
  156. }
  157. }
  158. li:nth-of-type(5),
  159. li:last-of-type {
  160. margin-right: 0;
  161. }
  162. }
  163. :deep(.el-pagination.is-background) {
  164. .el-pager {
  165. li.number {
  166. background-color: #f8f8f8;
  167. border-radius: 50%;
  168. color: #a7a7a7;
  169. }
  170. li:not(.disabled).active {
  171. background-color: #00213b;
  172. color: #d4d7da;
  173. }
  174. }
  175. .btn-prev,
  176. .btn-next {
  177. border-radius: 50%;
  178. background-color: #fff;
  179. .el-icon-arrow-left:before {
  180. content: '';
  181. }
  182. .el-icon-arrow-right:before {
  183. content: '';
  184. }
  185. }
  186. }
  187. </style>