16 lines
205 B
JavaScript
16 lines
205 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
|
|
})
|
|
}
|
|
|
|
|
|
|