2024-11-20 18:20:46 +08:00
|
|
|
|
|
|
|
import request from '@/utils/request'
|
|
|
|
|
|
|
|
// 查询列表
|
|
|
|
export function getLandList(data) {
|
|
|
|
console.log(data)
|
|
|
|
return request({
|
|
|
|
url: '/system/land/app/getLandList',
|
|
|
|
method: 'get',
|
|
|
|
data:data
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-11-20 19:09:37 +08:00
|
|
|
//查询地块详情
|
|
|
|
export function getLandInfo(param) {
|
|
|
|
return request({
|
|
|
|
url: '/system/land/'+param,
|
|
|
|
method: 'get'
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-11-20 18:20:46 +08:00
|
|
|
|