土地流转(地块信息、进场道路(下载模板、)
This commit is contained in:
@ -61,3 +61,12 @@ export const delEnterRoad = (id: string | number | Array<string | number>) => {
|
||||
method: 'delete'
|
||||
});
|
||||
};
|
||||
|
||||
// 道路信息导入
|
||||
export const importEnterRoad = (projectId: any, data: any) => {
|
||||
return request({
|
||||
url: '/land/enterRoad/upload/' + projectId,
|
||||
method: 'post',
|
||||
data: data
|
||||
});
|
||||
};
|
@ -76,3 +76,12 @@ export const delLandBlock = (id: string | number | Array<string | number>) => {
|
||||
method: 'delete'
|
||||
});
|
||||
};
|
||||
|
||||
// 地块信息导入
|
||||
export const importLandBlock = (projectId:any,data: any) => {
|
||||
return request({
|
||||
url: '/land/landBlock/upload/'+projectId,
|
||||
method: 'post',
|
||||
data: data
|
||||
});
|
||||
};
|
||||
|
Reference in New Issue
Block a user