注释搜索:主播发送消息

观看列表只能主播跟管理员查看
This commit is contained in:
cbb
2026-02-10 17:49:33 +08:00
parent 2cc252dce0
commit 20ccbf1f14
19 changed files with 190 additions and 67 deletions

View File

@@ -53,6 +53,15 @@ export const addOrder = data => {
})
}
/** 加入订单 */
export const addOrderItem = data => {
return http({
url: '/api/service/order/join',
method: 'post',
data
})
}
/** 创建普通订单接口 */
export const createOrder = data => {
return http({

View File

@@ -164,10 +164,11 @@ export const getUserWithdrawConfig = id => {
}
/** 获取用户积分详细信息 */
export const getUserIntegral = () => {
export const getUserIntegral = (loading = true) => {
return http({
url: `/api/system/userPoints/details`,
method: 'get'
method: 'get',
loading
})
}
@@ -308,3 +309,12 @@ export const getUserBuyRecordDetail = id => {
method: 'get'
})
}
/** 修改订单 */
export const updateUserBuyRecord = data => {
return http({
url: `/api/service/order`,
method: 'put',
data
})
}