This commit is contained in:
2025-04-21 11:47:50 +08:00
parent e89510d7c0
commit 03190e0662
3 changed files with 50 additions and 65 deletions

View File

@@ -122,6 +122,31 @@ const admin = {
data: data
});
},
getStatusAttr: async () => {
return request({
url: '/admin/exchangelog/getStatusAttr',
method: Method.POST
});
},
getPattenAttr: async () => {
return request({
url: '/admin/exchangelog/getPattenAttr',
method: Method.POST
});
},
getTypeAttr: async () => {
return request({
url: '/admin/exchangelog/getTypeAttr',
method: Method.POST
});
},
getExchangeLog: async (data) => {
return request({
url: '/admin/exchangelog/getExchangeLog',
method: Method.POST,
data: data
});
},
}
export default admin;