修改BUG

This commit is contained in:
cbb
2026-01-15 17:22:20 +08:00
parent 220b12e945
commit cfdc2ea7b0
24 changed files with 569 additions and 83 deletions

View File

@@ -138,3 +138,12 @@ export const getTencentUserSig = () => {
})
}
/** 根据ip判断是否黑名单 */
export const getIpBlack = (loading = true) => {
return http({
url: '/api/free/black/isBlack',
method: 'get',
loading
})
}

View File

@@ -267,3 +267,11 @@ export const getUserNoticeDetail = id => {
method: 'get'
})
}
/** 客服列表 */
export const getUserServiceList = () => {
return http({
url: '/api/service/customerStaff/list',
method: 'get'
})
}

View File

@@ -139,3 +139,20 @@ export const getLiveActivityRecord = id => {
method: 'get'
})
}
/** 直播记录列表 */
export const getLiveRecordList = data => {
return http({
url: `/api/service/imLiveRoom/list`,
method: 'get',
data
})
}
/** 直播记录详情 */
export const getLiveRecordDetail = id => {
return http({
url: `/api/service/imLiveRoom/${id}`,
method: 'get'
})
}