源文件
This commit is contained in:
49
pages/plugins/weixinliveplayer/detail/detail.css
Normal file
49
pages/plugins/weixinliveplayer/detail/detail.css
Normal file
@@ -0,0 +1,49 @@
|
||||
/**
|
||||
* 内容
|
||||
*/
|
||||
.base .item .item-icon {
|
||||
width: 35rpx;
|
||||
height: 35rpx !important;
|
||||
}
|
||||
|
||||
.base .item .status {
|
||||
color: #999;
|
||||
}
|
||||
|
||||
.base .item .status-0 {
|
||||
color: #0e90d2;
|
||||
}
|
||||
|
||||
.base .item .status-1 {
|
||||
color: #5eb95e;
|
||||
}
|
||||
|
||||
.base .item .status-2 {
|
||||
color: #F37B1D;
|
||||
}
|
||||
|
||||
/**
|
||||
* 导航
|
||||
*/
|
||||
.nav button image {
|
||||
width: 32rpx;
|
||||
height: 32rpx !important;
|
||||
}
|
||||
|
||||
.nav button.share-friend-submit,
|
||||
.nav button.share-poster-submit {
|
||||
width: calc(30% - 20rpx);
|
||||
}
|
||||
|
||||
.nav button.share-friend-submit {
|
||||
background: #1bad18;
|
||||
}
|
||||
|
||||
.nav button.share-poster-submit {
|
||||
background: #6367f0;
|
||||
}
|
||||
|
||||
.nav button.player-submit {
|
||||
width: calc(40% - 40rpx);
|
||||
background: #d2364c;
|
||||
}
|
||||
282
pages/plugins/weixinliveplayer/detail/detail.vue
Normal file
282
pages/plugins/weixinliveplayer/detail/detail.vue
Normal file
@@ -0,0 +1,282 @@
|
||||
<template>
|
||||
<view :class="theme_view">
|
||||
<view v-if="detail != null" class="page-bottom-fixed">
|
||||
<!-- 封面图片 -->
|
||||
<image v-if="(detail || null) != null && (detail.share_img || null) != null" class="banner wh-auto dis-block" :src="detail.share_img" mode="widthFix" @tap="detail_images_view_event" :data-value="detail.share_img"></image>
|
||||
|
||||
<!-- 标题 -->
|
||||
<view class="text-size fw-b padding-main">{{ detail.name }}</view>
|
||||
|
||||
<!-- 基础信息 -->
|
||||
<view class="padding-horizontal-main">
|
||||
<view class="base padding-horizontal-main border-radius-main bg-white oh pr">
|
||||
<view class="item padding-vertical-main flex-row jc-sb">
|
||||
<view>
|
||||
<image class="item-icon va-m margin-right-sm" :src="static_url + 'detail-status-icon.png'" mode="widthFix"></image>
|
||||
<text class="cr-grey va-m">{{$t('detail.detail.4u64dg')}}</text>
|
||||
</view>
|
||||
<view :class="'status status-' + detail.status">{{ detail.status_name }}</view>
|
||||
</view>
|
||||
<view class="item padding-vertical-main br-t oh flex-row jc-sb">
|
||||
<view class="">
|
||||
<image class="item-icon va-m margin-right-sm" :src="static_url + 'detail-time-icon.png'" mode="widthFix"></image>
|
||||
<text class="cr-grey va-m">{{$t('detail.detail.y2639j')}}</text>
|
||||
</view>
|
||||
<view class="flex-row flex-nowrap align-c flex-1 flex-width cr-grey-9 single-text padding-left-main"> {{ detail.start_time }} - {{ detail.end_time }} </view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 导航 -->
|
||||
<view class="nav pf pa-w left-0 right-0 bottom-0 wh-auto">
|
||||
<view class="padding-main flex-row jc-sb">
|
||||
<button class="share-friend-submit cr-white text-size-sm round" type="default" hover-class="none" @tap="share_event">
|
||||
<image class="item-icon va-m margin-right-sm" :src="static_url + 'nav-share-friend-icon.png'" mode="widthFix"></image>
|
||||
<text class="va-m">{{$t('common.share')}}</text>
|
||||
</button>
|
||||
<button class="share-poster-submit cr-white text-size-sm round" type="default" hover-class="none" @tap="share_poster_event">
|
||||
<image class="item-icon va-m margin-right-sm" :src="static_url + 'nav-share-poster-icon.png'" mode="widthFix"></image>
|
||||
<text class="va-m">{{$t('detail.detail.fa8h7j')}}</text>
|
||||
</button>
|
||||
<button class="player-submit cr-white text-size-sm round" type="default" hover-class="none" @tap="player_event">
|
||||
<image class="item-icon va-m margin-right-sm" :src="static_url + 'nav-player-icon.png'" mode="widthFix"></image>
|
||||
<text class="va-m">{{$t('detail.detail.eg25j9')}}</text>
|
||||
</button>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 结尾 -->
|
||||
<component-bottom-line :propStatus="data_bottom_line_status"></component-bottom-line>
|
||||
|
||||
<!-- 分享 -->
|
||||
<component-share-popup ref="share"></component-share-popup>
|
||||
</view>
|
||||
<block v-else>
|
||||
<!-- 提示信息 -->
|
||||
<component-no-data :propStatus="data_list_loding_status" :propMsg="data_list_loding_msg"></component-no-data>
|
||||
</block>
|
||||
|
||||
<!-- 公共 -->
|
||||
<component-common ref="common"></component-common>
|
||||
</view>
|
||||
</template>
|
||||
<script>
|
||||
const app = getApp();
|
||||
import componentCommon from '@/components/common/common';
|
||||
import componentNoData from '@/components/no-data/no-data';
|
||||
import componentBottomLine from '@/components/bottom-line/bottom-line';
|
||||
import componentSharePopup from '@/components/share-popup/share-popup';
|
||||
|
||||
var static_url = app.globalData.get_static_url('weixinliveplayer', true);
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
theme_view: app.globalData.get_theme_value_view(),
|
||||
static_url: static_url + 'app/',
|
||||
params: null,
|
||||
data_list_loding_status: 1,
|
||||
data_list_loding_msg: '',
|
||||
data_bottom_line_status: false,
|
||||
detail: null,
|
||||
// 自定义分享信息
|
||||
share_info: {},
|
||||
};
|
||||
},
|
||||
|
||||
components: {
|
||||
componentCommon,
|
||||
componentNoData,
|
||||
componentBottomLine,
|
||||
componentSharePopup
|
||||
},
|
||||
|
||||
onLoad(params) {
|
||||
// 调用公共事件方法
|
||||
app.globalData.page_event_onload_handle(params);
|
||||
|
||||
// 设置参数
|
||||
this.setData({
|
||||
params: app.globalData.launch_params_handle(params),
|
||||
});
|
||||
this.init();
|
||||
},
|
||||
|
||||
onShow() {
|
||||
// 调用公共事件方法
|
||||
app.globalData.page_event_onshow_handle();
|
||||
|
||||
// 公共onshow事件
|
||||
if ((this.$refs.common || null) != null) {
|
||||
this.$refs.common.on_show();
|
||||
}
|
||||
},
|
||||
|
||||
// 下拉刷新
|
||||
onPullDownRefresh() {
|
||||
this.init();
|
||||
},
|
||||
|
||||
methods: {
|
||||
init() {
|
||||
this.setData({
|
||||
data_list_loding_status: 1,
|
||||
});
|
||||
uni.request({
|
||||
url: app.globalData.get_request_url('detail', 'search', 'weixinliveplayer'),
|
||||
method: 'POST',
|
||||
data: {
|
||||
id: this.params.id,
|
||||
},
|
||||
dataType: 'json',
|
||||
success: (res) => {
|
||||
uni.stopPullDownRefresh();
|
||||
if (res.data.code == 0) {
|
||||
var data = res.data.data;
|
||||
this.setData({
|
||||
detail: data.data || null,
|
||||
data_list_loding_status: 3,
|
||||
data_bottom_line_status: true,
|
||||
data_list_loding_msg: '',
|
||||
});
|
||||
|
||||
if ((this.detail || null) != null) {
|
||||
// 基础自定义分享
|
||||
this.setData({
|
||||
share_info: {
|
||||
title: this.detail.seo_title || this.detail.name,
|
||||
desc: this.detail.seo_desc,
|
||||
path: '/pages/plugins/weixinliveplayer/detail/detail',
|
||||
query: 'id=' + this.detail.id,
|
||||
img: this.detail.share_img,
|
||||
},
|
||||
});
|
||||
|
||||
// 标题
|
||||
uni.setNavigationBarTitle({
|
||||
title: this.detail.name,
|
||||
});
|
||||
}
|
||||
} else {
|
||||
this.setData({
|
||||
data_list_loding_status: 2,
|
||||
data_bottom_line_status: false,
|
||||
data_list_loding_msg: res.data.msg,
|
||||
});
|
||||
app.globalData.showToast(res.data.msg);
|
||||
}
|
||||
|
||||
// 分享菜单处理
|
||||
app.globalData.page_share_handle(this.share_info);
|
||||
},
|
||||
fail: () => {
|
||||
uni.stopPullDownRefresh();
|
||||
this.setData({
|
||||
data_list_loding_status: 2,
|
||||
data_bottom_line_status: false,
|
||||
data_list_loding_msg: this.$t('common.internet_error_tips'),
|
||||
});
|
||||
app.globalData.showToast(this.$t('common.internet_error_tips'));
|
||||
},
|
||||
});
|
||||
},
|
||||
|
||||
// 详情图片查看
|
||||
detail_images_view_event(e) {
|
||||
var value = e.currentTarget.dataset.value || null;
|
||||
if (value != null) {
|
||||
uni.previewImage({
|
||||
current: value,
|
||||
urls: [value],
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
// 进入直播
|
||||
player_event(e) {
|
||||
// 打开直播参数
|
||||
var params = encodeURIComponent(
|
||||
JSON.stringify({
|
||||
type: 'detail',
|
||||
})
|
||||
);
|
||||
var url = `plugin-private://wx2b03c6e691cd7370/pages/live-player-plugin?room_id=${this.detail.roomid}&custom_params=${params}`;
|
||||
|
||||
// #ifdef APP
|
||||
// APP则直接打开微信小程序直播
|
||||
var weixin_original_id = app.globalData.get_config('config.common_app_mini_weixin_share_original_id', null);
|
||||
if(weixin_original_id != null) {
|
||||
plus.share.getServices(res => {
|
||||
let sweixin = null;
|
||||
for(let i in res) {
|
||||
if(res[i].id == 'weixin') {
|
||||
sweixin = res[i];
|
||||
}
|
||||
}
|
||||
//唤醒微信小程序
|
||||
if(sweixin) {
|
||||
sweixin.launchMiniProgram({
|
||||
id: weixin_original_id,
|
||||
type: 0,
|
||||
path: url
|
||||
});
|
||||
} else {
|
||||
app.globalData.showToast(this.$t('detail.detail.86g7e1'));
|
||||
}
|
||||
});
|
||||
}
|
||||
return false;
|
||||
// #endif
|
||||
|
||||
// #ifdef MP-WEIXIN
|
||||
app.globalData.url_open(url);
|
||||
return false;
|
||||
// #endif
|
||||
|
||||
// 非微信环境和APP环境
|
||||
app.globalData.showToast(this.$t('detail.detail.9d3o6w'));
|
||||
},
|
||||
|
||||
// 海报分享
|
||||
share_poster_event() {
|
||||
uni.showLoading({
|
||||
title: this.$t('detail.detail.6xvl35'),
|
||||
});
|
||||
uni.request({
|
||||
url: app.globalData.get_request_url('poster', 'index', 'weixinliveplayer'),
|
||||
method: 'POST',
|
||||
data: {
|
||||
id: this.detail.id,
|
||||
},
|
||||
dataType: 'json',
|
||||
success: (res) => {
|
||||
uni.hideLoading();
|
||||
if (res.data.code == 0) {
|
||||
uni.previewImage({
|
||||
current: res.data.data,
|
||||
urls: [res.data.data],
|
||||
});
|
||||
} else {
|
||||
app.globalData.showToast(res.data.msg);
|
||||
}
|
||||
},
|
||||
fail: () => {
|
||||
uni.hideLoading();
|
||||
app.globalData.showToast(this.$t('common.internet_error_tips'));
|
||||
},
|
||||
});
|
||||
},
|
||||
|
||||
// 分享开启弹层
|
||||
share_event(e) {
|
||||
if ((this.$refs.share || null) != null) {
|
||||
this.$refs.share.init({
|
||||
share_info: this.share_info
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
<style>
|
||||
@import './detail.css';
|
||||
</style>
|
||||
93
pages/plugins/weixinliveplayer/index/index.css
Normal file
93
pages/plugins/weixinliveplayer/index/index.css
Normal file
@@ -0,0 +1,93 @@
|
||||
/**
|
||||
* 标题
|
||||
*/
|
||||
.player-title-icon {
|
||||
width: 46rpx;
|
||||
height: 44rpx;
|
||||
}
|
||||
|
||||
/**
|
||||
* 数据列表
|
||||
*/
|
||||
.data-list .item image {
|
||||
width: 208rpx;
|
||||
height: 210rpx !important;
|
||||
}
|
||||
|
||||
.live-content {
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
width: 40rpx;
|
||||
height: 40rpx;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.live-action {
|
||||
height: calc(100% - 20rpx);
|
||||
padding: 10rpx 8rpx;
|
||||
}
|
||||
|
||||
.live-1,
|
||||
.live-2,
|
||||
.live-3 {
|
||||
width: 0;
|
||||
border: 2rpx solid #fff;
|
||||
height: 4rpx;
|
||||
background-color: #fff;
|
||||
border-radius: 6rpx 6rpx 0 0;
|
||||
}
|
||||
|
||||
.live-1 {
|
||||
animation: move 1s ease-in-out 0s infinite alternate;
|
||||
}
|
||||
|
||||
.live-2 {
|
||||
animation: move 1s ease-in-out 0.8s infinite alternate;
|
||||
}
|
||||
|
||||
.live-3 {
|
||||
animation: move 1s ease-in-out 0.4s infinite alternate;
|
||||
}
|
||||
|
||||
@keyframes move {
|
||||
0% {
|
||||
height: 4rpx;
|
||||
}
|
||||
|
||||
50% {
|
||||
height: 20rpx;
|
||||
}
|
||||
|
||||
100% {
|
||||
height: 10rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.data-list .item .expire {
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
.data-list .item .base {
|
||||
padding: 24rpx 24rpx 24rpx 16rpx;
|
||||
}
|
||||
|
||||
.data-list .ite .status-0 {
|
||||
color: #FFCACA;
|
||||
}
|
||||
|
||||
.data-list .item .status-1 {
|
||||
color: #FF6E51;
|
||||
}
|
||||
|
||||
.data-list .item .status-2 {
|
||||
color: #999999;
|
||||
}
|
||||
|
||||
.data-list .item .status-3 {
|
||||
color: #DDDDDD;
|
||||
}
|
||||
|
||||
.data-list .item .status-4,
|
||||
.data-list .item .status-5,
|
||||
.data-list .item .status-6 {
|
||||
color: #DDDDDD;
|
||||
}
|
||||
209
pages/plugins/weixinliveplayer/index/index.vue
Normal file
209
pages/plugins/weixinliveplayer/index/index.vue
Normal file
@@ -0,0 +1,209 @@
|
||||
<template>
|
||||
<view :class="theme_view">
|
||||
<!-- 轮播 -->
|
||||
<block v-if="banner_list.length > 0">
|
||||
<component-banner :propData="banner_list" propMode="round" propRadius=""></component-banner>
|
||||
</block>
|
||||
|
||||
<view class="spacing-mt" v-if="data_list.length > 0">
|
||||
<view class="padding-horizontal-main">
|
||||
<!-- 导航 -->
|
||||
<view class="spacing-nav-title flex-row jc-sb align-c">
|
||||
<view class="flex-row align-c">
|
||||
<image :src="weixinliveplayer_static_url + 'player-title-icon.png'" mode="scaleToFill" class="player-title-icon margin-right-xs"></image>
|
||||
<text class="text-wrapper">{{$t('index.index.63g4m1')}}</text>
|
||||
</view>
|
||||
<text data-value="/pages/plugins/weixinliveplayer/search/search" @tap="url_event" class="arrow-right padding-right cr-grey text-size-xs cp">{{$t('common.more')}}</text>
|
||||
</view>
|
||||
|
||||
<!-- 数据列表 -->
|
||||
<view class="data-list">
|
||||
<view v-for="(item, index) in data_list" :key="index" class="item border-radius-main bg-white oh pr spacing-mb">
|
||||
<view class="flex-row jc-sb cp" :class="Number(item.status) > 3 ? 'expire' : '' " :data-value="'/pages/plugins/weixinliveplayer/detail/detail?id=' + item.id" @tap="url_event">
|
||||
<!-- <view class="pr"> -->
|
||||
<image class="radius" :src="item.share_img" mode="aspectFill"></image>
|
||||
<view v-if="item.status==='1'" class="pa bottom-0 left-0 live-content circle">
|
||||
<view class="live-action flex-row jc-sa align-e">
|
||||
<view class="live-1"></view>
|
||||
<view class="live-2"></view>
|
||||
<view class="live-3"></view>
|
||||
</view>
|
||||
</view>
|
||||
<!-- </view> -->
|
||||
<view class="base flex-1 flex-width flex-col jc-sb">
|
||||
<view>
|
||||
<view class="single-text text-size-md fw-b">{{item.name}}</view>
|
||||
<view class="margin-top-sm oh flex-row flex-nowrap align-c">
|
||||
<iconfont name="icon-zhibo-time" color="#ccc" size="28rpx" class="margin-right-sm"></iconfont>
|
||||
<view class="flex-row flex-nowrap align-c flex-1 flex-width cr-grey-9 single-text">
|
||||
{{item.start_time}} - {{item.end_time}}
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="self-e text-size-xs cr-grey-9 flex-row align-c" :class="' status-' + item.status">
|
||||
<!-- 未开始 -->
|
||||
<iconfont v-if="item.status==='0'" name="icon-zhibo-time margin-right-xs pr top-xs"></iconfont>
|
||||
<!-- 直播中 -->
|
||||
<div v-else-if="item.status==='1'" class="spread margin-right-sm">
|
||||
<div class="ring"></div>
|
||||
<div class="ring"></div>
|
||||
<div class="ring"></div>
|
||||
</div>
|
||||
<!-- 暂停中 -->
|
||||
<iconfont v-else-if="item.status==='2'" name="icon-player-pause margin-right-xs pr top-xs"></iconfont>
|
||||
<!-- 已结束 -->
|
||||
<iconfont v-else-if="item.status==='3'" name="icon-player-end margin-right-xs pr top-xs"></iconfont>
|
||||
<!-- 其他 -->
|
||||
<iconfont v-else name="icon-zhibo-shixiao margin-right-xs pr top-xs"></iconfont>
|
||||
{{item.status_name}}
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<!-- 结尾 -->
|
||||
<component-bottom-line :propStatus="data_bottom_line_status"></component-bottom-line>
|
||||
</view>
|
||||
<block v-else>
|
||||
<!-- 提示信息 -->
|
||||
<component-no-data :propStatus="data_list_loding_status" :propMsg="data_list_loding_msg"></component-no-data>
|
||||
</block>
|
||||
|
||||
<!-- 公共 -->
|
||||
<component-common ref="common"></component-common>
|
||||
</view>
|
||||
</template>
|
||||
<script>
|
||||
const app = getApp();
|
||||
import componentCommon from '@/components/common/common';
|
||||
import componentNoData from "@/components/no-data/no-data";
|
||||
import componentBanner from "@/components/slider/slider";
|
||||
import componentBottomLine from "@/components/bottom-line/bottom-line";
|
||||
var weixinliveplayer_static_url = app.globalData.get_static_url('weixinliveplayer', true);
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
theme_view: app.globalData.get_theme_value_view(),
|
||||
weixinliveplayer_static_url: weixinliveplayer_static_url,
|
||||
data_list_loding_status: 1,
|
||||
data_bottom_line_status: false,
|
||||
data_list_loding_msg: '',
|
||||
data_list: [],
|
||||
data_base: null,
|
||||
banner_list: [],
|
||||
// 自定义分享信息
|
||||
share_info: {}
|
||||
};
|
||||
},
|
||||
|
||||
components: {
|
||||
componentCommon,
|
||||
componentNoData,
|
||||
componentBanner,
|
||||
componentBottomLine
|
||||
},
|
||||
|
||||
onLoad(params) {
|
||||
// 调用公共事件方法
|
||||
app.globalData.page_event_onload_handle(params);
|
||||
},
|
||||
|
||||
onShow() {
|
||||
// 调用公共事件方法
|
||||
app.globalData.page_event_onshow_handle();
|
||||
|
||||
// 加载数据
|
||||
this.init();
|
||||
|
||||
// 公共onshow事件
|
||||
if ((this.$refs.common || null) != null) {
|
||||
this.$refs.common.on_show();
|
||||
}
|
||||
},
|
||||
|
||||
// 下拉刷新
|
||||
onPullDownRefresh() {
|
||||
this.init();
|
||||
},
|
||||
|
||||
methods: {
|
||||
init() {
|
||||
// 获取数据
|
||||
this.get_data_list();
|
||||
},
|
||||
|
||||
// 获取数据
|
||||
get_data_list() {
|
||||
this.setData({
|
||||
data_list_loding_status: 1
|
||||
});
|
||||
uni.request({
|
||||
url: app.globalData.get_request_url("index", "index", "weixinliveplayer"),
|
||||
method: 'POST',
|
||||
data: {},
|
||||
dataType: 'json',
|
||||
success: res => {
|
||||
uni.stopPullDownRefresh();
|
||||
if (res.data.code == 0) {
|
||||
var data = res.data.data;
|
||||
var status = (data.data || null) == null || data.data.length == 0;
|
||||
this.setData({
|
||||
data_base: data.base || null,
|
||||
banner_list: data.banner_list || [],
|
||||
data_list: data.data,
|
||||
data_list_loding_status: status ? 0 : 3,
|
||||
data_bottom_line_status: !status
|
||||
});
|
||||
|
||||
if ((this.data_base || null) != null) {
|
||||
// 基础自定义分享
|
||||
this.setData({
|
||||
share_info: {
|
||||
title: this.data_base.seo_title || this.data_base.application_name,
|
||||
desc: this.data_base.seo_desc,
|
||||
path: '/pages/plugins/weixinliveplayer/index/index',
|
||||
img: ((this.banner_list || null) != null && this.banner_list.length > 0) ? this.banner_list[0]['images_url'] : ''
|
||||
}
|
||||
});
|
||||
|
||||
// 导航名称
|
||||
if ((this.data_base.application_name || null) != null) {
|
||||
uni.setNavigationBarTitle({
|
||||
title: this.data_base.application_name
|
||||
});
|
||||
}
|
||||
}
|
||||
} else {
|
||||
this.setData({
|
||||
data_bottom_line_status: true,
|
||||
data_list_loding_status: 2,
|
||||
data_list_loding_msg: res.data.msg
|
||||
});
|
||||
}
|
||||
|
||||
// 分享菜单处理
|
||||
app.globalData.page_share_handle(this.share_info);
|
||||
},
|
||||
fail: () => {
|
||||
uni.stopPullDownRefresh();
|
||||
this.setData({
|
||||
data_bottom_line_status: false,
|
||||
data_list_loding_status: 2,
|
||||
data_list_loding_msg: this.$t('common.internet_error_tips')
|
||||
});
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
// url事件
|
||||
url_event(e) {
|
||||
app.globalData.url_event(e);
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
<style>
|
||||
@import './index.css';
|
||||
</style>
|
||||
83
pages/plugins/weixinliveplayer/search/search.css
Normal file
83
pages/plugins/weixinliveplayer/search/search.css
Normal file
@@ -0,0 +1,83 @@
|
||||
/*
|
||||
* 导航
|
||||
*/
|
||||
.nav {
|
||||
height: 74rpx;
|
||||
line-height: 74rpx;
|
||||
}
|
||||
|
||||
.nav .item {
|
||||
width: 20%;
|
||||
}
|
||||
|
||||
/**
|
||||
* 数据列表
|
||||
*/
|
||||
.data-list .item image {
|
||||
width: 208rpx;
|
||||
height: 210rpx !important;
|
||||
}
|
||||
|
||||
.live-content {
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
width: 40rpx;
|
||||
height: 40rpx;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.live-action {
|
||||
height: calc(100% - 20rpx);
|
||||
padding: 10rpx 8rpx;
|
||||
}
|
||||
|
||||
.live-1,
|
||||
.live-2,
|
||||
.live-3 {
|
||||
width: 0;
|
||||
border: 2rpx solid #fff;
|
||||
height: 4rpx;
|
||||
background-color: #fff;
|
||||
border-radius: 6rpx 6rpx 0 0;
|
||||
}
|
||||
|
||||
.live-1 {
|
||||
animation: move 1s ease-in-out 0s infinite alternate;
|
||||
}
|
||||
|
||||
.live-2 {
|
||||
animation: move 1s ease-in-out 0.8s infinite alternate;
|
||||
}
|
||||
|
||||
.live-3 {
|
||||
animation: move 1s ease-in-out 0.4s infinite alternate;
|
||||
}
|
||||
|
||||
.data-list .item .expire {
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
.data-list .item .base {
|
||||
padding: 24rpx 24rpx 24rpx 16rpx;
|
||||
}
|
||||
|
||||
.data-list .ite .status-0 {
|
||||
color: #FFCACA;
|
||||
}
|
||||
|
||||
.data-list .item .status-1 {
|
||||
color: #FF6E51;
|
||||
}
|
||||
|
||||
.data-list .item .status-2 {
|
||||
color: #999999;
|
||||
}
|
||||
|
||||
.data-list .item .status-3 {
|
||||
color: #DDDDDD;
|
||||
}
|
||||
|
||||
.data-list .item .status-4,
|
||||
.data-list .item .status-5,
|
||||
.data-list .item .status-6 {
|
||||
color: #DDDDDD;
|
||||
}
|
||||
300
pages/plugins/weixinliveplayer/search/search.vue
Normal file
300
pages/plugins/weixinliveplayer/search/search.vue
Normal file
@@ -0,0 +1,300 @@
|
||||
<template>
|
||||
<view :class="theme_view">
|
||||
<!-- 导航 -->
|
||||
<view class="nav bg-white">
|
||||
<block v-for="(item, index) in nav_status_list" :key="index">
|
||||
<view :class="'item fl tc ' + (nav_status_index == index ? 'cr-main nav-active-line' : '')" :data-index="index" @tap="nav_event">{{ item.name }}</view>
|
||||
</block>
|
||||
</view>
|
||||
|
||||
<!-- 列表 -->
|
||||
<scroll-view :scroll-y="true" class="scroll-box" @scrolltolower="scroll_lower" lower-threshold="60">
|
||||
<view v-if="data_list.length > 0" class="data-list padding-main">
|
||||
<view v-for="(item, index) in data_list" :key="index" class="item border-radius-main bg-white oh pr spacing-mb">
|
||||
<view class="flex-row jc-sb cp" :class="Number(item.status) > 3 ? 'expire' : ''" :data-value="'/pages/plugins/weixinliveplayer/detail/detail?id=' + item.id" @tap="url_event">
|
||||
<image class="radius" :src="item.share_img" mode="aspectFill"></image>
|
||||
<view v-if="item.status === '1'" class="pa bottom-0 left-0 live-content circle">
|
||||
<view class="live-action flex-row jc-sa align-e">
|
||||
<view class="live-1"></view>
|
||||
<view class="live-2"></view>
|
||||
<view class="live-3"></view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="base flex-1 flex-width flex-col jc-sb">
|
||||
<view>
|
||||
<view class="single-text text-size-md fw-b">{{ item.name }}</view>
|
||||
<view class="margin-top-sm oh flex-row flex-nowrap align-c">
|
||||
<iconfont name="icon-zhibo-time" color="#ccc" size="28rpx" propClass="margin-right-sm"></iconfont>
|
||||
<view class="flex-row flex-nowrap align-c flex-1 flex-width cr-grey-9 single-text"> {{ item.start_time }} - {{ item.end_time }} </view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="self-e text-size-xs cr-grey-9 flex-row align-c" :class="'status-' + item.status"
|
||||
><!-- 未开始 -->
|
||||
<iconfont v-if="item.status === '0'" name="icon-zhibo-time" propClass="margin-right-xs pr top-xs"></iconfont>
|
||||
<!-- 直播中 -->
|
||||
<div v-else-if="item.status === '1'" class="spread margin-right-sm">
|
||||
<div class="ring"></div>
|
||||
<div class="ring"></div>
|
||||
<div class="ring"></div>
|
||||
</div>
|
||||
<!-- 暂停中 -->
|
||||
<iconfont v-else-if="item.status === '2'" name="icon-player-pause" propClass="margin-right-xs pr top-xs"></iconfont>
|
||||
<!-- 已结束 -->
|
||||
<iconfont v-else-if="item.status === '3'" name="icon-player-end" propClass="margin-right-xs pr top-xs"></iconfont>
|
||||
<!-- 其他 -->
|
||||
<iconfont v-else name="icon-zhibo-shixiao" propClass="margin-right-xs pr top-xs"></iconfont>
|
||||
{{ item.status_name }}
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view v-else>
|
||||
<!-- 提示信息 -->
|
||||
<component-no-data :propStatus="data_list_loding_status"></component-no-data>
|
||||
</view>
|
||||
|
||||
<!-- 结尾 -->
|
||||
<component-bottom-line :propStatus="data_bottom_line_status"></component-bottom-line>
|
||||
</scroll-view>
|
||||
|
||||
<!-- 公共 -->
|
||||
<component-common ref="common"></component-common>
|
||||
</view>
|
||||
</template>
|
||||
<script>
|
||||
const app = getApp();
|
||||
import componentCommon from '@/components/common/common';
|
||||
import componentNoData from "@/components/no-data/no-data";
|
||||
import componentBottomLine from "@/components/bottom-line/bottom-line";
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
theme_view: app.globalData.get_theme_value_view(),
|
||||
data_list_loding_status: 1,
|
||||
data_bottom_line_status: false,
|
||||
data_is_loading: 0,
|
||||
params: null,
|
||||
load_status: 0,
|
||||
data_list: [],
|
||||
data_base: null,
|
||||
data_total: 0,
|
||||
data_page_total: 0,
|
||||
data_page: 1,
|
||||
nav_status_list: [
|
||||
{
|
||||
name: this.$t('common.all'),
|
||||
value: "-1",
|
||||
},
|
||||
{
|
||||
name: this.$t('search.search.e415ir'),
|
||||
value: "0",
|
||||
},
|
||||
{
|
||||
name: this.$t('search.search.46g3i2'),
|
||||
value: "1",
|
||||
},
|
||||
{
|
||||
name: this.$t('search.search.v60305'),
|
||||
value: "2",
|
||||
},
|
||||
{
|
||||
name: this.$t('index.index.443683'),
|
||||
value: "3",
|
||||
},
|
||||
],
|
||||
nav_status_index: 0,
|
||||
// 自定义分享信息
|
||||
share_info: {},
|
||||
};
|
||||
},
|
||||
|
||||
components: {
|
||||
componentCommon,
|
||||
componentNoData,
|
||||
componentBottomLine,
|
||||
},
|
||||
|
||||
onLoad(params) {
|
||||
// 调用公共事件方法
|
||||
app.globalData.page_event_onload_handle(params);
|
||||
|
||||
// 是否指定状态
|
||||
var nav_status_index = 0;
|
||||
if ((params.status || null) != null) {
|
||||
for (var i in this.nav_status_list) {
|
||||
if (this.nav_status_list[i]["value"] == params.status) {
|
||||
nav_status_index = i;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
this.setData({
|
||||
params: params,
|
||||
nav_status_index: nav_status_index,
|
||||
});
|
||||
this.init();
|
||||
},
|
||||
|
||||
onShow() {
|
||||
// 调用公共事件方法
|
||||
app.globalData.page_event_onshow_handle();
|
||||
|
||||
// 公共onshow事件
|
||||
if ((this.$refs.common || null) != null) {
|
||||
this.$refs.common.on_show();
|
||||
}
|
||||
},
|
||||
|
||||
// 下拉刷新
|
||||
onPullDownRefresh() {
|
||||
this.setData({
|
||||
data_page: 1,
|
||||
});
|
||||
this.get_data_list(1);
|
||||
},
|
||||
|
||||
methods: {
|
||||
init() {
|
||||
// 获取数据
|
||||
this.get_data_list();
|
||||
},
|
||||
|
||||
// 获取数据
|
||||
get_data_list(is_mandatory) {
|
||||
// 分页是否还有数据
|
||||
if ((is_mandatory || 0) == 0) {
|
||||
if (this.data_bottom_line_status == true) {
|
||||
uni.stopPullDownRefresh();
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
// 是否加载中
|
||||
if (this.data_is_loading == 1) {
|
||||
return false;
|
||||
}
|
||||
this.setData({
|
||||
data_is_loading: 1,
|
||||
data_list_loding_status: 1,
|
||||
});
|
||||
|
||||
// 加载loding
|
||||
uni.showLoading({
|
||||
title: this.$t('common.loading_in_text'),
|
||||
});
|
||||
|
||||
// 参数
|
||||
var status = (this.nav_status_list[this.nav_status_index] || null) == null ? -1 : this.nav_status_list[this.nav_status_index]["value"];
|
||||
|
||||
// 获取数据
|
||||
uni.request({
|
||||
url: app.globalData.get_request_url("index", "search", "weixinliveplayer"),
|
||||
method: "POST",
|
||||
data: {
|
||||
page: this.data_page,
|
||||
status: status,
|
||||
is_more: 1,
|
||||
},
|
||||
dataType: "json",
|
||||
success: (res) => {
|
||||
uni.hideLoading();
|
||||
uni.stopPullDownRefresh();
|
||||
if (res.data.code == 0) {
|
||||
if (res.data.data.data.length > 0) {
|
||||
if (this.data_page <= 1) {
|
||||
var temp_data_list = res.data.data.data;
|
||||
} else {
|
||||
var temp_data_list = this.data_list || [];
|
||||
var temp_data = res.data.data.data;
|
||||
for (var i in temp_data) {
|
||||
temp_data_list.push(temp_data[i]);
|
||||
}
|
||||
}
|
||||
this.setData({
|
||||
data_base: res.data.data.base || null,
|
||||
data_list: temp_data_list,
|
||||
data_total: res.data.data.total,
|
||||
data_page_total: res.data.data.page_total,
|
||||
data_list_loding_status: 3,
|
||||
data_page: this.data_page + 1,
|
||||
data_is_loading: 0,
|
||||
});
|
||||
|
||||
// 是否还有数据
|
||||
this.setData({
|
||||
data_bottom_line_status: this.data_page > 1 && this.data_page > this.data_page_total,
|
||||
});
|
||||
|
||||
// 首次设置首次加载状态
|
||||
if (this.load_status == 0) {
|
||||
// 基础自定义分享
|
||||
this.setData({
|
||||
load_status: 1,
|
||||
share_info: {
|
||||
title: this.data_base.seo_title || this.data_base.application_name,
|
||||
desc: this.data_base.seo_desc,
|
||||
path: "/pages/plugins/weixinliveplayer/search/search",
|
||||
query: "status=" + this.nav_status_index,
|
||||
},
|
||||
});
|
||||
|
||||
// 分享菜单处理
|
||||
app.globalData.page_share_handle(this.share_info);
|
||||
}
|
||||
} else {
|
||||
this.setData({
|
||||
data_list_loding_status: 0,
|
||||
data_list: [],
|
||||
data_bottom_line_status: false,
|
||||
data_is_loading: 0,
|
||||
});
|
||||
}
|
||||
} else {
|
||||
this.setData({
|
||||
data_list_loding_status: 0,
|
||||
data_is_loading: 0,
|
||||
});
|
||||
app.globalData.showToast(res.data.msg);
|
||||
}
|
||||
},
|
||||
fail: () => {
|
||||
uni.hideLoading();
|
||||
uni.stopPullDownRefresh();
|
||||
this.setData({
|
||||
data_list_loding_status: 2,
|
||||
data_is_loading: 0,
|
||||
});
|
||||
app.globalData.showToast(this.$t('common.internet_error_tips'));
|
||||
},
|
||||
});
|
||||
},
|
||||
|
||||
// 滚动加载
|
||||
scroll_lower(e) {
|
||||
this.get_data_list();
|
||||
},
|
||||
|
||||
// 导航事件
|
||||
nav_event(e) {
|
||||
this.setData({
|
||||
nav_status_index: e.currentTarget.dataset.index || 0,
|
||||
data_page: 1,
|
||||
data_list: [],
|
||||
data_list_loding_status: 1,
|
||||
data_bottom_line_status: false
|
||||
});
|
||||
this.get_data_list(1);
|
||||
},
|
||||
|
||||
// url事件
|
||||
url_event(e) {
|
||||
app.globalData.url_event(e);
|
||||
}
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<style>
|
||||
@import "./search.css";
|
||||
</style>
|
||||
Reference in New Issue
Block a user