import request from '@/utils/request' // 查询列表 export function getLandList(data) { return request({ url: '/system/land/app/getLandList', method: 'get', data:data }) } //查询地块详情 export function getLandInfo(param) { return request({ url: '/system/land/'+param, method: 'get' }) } //查询地块编码排序 export function getLandNum() { return request({ url: '/system/land/getLandNum', method: 'get' }) } // 新增地块 export function addLand (data) { return request({ url: '/system/land', method: 'post', data: data }) } // 修改地块 export function updateLand (data) { return request({ url: '/system/land', method: 'put', data: data }) }