qlfQlTdsyq.js
1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
* @Description :土地所有权的api文件
* @Autor : miaofang
* @LastEditTime : 2023-05-17 10:46:41
*/
import request from "@/utils/request";
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class qlfQlTdsyq {
/**
* @description: 土地所有权
* @param {*} data
* @author: renchao
*/
async getQlfQlTdsyqList (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QlfQlTdsyq/getDataPage",
method: "post",
data,
});
}
//土地所有权
/**
* @description: 土地所有权
* @param {*} bsmSjsb
* @author: renchao
*/
async getQlfQlTdsyqById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/QlfQlTdsyq/detail',
method: 'get',
params: {
bsmSjsb: bsmSjsb
}
})
}
/**
* @description: 修改土地所有权
* @param {*} data
* @author: renchao
*/
async updateQlfQlTdsyq (data) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/QlfQlTdsyq/edit',
method: 'post',
data
})
}
}
export default new qlfQlTdsyq();