You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
JiangNingUmale-h5/src/api/gisData.js

19 lines
429 B

/*
* @Author: 付刚
* @Date: 2020-12-15 09:41:19
* @LastEditors: 付刚
* @LastEditTime: 2021-07-22 11:37:15
* @FilePath: \LujiachangfangPhone\src\api\gisData.js
*/
import { request } from '@/api/gisRequest.js'
// 获取宗地数据
export function getLand(params) {
return request.get('land/', { params: params })
}
// 获取指定id宗地数据
export function getLandById(id) {
return request.get('land/' + id)
}