需要添加客服,二维码,扫码功能
This commit is contained in:
@@ -240,4 +240,30 @@ export const deleteUserMoments = id => {
|
||||
url: `/api/service/userMoments/${id}`,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
/** 添加意见反馈 */
|
||||
export const addUserFeedback = data => {
|
||||
return http({
|
||||
url: '/api/service/feedback',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
/** 获取消息通知列表 */
|
||||
export const getUserNoticeList = data => {
|
||||
return http({
|
||||
url: '/api/service/serNotification/list',
|
||||
method: 'get',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
/** 获取消息通知详情 */
|
||||
export const getUserNoticeDetail = id => {
|
||||
return http({
|
||||
url: `/api/service/serNotification/${id}`,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user