Files
intc-vue-h5/src/api/system/feedback.js
2026-07-14 08:05:24 +08:00

22 lines
418 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import request from '@/utils/request'
import upload from '@/utils/upload'
// 提交意见反馈H5/小程序端)
export function submitFeedback(data) {
return request({
url: '/system/feedback/submit',
method: 'post',
data
})
}
// 上传反馈截图
export function uploadFeedbackImage(filePath) {
return upload({
url: '/file/upload',
filePath,
name: 'file',
formData: {}
})
}