系统管理完善

This commit is contained in:
Lxq
2025-12-23 14:02:53 +08:00
parent 2e9ec4b50f
commit f661d432b4
15 changed files with 819 additions and 10 deletions

View File

@@ -0,0 +1,39 @@
import request from '@/utils/request'
export function islandInfoadd(data: any) {
return request({
url: '/islandInfo/add',
method: 'post',
data,
})
}
export function islandInfodel(id: string | number) {
return request({
url: `/islandInfo/del/${id}`,
method: 'delete',
})
}
export function islandInfoupd(data: any) {
return request({
url: '/islandInfo/update',
method: 'put',
data,
})
}
export function islandInfolist(data: any) {
return request({
url: '/islandInfo/listPage',
method: 'get',
params: data,
})
}
export function islandInfobyid(id: string | number) {
return request({
url: `/islandInfo/getById/${id}`,
method: 'get',
})
}