shopro-live-card.vue 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361
  1. <template>
  2. <view class="live-card-wrap">
  3. <!-- 小卡片 -->
  4. <view class="sp-live-card" v-if="liveType == 2" :style="{ width: wh + 'rpx' }">
  5. <view class="live-content" @tap="goRoom" :style="{ width: wh + 'rpx' }">
  6. <image class="item-cover" :src="detail.share_img" mode="aspectFill"></image>
  7. <view class="item-status">
  8. <image class="status-img" :src="liveStatus[liveState].img" mode=""></image>
  9. <text class="status-text">{{ liveStatus[liveState].title }}</text>
  10. </view>
  11. <view class="item-title u-ellipsis-1" :style="{ width: wh + 'rpx' }">{{ detail.name }}</view>
  12. </view>
  13. <view class="live-bottom" :style="{ width: wh + 'rpx' }">
  14. <view class="live-info">
  15. <view class="info-box">
  16. <view class="info-name u-ellipsis-1" :style="{ width: wh + 'rpx' }">{{ detail.anchor_name }}</view>
  17. </view>
  18. </view>
  19. <slot name="liveGoods">
  20. <view class="live-goods" v-if="liveGoodsList.length">
  21. <view class="live-goods__item" v-for="(goods, index) in liveGoodsList" :key="goods.id" v-if="index < 3">
  22. <image class="live-goods__img" :src="goods.cover_img" mode=""></image>
  23. <view class="live-goods__price" v-if="index < 2">¥{{ goods.price }}</view>
  24. <view class="live-goods__mark" v-else>
  25. <text>{{ liveGoodsList.length }}+</text>
  26. </view>
  27. </view>
  28. </view>
  29. </slot>
  30. </view>
  31. </view>
  32. <!-- 大卡片 -->
  33. <view class="big-card-wrap" v-if="liveType == 1">
  34. <view class="content-one__item" @tap="goRoom">
  35. <image class="item-cover" :src="detail.share_img" mode="widthFix"></image>
  36. <view class="item-status">
  37. <image class="status-img" :src="liveStatus[liveState].img" mode=""></image>
  38. <text class="status-text">{{ liveStatus[liveState].title }}</text>
  39. </view>
  40. <view class="item-title u-ellipsis-1">{{ detail.name }}</view>
  41. </view>
  42. </view>
  43. </view>
  44. </template>
  45. <script>
  46. /**
  47. * 小程序直播显示卡片
  48. * @property {Object} detail - 直播卡片显示数据
  49. * @property {Number} wh = [345] - 直播卡片宽度
  50. * @property {Number|String} style = 2 - 1:大卡片;2::小卡片
  51. */
  52. // #ifdef MP-WEIXIN
  53. import { HAS_LIVE } from '@/env';
  54. let livePlayer = null;
  55. // 全局配置文件控制是否开启直播组件,没有此项功能的小程序,运行会报错。
  56. if (HAS_LIVE) {
  57. livePlayer = requirePlugin('live-player-plugin');
  58. }
  59. // #endif
  60. let timer = null;
  61. export default {
  62. name: 'shoproLiveCard',
  63. components: {},
  64. data() {
  65. return {
  66. liveType: this.type,
  67. liveState: this.detail.live_status,
  68. liveGoodsList: this.detail.goods,
  69. liveStatus: {
  70. '101': {
  71. img: this.$IMG_URL + '/imgs/live/live.png',
  72. title: '直播中'
  73. },
  74. '102': {
  75. img: this.$IMG_URL + '/imgs/live/prevue.png',
  76. title: '未开始'
  77. },
  78. '103': {
  79. img: this.$IMG_URL + '/imgs/live/playback.png',
  80. title: '已结束'
  81. },
  82. '104': {
  83. img: this.$IMG_URL + '/imgs/live/104.png',
  84. title: '禁播'
  85. },
  86. '105': {
  87. img: this.$IMG_URL + '/imgs/live/105.png',
  88. title: '暂停中'
  89. },
  90. '106': {
  91. img: this.$IMG_URL + '/imgs/live/106.png',
  92. title: '异常'
  93. },
  94. '107': {
  95. img: this.$IMG_URL + '/imgs/live/past.png',
  96. title: '已过期'
  97. }
  98. }
  99. };
  100. },
  101. props: {
  102. detail: {
  103. type: Object,
  104. default: null
  105. },
  106. wh: {
  107. type: Number,
  108. default: 345
  109. },
  110. type: {
  111. type: [Number, String],
  112. default: 2
  113. }
  114. },
  115. computed: {},
  116. created() {
  117. this.getLiveStatus();
  118. },
  119. mounted() {
  120. let that = this;
  121. timer = setInterval(() => {
  122. that.getLiveStatus();
  123. }, 60000);
  124. },
  125. beforeDestroy() {
  126. timer = null;
  127. clearInterval(timer);
  128. },
  129. methods: {
  130. goRoom() {
  131. let that = this;
  132. wx.navigateTo({
  133. url: `plugin-private://wx2b03c6e691cd7370/pages/live-player-plugin?room_id=${that.detail.room_id}`
  134. });
  135. },
  136. // 轮询liveStatus
  137. getLiveStatus() {
  138. if (HAS_LIVE) {
  139. let that = this;
  140. let date = '';
  141. if (that.liveState == 102) {
  142. date = that.$u.timeFormat(that.detail.starttime, 'mm-dd hh:MM');
  143. that.liveStatus['102'].title = '预告 ' + date;
  144. }
  145. livePlayer
  146. .getLiveStatus({ room_id: that.detail.room_id })
  147. .then(res => {
  148. // 101: 直播中, 102: 未开始, 103: 已结束, 104: 禁播, 105: 暂停中, 106: 异常,107:已过期
  149. that.liveState = res.liveStatus;
  150. })
  151. .catch(err => {
  152. console.log('get live status', err);
  153. });
  154. }
  155. }
  156. }
  157. };
  158. </script>
  159. <style lang="scss">
  160. // 小卡片
  161. .sp-live-card {
  162. width: 335rpx;
  163. box-shadow: 0px 0px 10rpx 4rpx rgba(199, 199, 199, 0.22);
  164. border-radius: 20rpx;
  165. height: 100%;
  166. overflow: auto;
  167. }
  168. .live-content {
  169. position: relative;
  170. width: 335rpx;
  171. height: 335rpx;
  172. overflow: hidden;
  173. .item-cover {
  174. background-color: #eee;
  175. width: 100%;
  176. height: 100%;
  177. border-radius: 20rpx 20rpx 0 0;
  178. }
  179. .item-status {
  180. position: absolute;
  181. top: 20rpx;
  182. left: 10rpx;
  183. height: 40rpx;
  184. background: rgba(0, 0, 0, 0.4);
  185. border-radius: 20rpx;
  186. display: flex;
  187. justify-content: center;
  188. align-items: center;
  189. .status-img {
  190. width: 40rpx;
  191. height: 40rpx;
  192. }
  193. .status-text {
  194. font-size: 22rpx;
  195. font-weight: 500;
  196. color: rgba(255, 255, 255, 1);
  197. padding: 0 10rpx;
  198. }
  199. }
  200. .item-title {
  201. width: 335rpx;
  202. position: absolute;
  203. bottom: 0;
  204. line-height: 60rpx;
  205. padding: 0 20rpx;
  206. font-size: 26rpx;
  207. font-weight: 500;
  208. color: rgba(255, 255, 255, 1);
  209. background: linear-gradient(transparent, rgba(#000, 0.5));
  210. padding-right: 60rpx;
  211. }
  212. .like-img {
  213. position: absolute;
  214. bottom: 20rpx;
  215. right: 10rpx;
  216. width: 60rpx;
  217. height: 130rpx;
  218. }
  219. }
  220. .live-bottom {
  221. background-color: #fff;
  222. padding: 20rpx;
  223. width: 335rpx;
  224. .live-info {
  225. display: flex;
  226. justify-content: space-between;
  227. align-items: center;
  228. width: 100%;
  229. .info-box {
  230. display: flex;
  231. align-items: center;
  232. }
  233. .info-avatar {
  234. width: 40rpx;
  235. height: 40rpx;
  236. border-radius: 50%;
  237. margin-right: 10rpx;
  238. background: #eee;
  239. }
  240. .info-name {
  241. width: 150rpx;
  242. font-size: 24rpx;
  243. font-weight: 500;
  244. color: rgba(51, 51, 51, 1);
  245. }
  246. .views {
  247. font-size: 20rpx;
  248. font-weight: 400;
  249. color: rgba(153, 153, 153, 1);
  250. }
  251. }
  252. .live-goods {
  253. display: flex;
  254. align-items: center;
  255. margin-top: 20rpx;
  256. &__item {
  257. position: relative;
  258. width: 96rpx;
  259. height: 96rpx;
  260. border: 1rpx solid rgba(238, 238, 238, 1);
  261. border-radius: 10rpx;
  262. overflow: hidden;
  263. margin-right: 8rpx;
  264. &:nth-child(3n) {
  265. margin-right: 0;
  266. }
  267. }
  268. &__img {
  269. background: #eee;
  270. width: 100%;
  271. height: 100%;
  272. }
  273. &__price {
  274. position: absolute;
  275. bottom: 0;
  276. line-height: 40rpx;
  277. width: 100%;
  278. background: linear-gradient(transparent, rgba(#000, 0.5));
  279. font-size: 20rpx;
  280. color: #fff;
  281. }
  282. &__mark {
  283. position: absolute;
  284. width: 100%;
  285. height: 100%;
  286. top: 0;
  287. left: 0;
  288. margin: auto;
  289. display: flex;
  290. justify-content: center;
  291. align-items: center;
  292. background: rgba(#000, 0.3);
  293. font-size: 24rpx;
  294. font-weight: 500;
  295. color: rgba(255, 255, 255, 1);
  296. }
  297. }
  298. }
  299. // 单个大图直播
  300. .big-card-wrap {
  301. .content-one__item {
  302. position: relative;
  303. height: 280rpx;
  304. border-radius: 20rpx;
  305. margin-top: 16rpx;
  306. overflow: hidden;
  307. .item-cover {
  308. background-color: #eee;
  309. width: 100%;
  310. height: 100%;
  311. }
  312. .item-status {
  313. position: absolute;
  314. top: 20rpx;
  315. left: 10rpx;
  316. height: 40rpx;
  317. background: rgba(0, 0, 0, 0.4);
  318. border-radius: 20rpx;
  319. display: flex;
  320. justify-content: center;
  321. align-items: center;
  322. .status-img {
  323. width: 38rpx;
  324. height: 38rpx;
  325. }
  326. .status-text {
  327. font-size: 22rpx;
  328. font-family: PingFang SC;
  329. font-weight: 500;
  330. color: rgba(255, 255, 255, 1);
  331. padding: 0 10rpx;
  332. }
  333. }
  334. .item-title {
  335. width: 100%;
  336. position: absolute;
  337. bottom: 0;
  338. line-height: 60rpx;
  339. padding: 0 20rpx;
  340. font-size: 26rpx;
  341. font-family: PingFang SC;
  342. font-weight: 500;
  343. color: rgba(255, 255, 255, 1);
  344. background: linear-gradient(transparent, rgba(#000, 0.5));
  345. }
  346. .like-img {
  347. position: absolute;
  348. bottom: 20rpx;
  349. right: 10rpx;
  350. width: 60rpx;
  351. height: 130rpx;
  352. }
  353. }
  354. }
  355. </style>