🔥 发票:移除相关功能,暂时不考虑

This commit is contained in:
YunaiV
2023-12-16 21:00:23 +08:00
parent cfb514e276
commit 1add3af785
9 changed files with 9 additions and 872 deletions
-36
View File
@@ -247,42 +247,6 @@ export default {
method: 'DELETE',
}),
},
invoice: {
list: () =>
request({
url: 'user/invoice',
method: 'GET',
custom: {},
}),
create: (data) =>
request({
url: 'user/invoice',
method: 'POST',
data,
custom: {
showSuccess: true,
},
}),
update: (id, data) =>
request({
url: 'user/invoice/' + id,
method: 'PUT',
data,
custom: {
showSuccess: true,
},
}),
detail: (id) =>
request({
url: 'user/invoice/' + id,
method: 'GET',
}),
delete: (id) =>
request({
url: 'user/invoice/' + id,
method: 'DELETE',
}),
},
favorite: {
list: (params) =>
request2({