media.vue 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  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> Media Centre</el-breadcrumb-item>
  6. </el-breadcrumb>
  7. <ul class="flex around tab">
  8. <li v-for="(item, index) in list" :key="index" :class="{ active: index === curTab }" @click="selTab(index)">
  9. {{ item.typeName }}
  10. </li>
  11. </ul>
  12. <el-input v-model="keyword" placeholder="Search" @keyup.enter.native="getList" @clear="getList" clearable>
  13. <i slot="suffix" class="el-input__icon el-icon-search" @click="getList"></i>
  14. </el-input>
  15. <div v-if="listLoading" v-loading="true" slot="spinner" element-loading-text="Loading"
  16. element-loading-spinner="el-icon-loading" class="com-loading">
  17. </div>
  18. <div class="item" v-else>
  19. <section v-if="comCurObj.total">
  20. <ul>
  21. <media-card v-for="item in comCurObj.data" :key="item.id" :cardData="item" @labelEvent="receveLabel"
  22. @leftBtnEvent="openDialog(item)"
  23. @rightBtnEvent="download(item)"></media-card>
  24. </ul>
  25. <pagination v-show="comCurObj.total > 0" :total="comCurObj.total" :page.sync="comCurObj.page"
  26. :limit.sync="limit" @pagination="getList" />
  27. </section>
  28. <el-empty description="No Data" v-else></el-empty>
  29. </div>
  30. <el-dialog :lock-scroll="false" :visible.sync="dialogVisible" width="1000px">
  31. <media-card :cardData="cardData" :toggle=true @labelEvent="receveLabel" @rightBtnEvent="download(cardData)"></media-card>
  32. </el-dialog>
  33. </div>
  34. </template>
  35. <script>
  36. import debounce from 'lodash.debounce'
  37. export default {
  38. data() {
  39. return {
  40. list: [
  41. { id: 0, typeName: 'All Content' },
  42. { id: 3, typeName: 'EDMs' },
  43. { id: 1, typeName: 'Banners' },
  44. { id: 4, typeName: 'Catalogues' },
  45. { id: 2, typeName: 'Social Media' },
  46. { id: 8, typeName: 'Email Signature' },
  47. { id: 5, typeName: 'Videos' },
  48. { id: 7, typeName: 'News' },
  49. ],
  50. curTab: 0,
  51. keyword: '',
  52. limit: 20,
  53. listLoading: true,
  54. cardData: {},
  55. dialogVisible: false,
  56. getDebList: null,
  57. }
  58. },
  59. async created() {
  60. await this.getList()
  61. this.getDebList = debounce(this.getList, 500);
  62. },
  63. watch: {
  64. keyword(newValue, oldValue) {
  65. if (newValue != oldValue) {
  66. window.scrollTo({ top: 0, behavior: 'smooth' });
  67. this.getDebList()
  68. this.dialogVisible = false;
  69. }
  70. },
  71. },
  72. computed: {
  73. comCurObj() {
  74. return this.list[this.curTab]
  75. }
  76. },
  77. methods: {
  78. getList() {
  79. this.listLoading = true
  80. let params = {
  81. keyword: this.keyword,
  82. page: this.comCurObj.page || 1,
  83. limit: this.limit,
  84. }
  85. this.curTab && (params.type = this.comCurObj?.id)
  86. this.$axios
  87. .get('/uk-api/data/list', {
  88. params
  89. })
  90. .then(res => {
  91. if (res.code == 1) {
  92. const { data, total } = res.result
  93. this.comCurObj.data = data.map(i => {
  94. const mapLabel = i.datalabel.map(o => o.name)
  95. const obj = this.list.find(item => item.id === i.type)
  96. const typeName = this.curTab === 0 ? obj?.typeName : this.comCurObj?.typeName
  97. return { ...i, mapLabel, typeName }
  98. })
  99. this.comCurObj.total = total
  100. this.listLoading = false
  101. }
  102. if (process.client) {
  103. this.$nextTick(() => {
  104. window.scroll(0, 0)
  105. })
  106. }
  107. })
  108. .catch(() => {
  109. this.listLoading = false
  110. })
  111. },
  112. selTab(i) {
  113. this.curTab = i
  114. this.$set(this.comCurObj, 'page', 1)
  115. this.getList()
  116. },
  117. openDialog(data) {
  118. this.cardData = data;
  119. this.dialogVisible = true;
  120. },
  121. download(item) {
  122. if (!item.media_url) {
  123. this.$message.error('No File')
  124. return
  125. }
  126. var urlStr = item.media_url.match('[^/]+(?!.*/)')[0]
  127. this.$utils.downloadXhr(item.media_url, urlStr)
  128. },
  129. receveLabel(l){
  130. this.keyword = l
  131. }
  132. },
  133. }
  134. </script>
  135. <style lang="scss" scoped>
  136. .tab {
  137. margin-bottom: 20px;
  138. border-bottom: 1.5px solid #eee;
  139. overflow-x: auto;
  140. white-space: nowrap;
  141. li {
  142. position: relative;
  143. font-size: 16px;
  144. color: #00213b;
  145. text-align: center;
  146. padding: 0 15px 10px;
  147. cursor: pointer;
  148. &::after {
  149. content: '';
  150. position: absolute;
  151. bottom: 0;
  152. left: 50%;
  153. width: 0;
  154. height: 2px;
  155. background-color: #e90000;
  156. transition: width 0.3s ease, left 0.3s ease;
  157. transform: translateX(-50%);
  158. }
  159. &.active {
  160. font-weight: bold;
  161. }
  162. &.active::after {
  163. width: 100%;
  164. left: 50%;
  165. }
  166. }
  167. }
  168. :deep(.el-input) {
  169. .el-input__inner {
  170. border-radius: 18px;
  171. }
  172. i {
  173. cursor: pointer;
  174. }
  175. }
  176. :deep(.el-dialog__header) {
  177. padding: 0;
  178. .el-dialog__headerbtn {
  179. top: 5px;
  180. right: 5px;
  181. }
  182. }
  183. :deep(.el-dialog__body) {
  184. padding: 20px;
  185. }
  186. .item {
  187. margin: 20px auto;
  188. ul {
  189. width: 100%;
  190. display: grid;
  191. grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  192. grid-gap: 30px;
  193. }
  194. }
  195. :deep(.el-pagination.is-background) {
  196. .el-pager {
  197. li.number {
  198. background-color: #f8f8f8;
  199. border-radius: 50%;
  200. color: #a7a7a7;
  201. }
  202. li:not(.disabled).active {
  203. background-color: #00213b;
  204. color: #d4d7da;
  205. }
  206. }
  207. .btn-prev,
  208. .btn-next {
  209. border-radius: 50%;
  210. background-color: #fff;
  211. .el-icon-arrow-left:before {
  212. content: '';
  213. }
  214. .el-icon-arrow-right:before {
  215. content: '';
  216. }
  217. }
  218. }
  219. </style>