bonus-Certificate-app/api/mine/index.js

71 lines
1.2 KiB
JavaScript
Raw Normal View History

2025-10-11 09:18:19 +08:00
import request from '@/utils/request';
2025-12-09 18:27:43 +08:00
2025-10-11 09:18:19 +08:00
/**
* @data 用户获取通知消息列表
*/
export function queryUserInformApi(data) {
return request({
url: '/system/notice/list',
method: 'get',
params:data
})
}
2025-12-09 18:27:43 +08:00
2025-10-11 09:18:19 +08:00
/**
* @data 修改通知状态
*/
export function updateNoticeStatusApi(data) {
return request({
url: '/smart-canteen/api/v2/applet/inform/updateStatus',
method: 'post',
data
})
}
/**
* @data 查询人脸照片地址和状态
*/
export function queryFacePhotoApi(data) {
return request({
url: '/smart-canteen/api/v4/app/custInfo/queryFacePhoto',
method: 'post',
data
})
}
/**
* @data 小程序保存人脸图片
*/
export function uploadPhotoGenCodeForAppApi(data) {
return request({
url: '/smart-canteen/userFace/uploadUserFace',
method: 'post',
data
})
}
2025-12-09 18:27:43 +08:00
//重新绑定手机号
export function rebindMobileApi(data) {
return request({
url: '/smart-canteen/custInfo/rebind/mobile',
method: 'post',
data
})
}
// 投诉建议
2025-10-11 09:18:19 +08:00
//投诉建议(提交)
export function postCanteenPlaintApi(data) {
return request({
2025-12-09 18:27:43 +08:00
url: '/certificate/certificate_feedback/certificateInfo/addFeedBack',
2025-10-11 09:18:19 +08:00
method: 'post',
data
})
}
2025-12-09 18:27:43 +08:00
2025-10-11 09:18:19 +08:00