需要添加客服,二维码,扫码功能

This commit is contained in:
bobobobo
2026-01-14 23:38:29 +08:00
parent db1b797b68
commit 220b12e945
21 changed files with 721 additions and 182 deletions

View File

@@ -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'
})
}