25 lines
335 B
JavaScript
25 lines
335 B
JavaScript
|
|
import request from '@/utils/request'
|
|
|
|
// 查询列表
|
|
export function getLandList(data) {
|
|
console.log(data)
|
|
return request({
|
|
url: '/system/land/app/getLandList',
|
|
method: 'get',
|
|
data:data
|
|
})
|
|
}
|
|
|
|
|
|
//查询地块详情
|
|
export function getLandInfo(param) {
|
|
return request({
|
|
url: '/system/land/'+param,
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
|
|
|