This commit is contained in:
2025-10-29 12:13:47 +08:00
parent 86cf54b9de
commit 51091d097e
6 changed files with 54 additions and 54 deletions

View File

@@ -124,7 +124,7 @@ const handleSubmit = async () => {
const token = localStorage.getItem('token') || '';
// 发送 POST 请求到后端接口
const response = await axios.post('https://mldash.nycjy.cn/api/v1/submit_feedback', {project:'mldash',type: formData.type, content: formData.content}, {
const response = await axios.post('https://feedback.api.nycjy.cn/api/v1/feedback/submit_feedback', {project:'mldash',type: formData.type, content: formData.content}, {
headers: {
'Authorization': `Bearer ${token}`
}