修改测试bug

This commit is contained in:
GGJ
2024-12-23 11:30:28 +08:00
parent b10854971d
commit 90efcc4ad2
20 changed files with 209 additions and 54 deletions

View File

@@ -29,3 +29,17 @@ export function getTheme() {
method: 'get'
})
}
export function addVersion(data:any) {
return createAxios({
url: '/cs-system-boot/appVersion/add',
method: 'post',
data
})
}
export function getLastData(data:any) {
return createAxios({
url: '/cs-system-boot/appVersion/getLastData',
method: 'post',
params:data
})
}