style:样式重构

This commit is contained in:
2025-10-18 09:24:35 +08:00
parent 729eba5a3b
commit 179be8f8b0
30 changed files with 880 additions and 423 deletions
+12
View File
@@ -0,0 +1,12 @@
import request from '../http'
// 投诉反馈
export const addUserFeedback = (data) => {
console.log(data);
return request({
url: '/app/feedback/add',
method: 'post',
data,
})
}