123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528 |
- <template>
- <view class="container">
- <view class="media-card">
- <view class="media-head">
- <view class="media-title">直播</view>
- <view class="media-handle">
- <view class="handle-card" @click="goToSetLive">
- <view class="iconfont iconshezhi"></view>
- <view class="handle-card-text">直播设置</view>
- </view>
- </view>
- </view>
- <view class="media-content">
- <image class="live-card" src="../../static/images/live-card.png" @click="goToLiveDetail"></image>
- </view>
- </view>
- <view class="media-card">
- <view class="media-head">
- <view class="media-title">短视频</view>
- <view class="media-handle">
- <view class="handle-text" style="color: #51A539;" @click="goManage" v-if="!manageType">管理</view>
- <view class="handle-text" style="color: #333333;" @click="manageType = false" v-if="manageType">取消</view>
- <view class="handle-text" style="color: #F95151;" @click="deleteVideo()" v-if="manageType">删除</view>
- <view class="handle-card" v-if="!manageType" @click="addVideo">
- <view class="iconfont iconshangchuan"></view>
- <view class="handle-card-text">上传视频</view>
- </view>
- </view>
- </view>
- <view class="media-content">
- <view class="video-card" v-for="(item, index) in list" :key="index" @click="!manageType&&goToVideo(item)">
- <image class="video-img" :src="item.coverUrl"></image>
- <view class="video-title-box" @click.stop="setVideoStatue(item)">
- <text class="iconfont" :class="item.check ? 'iconqueding' : 'iconfeigouxuan'"
- v-if="manageType"></text>
- <view class="video-title">
- {{item.videoName}}
- </view>
- </view>
- </view>
- <u-divider :color="isOver ? '#909399' : '#51A539'" :border-color="isOver ? '#909399' : '#51A539'" @click="handleLoadMore()">
- <u-loading mode="circle" v-if="loadingData"></u-loading>{{loadingData ? '加载中' : (isOver ? '没有更多了' : '点击加载更多')}}
- </u-divider>
- </view>
- </view>
- <u-top-tips ref="uTips"></u-top-tips>
- <view class="uni-popup-dialog" :hidden="show_qx">
- <view class="uni-dialog-title">
- <text class="uni-dialog-title-text">提示</text>
- </view>
- <view class="uni-dialog-content">
- <text class="uni-dialog-content-text">请在设置中开启摄像头权限和麦克风权限</text>
- </view>
- <view class="uni-dialog-button-group">
- <button class="uni-dialog-button uni-border-left" open-type="openSetting" @click="closeSetting">
- 设置权限
- </button>
- </view>
-
- </view>
- <view class="qx_bg" :hidden="show_qx">
- </view>
- </view>
- </view>
- </template>
- <script>
- const NET = require('@/utils/request')
- const API = require('@/config/api')
- export default {
- data() {
- return {
- show_qx:true,
- liveId: '',
- pageIndex: 1,
- isOver: false,
- list: [],
- manageType: false,
- loadingData: false,
- userData: {},
- }
- },
- onShow() {
- this.userData = uni.getStorageSync("userData")||{}
- this.getBaseData()
- },
- onPullDownRefresh() {
- this.getBaseData('refresh')
- },
- methods: {
- closeSetting:function(){
- this.show_qx=true;
- },
- goManage() {
- if(!this.userData.roleInfos.some(v=>v.menuInfos.some(vv=>vv.label == '短视频'))){
- this.$refs.uTips.show({
- title: '没有授权使用,请联系商户负责人',
- type: 'warning',
- })
- return;
- }
- this.manageType = true
- },
- // 取消选中
- setVideoStatue(item){
- item.check = !item.check
- },
- // 获取全部数据
- getBaseData(refresh) {
- this.pageIndex = 1
- this.list = []
- this.getList()
- NET.request(API.getLiveId, {}, 'GET').then(res => {
- if (refresh == 'refresh') {
- uni.stopPullDownRefresh();
- }
- if (res.data && res.data != 0) {
- this.liveId = res.data
- }
- }).catch(res => {
- this.$refs.uTips.show({
- title: '获取直播ID失败',
- type: 'warning',
- })
- })
- },
- // 直播设置
- goToSetLive() {
- if(!this.userData.roleInfos.some(v=>v.menuInfos.some(vv=>vv.label == '直播信息查改'))){
- this.$refs.uTips.show({
- title: '没有授权使用,请联系商户负责人',
- type: 'warning',
- })
- return;
- }
- uni.navigateTo({
- url: '/pagesMedia/liveOption'
- });
- },
- // 查看直播详情
- goToLiveDetail() {
- // uni.navigateTo({
- // url: '/pagesMedia/liveDetail?liveId=' + 1
- // });
- // return;
- if(!this.userData.roleInfos.some(v=>v.menuInfos.some(vv=>vv.label == '开始直播并可选择商品'))){
- this.$refs.uTips.show({
- title: '没有授权使用,请联系商户负责人',
- type: 'warning',
- })
- return;
- }
- if (this.liveId) {
- var that=this;
- if(uni.getStorageSync("firstTimeLive")==""){
- uni.setStorage({
- key: 'firstTimeLive',
- data: 1
- })
- uni.navigateTo({
- url: '/pagesMedia/liveDetail?liveId=' + that.liveId
- });
- }else{
- // wx.getSetting({
- // success(res) {
- // if (!res.authSetting['scope.camera']){
- // that.show_qx=false;
- // }else if (!res.authSetting['scope.record']){
- // that.show_qx=false;
- // }else{
- uni.navigateTo({
- url: '/pagesMedia/liveDetail?liveId=' + that.liveId
- });
- // }
- // }
- // })
- }
- } else {
- this.$refs.uTips.show({
- title: '当前无可进行的直播',
- type: 'warning',
- })
- }
- },
- // 新增短视频
- addVideo() {
- if(!this.userData.roleInfos.some(v=>v.menuInfos.some(vv=>vv.label == '短视频'))){
- this.$refs.uTips.show({
- title: '没有授权使用,请联系商户负责人',
- type: 'warning',
- })
- return;
- }
- uni.navigateTo({
- url: '/pagesMedia/videoForm?type=add'
- });
- },
- // 懒加载
- handleLoadMore() {
- if (!this.isOver) {
- this.pageIndex++
- this.getList()
- }
- },
- // 获取列表数据
- getList() {
- this.loadingData = true
- NET.request(API.getVideoList + this.pageIndex + '/10', {}, 'GET').then(res => {
- this.loadingData = false
- this.isOver = res.data.list.length != 10
- res.data.list.forEach(site => {
- site.check = false
- })
- this.list = this.list.concat(res.data.list)
- }).catch(error => {
- this.loadingData = false
- this.$refs.uTips.show({
- title: error.data.msg,
- type: 'warning',
- })
- })
- },
- // 查看短视频详情
- goToVideo(item) {
- if(!this.userData.roleInfos.some(v=>v.menuInfos.some(vv=>vv.label == '短视频'))){
- this.$refs.uTips.show({
- title: '没有授权使用,请联系商户负责人',
- type: 'warning',
- })
- return;
- }
- uni.setStorage({
- key: 'videoUrl',
- data: item.mediaUrl
- })
- // uni.navigateTo({
- // url: '/pagesMedia/videoDetail?videoId=' + item.videoId
- // });
- uni.navigateTo({
- url: '/pagesMedia/videoForm?type=edit&videoId=' + item.videoId
- });
- },
- // 删除短视频
- deleteVideo() {
- let postData = ''
- this.list.filter(site => site.check).forEach((site, index) => {
- postData += (index ? '&' : '?') + 'videoIds=' + site.videoId
- })
- NET.request(API.deleteVideo + '/' + postData, {}, 'GET').then(res => {
- this.$refs.uTips.show({
- title: '删除成功',
- type: 'success',
- })
- this.manageType = false
- this.pageIndex = 1
- this.list = []
- this.getList()
- }).catch(error => {
- this.$refs.uTips.show({
- title: error.data.msg,
- type: 'warning',
- })
- })
- },
- }
- }
- </script>
- <style lang="less" scoped>
- page {
- width: 100%;
- height: 100%;
- }
- .container {
- width: 100%;
- height: 100%;
- float: left;
- background-color: #f7f7f7;
- overflow-y: auto;
- .media-card {
- width: 100%;
- float: left;
- background: #FFFFFF;
- border-radius: 0 0 10px 10px;
- margin-bottom: 10px;
- .media-head {
- width: 100%;
- height: 45px;
- float: left;
- box-sizing: border-box;
- padding: 6px 0 6px 15px;
- border-bottom: 1px solid #EDEDED;
- .media-title {
- height: 16px;
- float: left;
- margin: 8px 0;
- padding-left: 6px;
- border-left: 2px solid #51A539;
- font-size: 15px;
- font-family: PingFang SC;
- color: #333333;
- line-height: 16px;
- }
- .media-handle {
- height: 32px;
- float: right;
- .handle-text {
- height: 32px;
- float: left;
- padding: 0 10px;
- margin: 0 5px;
- font-size: 15px;
- font-family: PingFang SC;
- line-height: 32px;
- }
- .handle-card {
- width: 96px;
- height: 32px;
- float: left;
- background: #51A539;
- border-radius: 16px 0px 0px 16px;
- font-family: PingFang SC;
- color: #FFFFFF;
- display: flex;
- align-items: center;
- justify-content: center;
- .iconfont {
- font-size: 22px;
- }
- .handle-card-text {
- float: left;
- line-height: 32px;
- font-size: 12px;
- }
- }
- }
- }
- .media-content {
- width: 100%;
- float: left;
- padding: 10px 15px;
- box-sizing: border-box;
- .live-card {
- width: 100%;
- height: 80px;
- float: left;
- }
- .video-card:nth-child(odd) {
- margin: 0 5px 10px 0;
- }
- .video-card:nth-child(even) {
- margin: 0 0 10px 5px;
- }
- .video-card {
- width: calc(50% - 5px);
- height: 206px;
- float: left;
- background: #FFFFFF;
- box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1);
- border-radius: 5px;
- overflow: hidden;
- .video-img {
- width: 100%;
- height: 170px;
- object-fit: cover;
- float: left;
- }
- .video-title-box {
- width: 100%;
- height: 36px;
- float: left;
- font-family: PingFang SC;
- line-height: 36px;
- display: flex;
- justify-content: center;
- .iconfont {
- color: #51A539;
- font-size: 36px;
- line-height: 36px;
- display: flex;
- align-items: center;
- }
- .video-title {
- max-width: calc(100% - 36px);
- height: 36px;
- line-height: 36px;
- font-size: 15px;
- color: #333333;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- }
- }
- }
- }
- }
- .uni-popup-dialog {
- width: 80vw;
- border-radius: 15px;
- background-color: #fff;
- position: fixed;
- margin-left: 10vw;
- top: 34vh;
- z-index: 11;
- }
-
- .uni-dialog-title {
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- flex-direction: row;
- justify-content: center;
- padding-top: 15px;
- padding-bottom: 5px;
- }
-
- .uni-dialog-title-text {
- font-size: 16px;
- font-weight: 500;
- }
-
- .uni-dialog-content {
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- flex-direction: row;
- justify-content: center;
- align-items: center;
- padding: 5px 15px 15px 15px;
- text-align: center;
- }
-
- .uni-dialog-content-text {
- font-size: 14px;
- color: #6e6e6e;
- }
-
- .uni-dialog-button-group {
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- flex-direction: row;
- border-top-color: #f5f5f5;
- border-top-style: solid;
- border-top-width: 1px;
- }
-
- .uni-dialog-button {
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- background: rgba(0, 0, 0, 0);
- border: none;
- flex: 1;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- height: 45px;
- }
-
- .uni-border-left {
- border-left-color: #f0f0f0;
- border-left-style: solid;
- border-left-width: 0px;
- }
-
- .uni-dialog-button-text {
- font-size: 14px;
- }
-
- .uni-button-color {
- color: #007aff;
- }
-
- .uni-dialog-input {
- flex: 1;
- font-size: 14px;
- }
-
- .uni-popup__success {
- color: #4cd964;
- }
-
- .uni-popup__warn {
- color: #f0ad4e;
- }
-
- .uni-popup__error {
- color: #dd524d;
- }
-
- .uni-popup__info {
- color: #909399;
- }
- .qx_bg{
- width: 100vw;
- height: 100vh;
- background: rgba(0, 0, 0, 0.25);
- position: fixed;
- top: 0px;
- left: 0px;
- z-index: 10;
- }
- </style>
|