This commit is contained in:
Iruka 2025-02-07 11:05:54 +08:00
parent 0da7fb60b3
commit 2b95dd8800

View File

@ -67,4 +67,13 @@ export function getLandConfig(id) {
url: `/system/land/getLandConfig/${id}`, url: `/system/land/getLandConfig/${id}`,
method: 'get' method: 'get'
}) })
}
//获取地块配置
export function getLandUser(query) {
return request({
url: `/system/landuser/list`,
method: 'get',
params: query
})
} }