Blame view

apis/modules/ly.js 2.78 KB
1f3f2378   起风了   我的第一次
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  import request from '../../service/request.js'

  import utils from '../../service/utils.js'

  export default {

  	// 申报巡检

  	addpatrol(data){

  		return request.post('/areBoundary/patrol',data)

  	},

  	// 获取巡检

  	getpatrol(data){

  		return request.get('/areBoundary/patrol/list',data)

  	},

  	// 政策文件

  	getpolicyDocument(data){

  		return request.get('/arePlaceName/policyDocument/list',data)

  	},

b9de76dc   李宇   1
16
17
18
19
  	// 政策文件详情

  	getpolicyDocumentone(data){

  		return request.get('/arePlaceName/policyDocument/'+data)

  	},

1f3f2378   起风了   我的第一次
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
  	// 行政区

  	getplie(data){

  		return request.get('/areBoundary/plie/list',data)

  	},

  	// 申报小区门牌

  	adddoorplate(data){

  		return request.post('/arePlaceName/doorplate',data)

  	},

  	// 获取小区门牌

  	getdoorplate(data){

  		return request.get('/arePlaceName/doorplate/list',data)

  	},

  	// 申报地名

  	addapplication(data){

  		return request.post('/areBoundary/application',data)

  	},

  	// 获取地名

  	getapplication(data){

  		return request.get('/areBoundary/application/list',data)

  	},

  	// 申报高层建筑

  	addbuild(data){

  		return request.post('/arePlaceName/build',data)

  	},

  	// 获取高层建筑

  	getbuild(data){

  		return request.get('/arePlaceName/build/list',data)

  	},

  	// 申报居民小区

  	addCommunity(data){

  		return request.post('/arePlaceName/community',data)

  	},

  	// 获取申报居民小区

  	getCommunity(data){

  		return request.get('/arePlaceName/community/list',data)

  	},

  	// 申报街路巷

  	addstreet(data){

  		return request.post('/arePlaceName/street',data)

  	},

  	// 获取街路巷

  	getstreet(data){

  		return request.get('/arePlaceName/street/list',data)

  	},

  	// 获取单位列表

  	getunitlist(pages){

  		return request.get(`/areaPlaceName/unitCopy/list`,pages);

  	},

  

  

  	// 添加门牌号上报

  	addroadSign(data){

  		return request.post('/areBoundary/sign',data)

  	},

  	// 获取门牌号上报列表

  	getroadSign(pages){

  		return request.get(`/areBoundary/sign/list`,pages);

  	},

  	// // 获取界桩列表

  	// getpile(pages){

  	// 	return request.get(`/areaBoundary/plieCopy/list`,pages);

  	// },

  	// 我的任务列表查询

  	getwdrwlist(pages){

  		return request.get('/areBoundary/task/list',pages);

  	},

  	// 详情我的任务列表查询

  	getwdrwlistdetail(pages){

  		return request.get('/areBoundary/task/'+pages);

  	},

  	// 修改我的任务状态

  	removewdrwlistdetail(pages){

  		return request.put('/areBoundary/task',pages);

  	},

  	// 获取地名列表

  	getaddressApplication(pages){

  		return request.get(`/boundary/addressApplication/list`,pages);

  	},

  	// 添加地名

  	addressApplication(data){

  		return request.post('/boundary/addressApplication',data)

  	},

  	// 获取界桩巡检

  	getUserPliePatrolList(pages){

  		return request.get(`/areaBoundary/patrol/getUserPliePatrolList`,pages);

  	},

  }