jsy-app/api/system/land.js

16 lines
205 B
JavaScript
Raw Normal View History

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
})
}