| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- import request from '@/utils/request'
- export function recentLive() {
- return request({
- url: '/liveData/liveData/recentLive',
- method: 'get',
- })
- }
- export function dashboardData(liveId) {
- return request({
- url: '/liveData/liveData/dashboardData' + '?liveId=' +liveId,
- method: 'get'
- })
- }
- export function listLiveData(data) {
- return request({
- url: '/liveData/liveData/listLiveData',
- method: 'post',
- data:data,
- })
- }
- export function getLiveDataDetailBySql(liveId) {
- return request({
- url: '/liveData/liveData/getLiveDataDetailBySql?liveId=' + liveId,
- method: 'get'
- })
- }
- export function getLiveUserDetailListBySql(liveId, pageNum, pageSize) {
- return request({
- url: '/liveData/liveData/getLiveUserDetailListBySql?liveId=' + liveId + '&pageNum=' + (pageNum || 1) + '&pageSize=' + (pageSize || 100),
- method: 'get'
- })
- }
- export function getLiveDataDetailByServer(liveId) {
- return request({
- url: '/liveData/liveData/getLiveDataDetailByServer?liveId=' + liveId,
- method: 'get'
- })
- }
- export function getLiveUserDetailListByServer(liveId) {
- return request({
- url: '/liveData/liveData/getLiveUserDetailListByServer?liveId=' + liveId,
- method: 'get'
- })
- }
- // 导出直播间用户详情数据
- export function exportLiveUserDetail(liveId) {
- return request({
- url: '/liveData/liveData/exportLiveUserDetail?liveId=' + liveId,
- method: 'get'
- })
- }
- // 分公司直播数据统计列表
- export function listLiveDataCompany(data) {
- return request({
- url: '/liveData/liveData/listLiveDataCompany',
- method: 'post',
- data: data
- })
- }
- // 导出分公司直播数据统计
- export function exportLiveDataCompany(data) {
- return request({
- url: '/liveData/liveData/exportLiveDataCompany',
- method: 'post',
- data: data
- })
- }
|