123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297 |
- <template>
- <div class="main">
- <view class='flash-sale'>
- <view class='list'>
- <view v-for="(item,index) in broadcastList" :key='index' >
- <navigator hover-class="none" :url="((item.live_status == 103 && item.replay_status) || item.live_status === 101 || item.live_status === 102) ? 'plugin-private://wx2b03c6e691cd7370/pages/live-player-plugin?room_id=' + item.room_id : ''">
- <view class='item acea-row row-between-wrapper'>
- <view class="live-image">
- <img class="image" :src="item.share_img">
- <view class="live-top" :class="item.live_status == 102 ? 'playRadius' : 'notPlayRadius'" :style="'background:' + (item.live_status == 101 ? playBg : (item.live_status != 101 && item.live_status != 102) ? endBg : notBg) + ';'">
- <block v-if="item.live_status == 101">
- <image :src="`${domain}/static/images/live-01.png`" mode=""></image>
- <text>直播中</text>
- </block>
- <block v-if="item.live_status == 103 && item.replay_status === 1">
- <image :src="`${domain}/static/images/live-02.png`" mode=""></image>
- <text>回放</text>
- </block>
- <block v-if="(item.live_status != 101 && item.live_status != 102 && item.live_status != 103) || (item.live_status == 103 && item.replay_status == 0)">
- <image :src="`${domain}/static/images/live-02.png`" mode=""></image>
- <text>已结束</text>
- </block>
- <block v-if="item.live_status == 102">
- <image :src="`${domain}/static/images/live-03.png`" mode=""></image>
- <text>预告</text>
- </block>
- </view>
- <view v-if="item.live_status == 101 || item.live_status == 102" class="broadcast-time">{{ item.show_time }}</view>
- </view>
- <view class="live-wrapper">
- <view class="live-title">{{ item.name }}</view>
- <view class="live-store">{{ item.anchor_name }}</view>
- <view class="pro-count" style="white-space: nowrap; display: flex" v-if="item.broadcast.length > 0">
- <navigator hover-class="none" class="item" v-for="(itm, idx) in item.broadcast" :key="idx">
- <view class="pro-img" v-if="idx < 3">
- <image :src="itm.goods.cover_img"></image>
- <view class="price" v-if="idx < 2">¥{{itm.goods.price}}</view>
- <view v-else class="more">+{{ item.broadcast.length - 2 }}</view>
- </view>
- </navigator>
- </view>
- </view>
- </view>
- </navigator>
- </view>
- <view class='loadingicon acea-row row-center-wrapper'>
- <text class='loading iconfont icon-jiazai' :hidden='loading==false'></text>{{loadTitle}}
- </view>
- </view>
- </view>
- <home></home>
- </div>
- </template>
- <script>
-
-
-
-
-
-
-
-
-
- import {
- getBroadcastListApi
- } from '../../../api/store.js';
- import home from '@/components/home/index.vue'
- import { HTTP_REQUEST_URL } from '@/config/app';
- export default {
- components: {
- home
- },
- data() {
- return {
- topImage: '',
- broadcastList: [],
- loadTitle: '加载更多',
- scrollLeft: 0,
- interval: 0,
- status: 1,
- page: 1,
- limit: 5,
- loading: false,
- loadend: false,
- pageloading: false,
- endBg: 'linear-gradient(#666666, #999999)',
- notBg: 'rgb(26, 163, 246)',
- playBg: 'linear-gradient(#FF0000, #FF5400)',
- domain: HTTP_REQUEST_URL,
- }
- },
-
-
- onShareAppMessage: function() {
- wx.showShareMenu({
- withShareTicket: true,
- menus: ['shareAppMessage', 'shareTimeline']
- })
- return {
- title: '直播',
- path: 'pages/activity/liveBroadcast/index',
- }
- },
- onShareTimeline: function() {
- return {
- title: '直播',
- query: {
- key: ''
- },
- imageUrl: ''
- }
- },
-
- onLoad() {
- this.getBroadcastList();
- },
- methods: {
- getBroadcastList() {
- var that = this;
- var data = {
- page: that.page,
- limit: that.limit,
- };
- if (that.loadend) return;
- if (that.pageloading) return;
- this.pageloading = true
- getBroadcastListApi(data).then(res => {
- var list = res.data.list;
- var loadend = list.length < that.limit;
- that.page++;
- that.broadcastList = that.broadcastList.concat(list),
- that.page = that.page;
- that.pageloading = false;
- that.loadend = loadend;
- that.loadTitle = loadend ? '我也是有底线的' : '加载更多';
- }).catch(err => {
- that.pageloading = false
- that.loadTitle = '我也是有底线的'
- });
- },
- },
-
- onReachBottom: function() {
- this.getBroadcastList();
- }
- }
- </script>
- <style lang="scss">
- .main {
- padding: 0 20rpx;
- margin-top: 20rpx;
- .row-between-wrapper {
- margin-bottom: 20rpx;
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- justify-content: space-between;
- border-radius: 18rpx;
- .live-image {
- position: relative;
- width: 355rpx;
- height: 272rpx;
- border-radius: 18rpx 0 0 18rpx;
- .image {
- width: 100%;
- height: 100%;
- border-radius: 18rpx 0 0 18rpx;
- }
- }
- .live-wrapper {
- width: 50%;
- height: 272rpx;
- padding: 20rpx;
- background: #fff;
- border-radius: 0 18rpx 18rpx 0;
- position: relative;
- .live-title {
- font-size: 30rpx;
- color: #282828;
- font-weight: bold;
- }
- .live-store {
- font-size: 24rpx;
- color: #666666;
- }
- .pro-count {
- width: 330rpx;
- height: 100rpx;
- white-space: nowrap;
- position: absolute;
- bottom: 20rpx;
- }
- .item {
- width: 100rpx;
- height: 100rpx;
- margin-right: 15rpx;
- border-radius: 8rpx;
- position: relative;
- .pro-img{
- width: 100rpx;
- height: 100rpx;
- }
- image {
- width: 100rpx;
- height: 100rpx;
- max-width: 100%;
- border-radius: 8rpx;
- }
- .price {
- text-align: center;
- color: #FEFEFE;
- position: absolute;
- bottom: 4rpx;
- left: 0;
- width: 100%;
- font-size: 22rpx;
- background: rgba(0,0,0,.5);
- border-radius: 0 0 8rpx 8rpx;
- }
- .more {
- width: 100rpx;
- height: 100rpx;
- line-height: 100rpx;
- text-align: center;
- font-size: 28rpx;
- color: #FEFEFE;
- font-weight: bold;
- position: absolute;
- top: 0;
- left: 0;
- background-color: rgba(0, 0, 0, .2);
- border-radius: 8rpx;
- }
- }
- }
- }
- }
- .live-top {
- z-index: 20;
- position: absolute;
- left: 0;
- top: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #fff;
- min-width: 130rpx;
- max-width: 140rpx;
- height: 50rpx;
- font-size: 22rpx;
- &.playRadius {
- border-radius: 18rpx 0px 0 0px;
- }
-
- &.notPlayRadius {
- border-radius: 18rpx 0px 18rpx 0px;
- }
- image {
- width: 30rpx;
- height: 30rpx;
- margin-right: 10rpx;
- /* #ifdef H5 */
- display: block;
- /* #endif */
- }
- }
- .broadcast-time {
- z-index: 20;
- position: absolute;
- left: 130rpx;
- top: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #fff;
- width: 160rpx;
- height: 50rpx;
- background: rgba(0,0,0,.4);
- font-size: 22rpx;
- border-radius: 0 0 18rpx 0;
- }
- </style>
|