video-list.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. <template>
  2. <view class="content">
  3. <u-navbar title="视频管理" height="88rpx" :placeholder="true" :autoBack="true">
  4. <view slot="right" class="u-nav-slot">
  5. <text @click="show_manager = !show_manager">{{show_manager ? '完成' : '管理'}}</text>
  6. </view>
  7. </u-navbar>
  8. <view class="list" v-if="list.length>0">
  9. <u-checkbox-group v-model="select_all" placement="column" @change="selectitem">
  10. <view class="list-item hflex acenter" v-for="(item,index) in list" :key="index" @click="toinfo(item)">
  11. <u-checkbox v-if="show_manager" activeColor="#57C3C2" shape="circle" :customStyle="{marginBottom: '8px'}" :name="item.id"></u-checkbox>
  12. <view class="hflex acenter" style="flex:1">
  13. <image :src="item.image" mode="aspectFill"></image>
  14. <view class="img-right">
  15. <text class="name text_hide2">{{item.title}}</text>
  16. <text class="num" v-if="current != 4">{{item.created_at}}</text>
  17. </view>
  18. </view>
  19. </view>
  20. </u-checkbox-group>
  21. </view>
  22. <view class="hflex acenter jcenter " style="height: 100vh;" v-else >
  23. <u-empty mode="data"></u-empty>
  24. </view>
  25. <view style="height: 186rpx;" v-if="show_manager"></view>
  26. <view class="bottom hflex acenter jbetween" v-if="show_manager">
  27. <u-checkbox-group placement="column">
  28. <u-checkbox :checked="quanxuan" @change="selectall" activeColor="#57C3C2" shape="circle" :customStyle="{marginBottom: '8px'}" label="全选"></u-checkbox>
  29. </u-checkbox-group>
  30. <view class="btn" @click="downVideo">批量下载</view>
  31. </view>
  32. </view>
  33. </template>
  34. <script>
  35. import $api from '@/static/js/api.js'
  36. export default {
  37. data() {
  38. return{
  39. list: [],
  40. current:0,
  41. page: 1,
  42. last_page: 1,
  43. show_manager: false,
  44. select_all: [],
  45. quanxuan: false
  46. }
  47. },
  48. onLoad() {
  49. this.getlist()
  50. },
  51. onReachBottom() {
  52. if(this.page < this.last_page) {
  53. this.page++
  54. this.getlist()
  55. } else {
  56. uni.$u.toast('已经到底了')
  57. return
  58. }
  59. },
  60. methods: {
  61. toinfo(item) {
  62. uni.navigateTo({
  63. url: '/pageC/video-detail?data=' + encodeURIComponent(JSON.stringify(item))
  64. })
  65. },
  66. /* 全选 */
  67. selectall() {
  68. this.quanxuan = !this.quanxuan
  69. console.log(this.quanxuan);
  70. if(this.quanxuan) {
  71. this.select_all = []
  72. for(var i=0;i<this.list.length;i++) {
  73. this.select_all.push(this.list[i].id)
  74. }
  75. } else {
  76. this.select_all = []
  77. }
  78. console.log(this.select_all);
  79. },
  80. /* 选择 */
  81. selectitem(e) {
  82. this.select_all = e
  83. if(this.select_all.length == this.list.length) {
  84. this.quanxuan = true
  85. } else {
  86. this.quanxuan = false
  87. }
  88. },
  89. /* 取消收藏 */
  90. tocancel(item) {
  91. },
  92. /* 切换tab */
  93. changetabs(e) {
  94. this.current = e.index
  95. this.select_all = []
  96. this.quanxuan = false
  97. this.list = []
  98. this.getlist()
  99. },
  100. getlist() {
  101. var _this = this
  102. $api.req({
  103. url: 'admin/video',
  104. data: {
  105. is_page: 1,
  106. page: _this.page,
  107. limit: 10
  108. }
  109. }, function(res) {
  110. if(res.code == 10000) {
  111. _this.list = _this.list.concat(res.data.list)
  112. _this.last_page = res.data.last_page
  113. }
  114. })
  115. },
  116. downVideo() {}
  117. },
  118. }
  119. </script>
  120. <style lang="scss">
  121. .content::v-deep {
  122. background: #FFFFFF;
  123. position: relative;
  124. .bottom {
  125. position: fixed;
  126. bottom: 0;
  127. width: 750rpx;
  128. height: 166rpx;
  129. background: #FFFFFF;
  130. padding: 12rpx 28rpx 80rpx;
  131. box-sizing: border-box;
  132. z-index: 29;
  133. .btn {
  134. width: 184rpx;
  135. height: 72rpx;
  136. background: #00B0B0;
  137. border-radius: 36rpx;
  138. font-size: 28rpx;
  139. font-family: PingFangSC, PingFang SC;
  140. font-weight: 400;
  141. color: #FFFFFF;
  142. line-height: 72rpx;
  143. text-align: center;
  144. }
  145. }
  146. .list{
  147. width: 100%;
  148. box-sizing: border-box;
  149. padding: 28rpx 28rpx;
  150. .list-item {
  151. margin: 0 0 32rpx;
  152. image {
  153. width: 200rpx;
  154. height: 128rpx;
  155. border-radius: 6rpx;
  156. margin: 0 20rpx 0 0;
  157. }
  158. .img-right {
  159. .name {
  160. max-width: 452rpx;
  161. font-size: 28rpx;
  162. font-family: PingFangSC, PingFang SC;
  163. font-weight: 500;
  164. color: #333333;
  165. padding: 0 0 14rpx;
  166. }
  167. .num {
  168. font-size: 20rpx;
  169. font-family: SFPro, SFPro;
  170. font-weight: 400;
  171. color: #666666;
  172. }
  173. .price {
  174. font-size: 28rpx;
  175. font-family: JDZhengHT, JDZhengHT;
  176. font-weight: 400;
  177. color: #FF3333;
  178. }
  179. }
  180. .u-checkbox {
  181. margin: 0 32rpx 0 0;
  182. }
  183. }
  184. }
  185. .tabs {
  186. width: 100%;
  187. padding: 18rpx 0;
  188. border-bottom: 2rpx solid #F5F5F5;
  189. }
  190. .u-nav-slot {
  191. text {
  192. font-size: 28rpx;
  193. font-family: PingFangSC, PingFang SC;
  194. font-weight: 400;
  195. color: #333333;
  196. }
  197. }
  198. }
  199. </style>