video.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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>Videos</el-breadcrumb-item>
  6. </el-breadcrumb>
  7. <p class="title">Videos</p>
  8. <div class="line"></div>
  9. <ul class="item" v-loading="listLoading">
  10. <li v-for="item in videoList" :key="item.id">
  11. <div class="item-content">
  12. <video
  13. id="my-player"
  14. class="video-js"
  15. width="330"
  16. height="186"
  17. controls="controls"
  18. onMouseOver="this.play()"
  19. onMouseOut="this.pause()"
  20. muted
  21. >
  22. <source :src="item.url" />
  23. </video>
  24. </div>
  25. <p class="item-title">{{ item.title }}</p>
  26. </li>
  27. </ul>
  28. <pagination
  29. v-show="total > 0"
  30. :total="total"
  31. :page.sync="listQuery.page"
  32. :limit.sync="listQuery.limit"
  33. @pagination="getList"
  34. />
  35. <div v-if="!videoList.length">
  36. <el-empty description="No Data"></el-empty>
  37. </div>
  38. </div>
  39. </template>
  40. <script>
  41. export default {
  42. data() {
  43. return {
  44. total: 0,
  45. listQuery: {
  46. page: 1,
  47. limit: 12,
  48. },
  49. videoList: [],
  50. listLoading: true,
  51. };
  52. },
  53. async created() {
  54. await this.getList();
  55. },
  56. methods: {
  57. getList() {
  58. this.$axios
  59. .post("/api/resources/video/list", {
  60. state: "au",
  61. page: this.listQuery.page,
  62. limit: this.listQuery.limit,
  63. })
  64. .then((res) => {
  65. if (res.code == 1) {
  66. res.result.data.forEach((item) => {
  67. item.url =
  68. !this.$mediaRegExp.test(item.url)
  69. ? this.$OSS_PREFIX +
  70. item.url
  71. : item.url;
  72. });
  73. this.videoList = res.result.data;
  74. this.total = res.result.total;
  75. this.listLoading = false;
  76. }
  77. this.$nextTick(() => {
  78. window.scroll(0, 0);
  79. });
  80. })
  81. .catch(() => {
  82. this.listLoading = false;
  83. this.videoList = [];
  84. });
  85. },
  86. },
  87. };
  88. </script>
  89. <style lang="scss" scoped>
  90. .title {
  91. height: 50px;
  92. font-size: 35px;
  93. font-family: Proxima Nova;
  94. font-weight: bold;
  95. color: #00213b;
  96. text-align: center;
  97. line-height: 50px;
  98. }
  99. .line {
  100. width: 99px;
  101. height: 4px;
  102. background: #e90000;
  103. margin: 15px auto;
  104. }
  105. .item {
  106. margin: 20px auto;
  107. display: flex;
  108. justify-content: flex-start;
  109. flex-wrap: wrap;
  110. font-family: Proxima Nova;
  111. li {
  112. width: 330px;
  113. height: 240px;
  114. background: #ffffff;
  115. box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
  116. margin-right: 25px;
  117. margin-bottom: 30px;
  118. &:nth-of-type(4n) {
  119. margin-right: 0;
  120. }
  121. .item-title {
  122. height: 54px;
  123. font-size: 18px;
  124. font-weight: 400;
  125. color: #00213b;
  126. line-height: 54px;
  127. padding-left: 20px;
  128. }
  129. }
  130. }
  131. :deep(.el-pagination.is-background) {
  132. .el-pager {
  133. li.number {
  134. background-color: #f8f8f8;
  135. border-radius: 50%;
  136. color: #a7a7a7;
  137. }
  138. li:not(.disabled).active {
  139. background-color: #00213b;
  140. color: #d4d7da;
  141. }
  142. }
  143. .btn-prev,
  144. .btn-next {
  145. border-radius: 50%;
  146. background-color: #fff;
  147. .el-icon-arrow-left:before {
  148. content: "";
  149. }
  150. .el-icon-arrow-right:before {
  151. content: "";
  152. }
  153. }
  154. }
  155. </style>