第一次提交

This commit is contained in:
gxwebsoft
2023-08-04 13:14:48 +08:00
commit 1b923e5cff
1030 changed files with 128016 additions and 0 deletions

20
api/user-feedback.js Normal file
View File

@@ -0,0 +1,20 @@
import http from './index.js';
// 分页查询意见反馈
export const pageFeedback = (params) => http.get('/shop/user-feedback/page', {params})
// 查询全部意见反馈
export const listFeedback = (params) => http.get('/shop/user-feedback', {params})
// 修改意见反馈
export const addFeedback = (data) => http.post('/shop/user-feedback', data)
// 删除意见反馈
export const removeFeedback = (id) => http.delete('/shop/user-feedback/' + id)
export default {
pageFeedback,
listFeedback,
addFeedback,
removeFeedback
}