123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497 |
- import {
- ApiModel
- } from "../../utils/api";
- const _Http = new ApiModel;
- let rep = null;
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- dataTypes: 0, //0-全部数据 1-单独数据
- tabsList: ["私域直播", "展会直播", "合作商直播"], //tabs列表
- buttonTabs: ["当前直播", "历史直播"], //按钮tabs
- tabsIndex: 0, //tabs下标
- accountStatus: -1, //直播账号状态 1-账号正常 2-账号审核中 3-没有账号
- //liveDataCount: {}, 实时数据统计
- liveDataCountForSession: {}, //单场次数据统计
- liveSessionList: [], //直播场次列表
- liveUserList: [], //直播用户观看记录
- crLiveUserList: [], //当前直播用户观看记录
- pageNumber: 1, //当前页码
- pageTotal: 1, //列表总页数
- userPageNumber: 1, //用户当前页码
- userPageTotal: 1, //用户总列表
- isSy: true, //是否为私域直播
- myShowModel: false, //自定义model
- myShowModel2: false, // 真正申请中提示
- listRowIndex: -1, //列表选中项
- CheckTheType: '当前直播', //查看类型
- onlineNumber: 0, //实时观看人数
- oldDialogue: [], //老直播聊天数据
- newDialogue: [], //新直播聊天数据
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- //获取直播账号
- this.getLiveInfo()
- },
- /* 按钮tab回调 */
- tabsSelectedIitem({
- detail
- }) {
- if (detail == this.data.CheckTheType) return;
- if (detail == '历史直播') {
- if (this.data.liveSessionList.length == 0) return wx.showToast({
- title: '当前没有开播记录',
- icon: "none"
- })
- }
- this.setData({
- CheckTheType: detail
- })
- },
- /* 实时 */
- realTime() {
- /* 获取当前用户列表 */
- this.getRealTimeViewerList();
- //获取聊天
- this.getRealTimeMessageList();
- //实时观看人数
- this.getRealTimeViewers();
- rep = setInterval(() => {
- /* 获取当前用户列表 */
- this.getRealTimeViewerList();
- //获取聊天
- this.getRealTimeMessageList();
- //实时观看人数
- this.getRealTimeViewers();
- }, 3000)
- },
- //实时观看人数
- getRealTimeViewers() {
- _Http.basic({
- "accesstoken": wx.getStorageSync('userData').token,
- "classname": "customer.live.live",
- "method": "getRealTimeViewers",
- "content": {
- "channelid": this.data.accountMsg.channelid
- }
- }, false).then(res => {
- if (res.msg != '成功') return;
- this.setData({
- onlineNumber: res.data.count
- })
- })
- },
- //获取聊天
- getRealTimeMessageList() {
- _Http.basic({
- "accesstoken": wx.getStorageSync('userData').token,
- "classname": "customer.live.live",
- "method": "getRealTimeMessageList",
- "content": {
- "pageNumber": 1,
- "pageSize": 999,
- "channelid": this.data.accountMsg.channelid
- }
- }, false).then(res => {
- if (res.msg != '成功') return wx.showToast({
- title: res.data,
- icon: "none"
- })
- for (let i = 0; i < res.data.length; i++) {
- let data = res.data[i].datetime.split(" ");
- res.data[i].datetime = data[1]
- }
- this.setData({
- oldDialogue: res.data
- })
- /* if (this.data.oldDialogue.length == 0) {
-
- } else {
- let oldDialogue = this.data.oldDialogue,
- newDialogue = res.data;
- if (!Object.is(JSON.stringify(oldDialogue), JSON.stringify(newDialogue))) {
- let data = JSON.stringify(oldDialogue)
- for (let i = 0; i < newDialogue.length; i++) {
- if (!data.includes(newDialogue[i].id)) {
- let data = newDialogue[i].datetime.split(" ");
- newDialogue[i].datetime = data[1]
- oldDialogue.unshift(newDialogue[i]);
- }
- }
- this.setData({
- oldDialogue
- })
- }
- } */
- })
- },
- /* 获取当前用户列表 */
- getRealTimeViewerList() {
- _Http.basic({
- "accesstoken": wx.getStorageSync('userData').token,
- "classname": "customer.live.live",
- "method": "getRealTimeViewerList",
- "content": {
- "pageNumber": this.data.pageNumber,
- "pageSize": 20,
- "channelid": this.data.accountMsg.channelid
- }
- }, false).then(res => {
- if (res.msg != '成功') {
- if (this.data.liveUserList.length <= 0) return wx.showToast({
- title: res.data,
- icon: "none"
- });
- return;
- }
- this.setData({
- crLiveUserList: res.data,
- pageTotal: res.pageTotal
- })
- })
- },
- /* 自定义model回调 */
- showModelCallBack({
- detail
- }) {
- if (detail == 'true') this.copyTheAddress(this.data.accountMsg.fliveurl_web);
- },
- /* 显示自定义model */
- showMyModel() {
- this.setData({
- myShowModel: true
- })
- },
- /* 申请直播账号 */
- applyForLive() {
- _Http.basic({
- "accesstoken": wx.getStorageSync('userData').token,
- "classname": "customer.live.live",
- "method": "applySYLive",
- "content": {}
- }).then(res => {
- if (res.code == 1) {
- wx.showToast({
- title: res.msg,
- icon: "none"
- })
- this.setData({
- accountStatus: 2
- })
- } else {
- if (res.data == '私域直播已申请') return this.setData({
- myShowModel2: true
- })
- }
- })
- },
- /* 复制地址 */
- copyTheAddress(e) {
- const url = (typeof e == "string" || typeof e == String) ? e : e.target.dataset.url;
- wx.setClipboardData({
- data: url,
- success(res) {
- wx.getClipboardData({
- success(res) {
- console.log('内容已复制') // data
- }
- })
- }
- })
- },
- /* 获取直播账号详情 */
- getLiveInfo() {
- const method = (this.data.tabsIndex == 0) ? 'getSYLiveInfo' : 'getLiveInfo';
- _Http.basic({
- "accesstoken": wx.getStorageSync('userData').token,
- "classname": "customer.live.live",
- "method": method,
- "content": {}
- }).then(res => {
- const isSy = (method == "getSYLiveInfo") ? true : false;
- console.log("直播账号详情", res)
- this.setData({
- accountStatus: res.code,
- accountMsg: res.data[0],
- isSy
- })
- //获取授权地址
- if (res.data[0].fisneedauth == 1) {
- _Http.basic({
- "accesstoken": wx.getStorageSync('userData').token,
- "classname": "enterprise.live.live",
- "method": "liveauthorization",
- "content": {
- "tliveid": res.data[0].tliveid
- }
- }).then(res => {
- this.setData({
- "accountMsg.fliveshowurl": res.msg
- })
- })
- }
- //获取实时数据
- this.realTime()
- //直播场次列表查询
- if (res.code == 1) this.getLiveSessionList();
- })
- },
- /* 直播场次列表查询 */
- getLiveSessionList() {
- const method = (this.data.tabsIndex == 0) ? "getSYLiveSessionList" : "getLiveSessionList"
- _Http.basic({
- "accesstoken": wx.getStorageSync('userData').token,
- "classname": "customer.live.live",
- "method": method,
- "content": {
- "getdatafromdbanyway": true,
- "pageNumber": this.data.pageNumber,
- "pageSize": 10,
- "channelid": this.data.accountMsg.channelid
- }
- }).then(res => {
- if (res.msg != '成功') return wx.showToast({
- title: res.data,
- icon: "none"
- });
- let sessionList = [];
- for (let i = 0; i < res.data.length; i++) {
- let checkdate = res.data[i].starttime,
- time = checkdate.slice(0, checkdate.lastIndexOf('.')),
- t = time.split(' ');
- res.data[i].starttime = t[0];
- sessionList.push(t[0])
- };
- this.setData({
- liveSessionList: res.data,
- pageTotal: res.pageTotal,
- sessionList
- });
- if (res.data.length > 0) this.viewDetails(0);
- })
- },
- /* 查看场次详情 */
- selectorChange(e) {
- this.viewDetails(e.detail.value);
- },
- viewDetails(index) {
- const sessionid = this.data.liveSessionList[index].sessionid;
- this.setData({
- showStartTime: this.data.liveSessionList[index].starttime,
- sessionid
- })
- /* 场次详情统计 */
- _Http.basic({
- "accesstoken": wx.getStorageSync('userData').token,
- "classname": "customer.live.live",
- "method": "getSYLiveDataCountForSession",
- "content": {
- "sessionid": sessionid
- }
- }).then(res => {
- if (res.msg != '成功') wx.showToast({
- title: '数据统计获取失败,请稍后再试',
- icon: "none"
- })
- this.setData({
- liveDataCountForSession: res.data
- })
- });
- this.LiveUserList();
- this.setData({
- dataTypes: 1
- })
- },
- /* 观看用户列表 */
- LiveUserList() {
- /* 用户观看列表 */
- const method = (this.data.tabsIndex == 0) ? "getSYLiveUserList" : "getLiveUserList";
- _Http.basic({
- "accesstoken": wx.getStorageSync('userData').token,
- "classname": "customer.live.live",
- "method": method,
- "content": {
- "getdatafromdbanyway": true,
- "pageNumber": this.data.userPageNumber,
- "pageSize": 10,
- "sessionid": this.data.sessionid,
- "channelid": this.data.accountMsg.channelid
- }
- }).then(res => {
- if (res.msg != '成功') wx.showToast({
- title: '观看列表获取失败,请稍后再试',
- icon: "none"
- })
- for (let i = 0; i < res.data.length; i++) {
- const index = res.data[i].datetime.lastIndexOf('.');
- res.data[i].datetime = res.data[i].datetime.slice(0, index)
- }
- this.setData({
- userPageTotal: res.pageTotal,
- liveUserList: res.data
- })
- });
- },
- /* 下一页 */
- buttonRightClick() {
- if (this.data.CheckTheType == '当前直播') {
- if (this.data.pageNumber == this.data.pageTotal) return wx.showToast({
- title: '已经到达最后一页',
- icon: "none"
- });
- this.setData({
- pageNumber: this.data.pageNumber + 1
- })
- this.getRealTimeViewerList()
- } else {
- if (this.data.userPageNumber == this.data.userPageTotal) return wx.showToast({
- title: '已经到达最后一页',
- icon: "none"
- });
- this.setData({
- userPageNumber: this.data.userPageNumber + 1
- })
- this.LiveUserList()
- }
- },
- /* 上一页 */
- buttonLifeClick() {
- if (this.data.CheckTheType == '当前直播') {
- if (this.data.pageNumber == 1) return wx.showToast({
- title: '已经在第一页了',
- icon: "none"
- });
- this.setData({
- pageNumber: this.data.pageNumber - 1
- })
- this.getRealTimeViewerList()
- } else {
- if (this.data.userPageNumber == 1) return wx.showToast({
- title: '已经在第一页了',
- icon: "none"
- });
- this.setData({
- userPageNumber: this.data.userPageNumber - 1
- })
- this.LiveUserList()
- }
- },
- /* 选中行 */
- listRowAvtion(e) {
- this.setData({
- listRowIndex: e.currentTarget.dataset.index
- })
- },
- /* tabs回调 */
- setIndex({
- detail
- }) {
- if (this.data.tabsIndex == detail) return;
- this.setData({
- tabsIndex: detail,
- pageNumber: 1,
- pageTotal: 1,
- userPageNumber: 1,
- userPageTotal: 1
- });
- if (detail != 2) this.getLiveInfo();
- if (detail == 2) this.getCooperationAgentsLiveList();
- },
- /* 获取合作商直播列表 */
- getCooperationAgentsLiveList() {
- _Http.basic({
- "accesstoken": wx.getStorageSync('userData').token,
- "classname": "customer.live.live",
- "method": "getCooperationAgentsLiveList",
- "content": {}
- }).then(res => {
- this.setData({
- partnerLiveList: res.data
- })
- })
- },
- /* 查看合作商直播 */
- toLive(e) {
- const {
- index
- } = e.currentTarget.dataset,
- data = this.data.partnerLiveList[index];
- console.log(data.fisneedauth)
- if (data.fisneedauth == 1) {
- _Http.basic({
- "accesstoken": wx.getStorageSync('userData').token,
- "classname": "enterprise.live.live",
- "method": "liveauthorization",
- "content": {
- "tliveid": data.tliveid
- }
- }).then(res => {
- console.log(res)
- if (res.data != '成功') return wx.showToast({
- title: '网络错误,请稍后再试',
- })
- let str = res.msg;
- const url = str.slice(0, 8) + '04de51d4c1.' + str.slice(8);
- wx.navigateTo({
- url: '/pages/webView/index?url=' + encodeURIComponent(url),
- })
- })
- } else {
- let str = data.fliveshowurl;
- const url = str.slice(0, 8) + '04de51d4c1.' + str.slice(8);
- wx.navigateTo({
- url: '/pages/webView/index?url=' + encodeURIComponent(url)
- })
- }
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady: function () {},
- /**
- * 生命周期函数--监听页面显示
- */
- onShow: function () {},
- /**
- * 生命周期函数--监听页面隐藏
- */
- onHide: function () {},
- /**
- * 生命周期函数--监听页面卸载
- */
- onUnload: function () {
- clearInterval(rep)
- },
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function () {},
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom: function () {},
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage: function () {
- let str = this.data.accountMsg.fliveshowurl;
- const url = str.slice(0, 8) + '04de51d4c1.' + str.slice(8)
- return {
- title: this.data.accountMsg.channelname,
- path: "/pages/webView/index?url=" + url,
- imageUrl: this.data.accountMsg.channelcoverimageurl
- }
- }
- })
|