db68acd3 by jiaozeping@pashanhoo.com

/service-bdcdj/

1 parent 7bc3069d
...@@ -44,7 +44,7 @@ export function BatchInit(data) { ...@@ -44,7 +44,7 @@ export function BatchInit(data) {
44 // 数据保存 44 // 数据保存
45 export function saveData (data) { 45 export function saveData (data) {
46 return request({ 46 return request({
47 url: '/service-bdcdj/ywbl/cfdj/saveData', 47 url: '/service-bdcdj/rest/ywbl/cfdj/saveData',
48 method: 'post', 48 method: 'post',
49 data 49 data
50 }) 50 })
...@@ -53,7 +53,7 @@ export function saveData (data) { ...@@ -53,7 +53,7 @@ export function saveData (data) {
53 // 批量数据保存 53 // 批量数据保存
54 export function batchSaveData (data) { 54 export function batchSaveData (data) {
55 return request({ 55 return request({
56 url: '/service-bdcdj/ywbl/cfdj/batchSaveData', 56 url: '/service-bdcdj/rest/ywbl/cfdj/batchSaveData',
57 method: 'post', 57 method: 'post',
58 data 58 data
59 }) 59 })
......
...@@ -4,13 +4,13 @@ import request from '@/utils/request' ...@@ -4,13 +4,13 @@ import request from '@/utils/request'
4 */ 4 */
5 export function getAllDict () { 5 export function getAllDict () {
6 return request({ 6 return request({
7 url: '/service-bdcdj/sys/dict/getAllDict', 7 url: '/service-bdcdj/rest/sys/dict/getAllDict',
8 method: 'post' 8 method: 'post'
9 }) 9 })
10 } 10 }
11 export function getQlxxDictList (data) { 11 export function getQlxxDictList (data) {
12 return request({ 12 return request({
13 url: '/service-bdcdj/sys/dict/getQlxxDictList', 13 url: '/service-bdcdj/rest/sys/dict/getQlxxDictList',
14 method: 'post', 14 method: 'post',
15 data, 15 data,
16 showLoading: true 16 showLoading: true
...@@ -21,7 +21,7 @@ export function getQlxxDictList (data) { ...@@ -21,7 +21,7 @@ export function getQlxxDictList (data) {
21 */ 21 */
22 export function getChildDictList (bsmDict) { 22 export function getChildDictList (bsmDict) {
23 return request({ 23 return request({
24 url: '/service-bdcdj/sys/dict/getChildDictList', 24 url: '/service-bdcdj/rest/sys/dict/getChildDictList',
25 method: 'get', 25 method: 'get',
26 params: { 26 params: {
27 bsmDict: bsmDict 27 bsmDict: bsmDict
...@@ -33,7 +33,7 @@ export function getChildDictList (bsmDict) { ...@@ -33,7 +33,7 @@ export function getChildDictList (bsmDict) {
33 */ 33 */
34 export function editDictNode (data) { 34 export function editDictNode (data) {
35 return request({ 35 return request({
36 url: '/service-bdcdj/sys/dict/editDictNode', 36 url: '/service-bdcdj/rest/sys/dict/editDictNode',
37 method: 'post', 37 method: 'post',
38 data, 38 data,
39 showLoading: true, 39 showLoading: true,
......
...@@ -3,7 +3,7 @@ import request from '@/utils/request' ...@@ -3,7 +3,7 @@ import request from '@/utils/request'
3 // 初始化内容 3 // 初始化内容
4 export function Init (data) { 4 export function Init (data) {
5 return request({ 5 return request({
6 url: '/service-bdcdj/ywbl/dyaq/Init', 6 url: '/service-bdcdj/rest/ywbl/dyaq/Init',
7 method: 'post', 7 method: 'post',
8 data 8 data
9 }) 9 })
......
...@@ -4,7 +4,7 @@ import request from '@/utils/request' ...@@ -4,7 +4,7 @@ import request from '@/utils/request'
4 // 转出 4 // 转出
5 export function completeTask (data) { 5 export function completeTask (data) {
6 return request({ 6 return request({
7 url: '/service-bdcdj/business/workFlow/completeTask', 7 url: '/service-bdcdj/rest/business/workFlow/completeTask',
8 method: 'post', 8 method: 'post',
9 data 9 data
10 }) 10 })
...@@ -12,7 +12,7 @@ export function completeTask (data) { ...@@ -12,7 +12,7 @@ export function completeTask (data) {
12 // 回退表格数据 12 // 回退表格数据
13 export function getTaskBackNode (params) { 13 export function getTaskBackNode (params) {
14 return request({ 14 return request({
15 url: '/service-bdcdj/business/workFlow/getTaskBackNode', 15 url: '/service-bdcdj/rest/business/workFlow/getTaskBackNode',
16 method: 'get', 16 method: 'get',
17 params: params 17 params: params
18 }) 18 })
...@@ -20,7 +20,7 @@ export function getTaskBackNode (params) { ...@@ -20,7 +20,7 @@ export function getTaskBackNode (params) {
20 // 退回确认接口 20 // 退回确认接口
21 export function sendBackTask (data) { 21 export function sendBackTask (data) {
22 return request({ 22 return request({
23 url: '/service-bdcdj/business/workFlow/sendBackTask', 23 url: '/service-bdcdj/rest/business/workFlow/sendBackTask',
24 method: 'post', 24 method: 'post',
25 data 25 data
26 }) 26 })
...@@ -28,7 +28,7 @@ export function sendBackTask (data) { ...@@ -28,7 +28,7 @@ export function sendBackTask (data) {
28 // 获取左侧列表 28 // 获取左侧列表
29 export function leftMenu (data) { 29 export function leftMenu (data) {
30 return request({ 30 return request({
31 url: '/service-bdcdj/business/workFlow/leftMenu', 31 url: '/service-bdcdj/rest/business/workFlow/leftMenu',
32 method: 'post', 32 method: 'post',
33 data 33 data
34 }) 34 })
...@@ -38,7 +38,7 @@ export function leftMenu (data) { ...@@ -38,7 +38,7 @@ export function leftMenu (data) {
38 // 材料目录明细初始化 38 // 材料目录明细初始化
39 export function clmlInit (data) { 39 export function clmlInit (data) {
40 return request({ 40 return request({
41 url: '/service-bdcdj/zhcx/clml/Init', 41 url: '/service-bdcdj/rest/zhcx/clml/Init',
42 method: 'post', 42 method: 'post',
43 data 43 data
44 }) 44 })
...@@ -47,7 +47,7 @@ export function clmlInit (data) { ...@@ -47,7 +47,7 @@ export function clmlInit (data) {
47 // 材料目录明细移动 47 // 材料目录明细移动
48 export function move (data) { 48 export function move (data) {
49 return request({ 49 return request({
50 url: '/service-bdcdj/zhcx/clml/move', 50 url: '/service-bdcdj/rest/zhcx/clml/move',
51 method: 'post', 51 method: 'post',
52 data 52 data
53 }) 53 })
...@@ -56,7 +56,7 @@ export function move (data) { ...@@ -56,7 +56,7 @@ export function move (data) {
56 // 材料目录明细保存 56 // 材料目录明细保存
57 export function save (data) { 57 export function save (data) {
58 return request({ 58 return request({
59 url: '/service-bdcdj/zhcx/clml/save', 59 url: '/service-bdcdj/rest/zhcx/clml/save',
60 method: 'post', 60 method: 'post',
61 data 61 data
62 }) 62 })
...@@ -65,7 +65,7 @@ export function save (data) { ...@@ -65,7 +65,7 @@ export function save (data) {
65 // 材料目录批量删除 65 // 材料目录批量删除
66 export function clmlDelete (params) { 66 export function clmlDelete (params) {
67 return request({ 67 return request({
68 url: '/service-bdcdj/zhcx/clml/delete', 68 url: '/service-bdcdj/rest/zhcx/clml/delete',
69 method: 'delete', 69 method: 'delete',
70 params: params 70 params: params
71 }) 71 })
...@@ -74,13 +74,13 @@ export function clmlDelete (params) { ...@@ -74,13 +74,13 @@ export function clmlDelete (params) {
74 // 获取下一环节信息 74 // 获取下一环节信息
75 export function getNextLinkInfo (params) { 75 export function getNextLinkInfo (params) {
76 // return axios({ 76 // return axios({
77 // url: '/service-bdcdj/business/workFlow/getNextLinkInfo', 77 // url: '/service-bdcdj/rest/business/workFlow/getNextLinkInfo',
78 // method: 'get', 78 // method: 'get',
79 // params: params 79 // params: params
80 // }); 80 // });
81 81
82 return request({ 82 return request({
83 url: '/service-bdcdj/business/workFlow/getNextLinkInfo', 83 url: '/service-bdcdj/rest/business/workFlow/getNextLinkInfo',
84 method: 'get', 84 method: 'get',
85 params: params 85 params: params
86 }); 86 });
...@@ -89,7 +89,7 @@ export function getNextLinkInfo (params) { ...@@ -89,7 +89,7 @@ export function getNextLinkInfo (params) {
89 //获取单元对应的环节表单信息 89 //获取单元对应的环节表单信息
90 export function getStepFormInfo(data){ 90 export function getStepFormInfo(data){
91 return request({ 91 return request({
92 url: '/service-bdcdj/business/workFlow/getStepFormInfo', 92 url: '/service-bdcdj/rest/business/workFlow/getStepFormInfo',
93 method: 'post', 93 method: 'post',
94 data 94 data
95 }); 95 });
...@@ -97,7 +97,7 @@ export function getStepFormInfo(data){ ...@@ -97,7 +97,7 @@ export function getStepFormInfo(data){
97 // 环节扩展信息 97 // 环节扩展信息
98 export function stepExpandInfo (data) { 98 export function stepExpandInfo (data) {
99 return request({ 99 return request({
100 url: '/service-bdcdj/business/workFlow/stepExpandInfo', 100 url: '/service-bdcdj/rest/business/workFlow/stepExpandInfo',
101 method: 'post', 101 method: 'post',
102 data 102 data
103 }) 103 })
...@@ -106,7 +106,7 @@ export function stepExpandInfo (data) { ...@@ -106,7 +106,7 @@ export function stepExpandInfo (data) {
106 // 获取审批意见 106 // 获取审批意见
107 export function getSpyjList (data) { 107 export function getSpyjList (data) {
108 return request({ 108 return request({
109 url: '/service-bdcdj/business/workFlow/getSpyjList', 109 url: '/service-bdcdj/rest/business/workFlow/getSpyjList',
110 method: 'post', 110 method: 'post',
111 data 111 data
112 }) 112 })
...@@ -115,7 +115,7 @@ export function getSpyjList (data) { ...@@ -115,7 +115,7 @@ export function getSpyjList (data) {
115 // 保存审批意见 115 // 保存审批意见
116 export function saveSpyj (data) { 116 export function saveSpyj (data) {
117 return request({ 117 return request({
118 url: '/service-bdcdj/business/workFlow/saveSpyj', 118 url: '/service-bdcdj/rest/business/workFlow/saveSpyj',
119 method: 'post', 119 method: 'post',
120 data 120 data
121 }) 121 })
...@@ -123,7 +123,7 @@ export function saveSpyj (data) { ...@@ -123,7 +123,7 @@ export function saveSpyj (data) {
123 // 根据受理申请保存审批意见 123 // 根据受理申请保存审批意见
124 export function saveSpyjBySlsq (data) { 124 export function saveSpyjBySlsq (data) {
125 return request({ 125 return request({
126 url: '/service-bdcdj/business/workFlow/saveSpyjBySlsq', 126 url: '/service-bdcdj/rest/business/workFlow/saveSpyjBySlsq',
127 method: 'post', 127 method: 'post',
128 data 128 data
129 }) 129 })
...@@ -131,7 +131,7 @@ export function saveSpyjBySlsq (data) { ...@@ -131,7 +131,7 @@ export function saveSpyjBySlsq (data) {
131 // 登簿接口 131 // 登簿接口
132 export function record (data) { 132 export function record (data) {
133 return request({ 133 return request({
134 url: '/service-bdcdj/business/workFlow/record', 134 url: '/service-bdcdj/rest/business/workFlow/record',
135 method: 'post', 135 method: 'post',
136 data 136 data
137 }) 137 })
...@@ -139,7 +139,7 @@ export function record (data) { ...@@ -139,7 +139,7 @@ export function record (data) {
139 // 获取不动产权证列表 139 // 获取不动产权证列表
140 export function getBdcqzList (params) { 140 export function getBdcqzList (params) {
141 return request({ 141 return request({
142 url: '/service-bdcdj/business/workFlow/getBdcqzList', 142 url: '/service-bdcdj/rest/business/workFlow/getBdcqzList',
143 method: 'get', 143 method: 'get',
144 params: params 144 params: params
145 }) 145 })
...@@ -147,7 +147,7 @@ export function getBdcqzList (params) { ...@@ -147,7 +147,7 @@ export function getBdcqzList (params) {
147 // 获取印刷序列号 147 // 获取印刷序列号
148 export function readYsxlh (params) { 148 export function readYsxlh (params) {
149 return request({ 149 return request({
150 url: '/service-bdcdj/business/workFlow/readYsxlh', 150 url: '/service-bdcdj/rest/business/workFlow/readYsxlh',
151 method: 'get', 151 method: 'get',
152 params: params 152 params: params
153 }) 153 })
...@@ -155,7 +155,7 @@ export function readYsxlh (params) { ...@@ -155,7 +155,7 @@ export function readYsxlh (params) {
155 // 缮证 155 // 缮证
156 export function certificate (data) { 156 export function certificate (data) {
157 return request({ 157 return request({
158 url: '/service-bdcdj/business/workFlow/certificate', 158 url: '/service-bdcdj/rest/business/workFlow/certificate',
159 method: 'post', 159 method: 'post',
160 data 160 data
161 }) 161 })
...@@ -163,7 +163,7 @@ export function certificate (data) { ...@@ -163,7 +163,7 @@ export function certificate (data) {
163 // 作废缮证信息 163 // 作废缮证信息
164 export function invalidCertificate (data) { 164 export function invalidCertificate (data) {
165 return request({ 165 return request({
166 url: '/service-bdcdj/business/workFlow/invalidCertificate', 166 url: '/service-bdcdj/rest/business/workFlow/invalidCertificate',
167 method: 'post', 167 method: 'post',
168 data 168 data
169 }) 169 })
...@@ -171,7 +171,7 @@ export function invalidCertificate (data) { ...@@ -171,7 +171,7 @@ export function invalidCertificate (data) {
171 // 缮证列表 171 // 缮证列表
172 export function getCertificateList (data) { 172 export function getCertificateList (data) {
173 return request({ 173 return request({
174 url: '/service-bdcdj/business/workFlow/getCertificateList', 174 url: '/service-bdcdj/rest/business/workFlow/getCertificateList',
175 method: 'post', 175 method: 'post',
176 data 176 data
177 }) 177 })
...@@ -179,7 +179,7 @@ export function getCertificateList (data) { ...@@ -179,7 +179,7 @@ export function getCertificateList (data) {
179 // 发证 179 // 发证
180 export function issueCertificate (data) { 180 export function issueCertificate (data) {
181 return request({ 181 return request({
182 url: '/service-bdcdj/business/workFlow/issueCertificate', 182 url: '/service-bdcdj/rest/business/workFlow/issueCertificate',
183 method: 'post', 183 method: 'post',
184 data 184 data
185 }) 185 })
...@@ -187,7 +187,7 @@ export function issueCertificate (data) { ...@@ -187,7 +187,7 @@ export function issueCertificate (data) {
187 // 获取受理申请下全部不动产权证 187 // 获取受理申请下全部不动产权证
188 export function getSlsqBdcqzList (params) { 188 export function getSlsqBdcqzList (params) {
189 return request({ 189 return request({
190 url: '/service-bdcdj/business/workFlow/getSlsqBdcqzList', 190 url: '/service-bdcdj/rest/business/workFlow/getSlsqBdcqzList',
191 method: 'get', 191 method: 'get',
192 params 192 params
193 }) 193 })
...@@ -195,7 +195,7 @@ export function getSlsqBdcqzList (params) { ...@@ -195,7 +195,7 @@ export function getSlsqBdcqzList (params) {
195 // 终止任务 195 // 终止任务
196 export function stopTask (data) { 196 export function stopTask (data) {
197 return request({ 197 return request({
198 url: '/service-bdcdj/business/workFlow/stopTask', 198 url: '/service-bdcdj/rest/business/workFlow/stopTask',
199 method: 'post', 199 method: 'post',
200 data 200 data
201 }) 201 })
......
...@@ -35,7 +35,7 @@ export function Init(data) { ...@@ -35,7 +35,7 @@ export function Init(data) {
35 // 初始化内容 35 // 初始化内容
36 export function saveData(data) { 36 export function saveData(data) {
37 return request({ 37 return request({
38 url: '/service-bdcdj/ywbl/fdcq2lr/saveData', 38 url: '/service-bdcdj/rest/ywbl/fdcq2lr/saveData',
39 method: 'post', 39 method: 'post',
40 data 40 data
41 }) 41 })
......
...@@ -36,7 +36,7 @@ export function Init(data) { ...@@ -36,7 +36,7 @@ export function Init(data) {
36 // 初始化内容 36 // 初始化内容
37 export function saveData(data) { 37 export function saveData(data) {
38 return request({ 38 return request({
39 url: '/service-bdcdj/ywbl/jsydsyqlr/saveData', 39 url: '/service-bdcdj/rest/ywbl/jsydsyqlr/saveData',
40 method: 'post', 40 method: 'post',
41 data 41 data
42 }) 42 })
...@@ -45,7 +45,7 @@ export function saveData(data) { ...@@ -45,7 +45,7 @@ export function saveData(data) {
45 // // 初始化内容 45 // // 初始化内容
46 // export function Init (data) { 46 // export function Init (data) {
47 // return request({ 47 // return request({
48 // url: '/service-bdcdj/ywbl/tdsyqlr/Init', 48 // url: '/service-bdcdj/rest/ywbl/tdsyqlr/Init',
49 // method: 'post', 49 // method: 'post',
50 // data 50 // data
51 // }) 51 // })
...@@ -54,7 +54,7 @@ export function saveData(data) { ...@@ -54,7 +54,7 @@ export function saveData(data) {
54 // 首次登记保存 54 // 首次登记保存
55 export function fristReg (data) { 55 export function fristReg (data) {
56 return request({ 56 return request({
57 url: '/service-bdcdj/ywbl/jsydsyqlr/fristReg', 57 url: '/service-bdcdj/rest/ywbl/jsydsyqlr/fristReg',
58 method: 'post', 58 method: 'post',
59 data 59 data
60 }) 60 })
...@@ -63,7 +63,7 @@ export function fristReg (data) { ...@@ -63,7 +63,7 @@ export function fristReg (data) {
63 // 转移登记保存 63 // 转移登记保存
64 export function transferReg (data) { 64 export function transferReg (data) {
65 return request({ 65 return request({
66 url: '/service-bdcdj/ywbl/jsydsyqlr/transferReg', 66 url: '/service-bdcdj/rest/ywbl/jsydsyqlr/transferReg',
67 method: 'post', 67 method: 'post',
68 data 68 data
69 }) 69 })
...@@ -73,7 +73,7 @@ export function transferReg (data) { ...@@ -73,7 +73,7 @@ export function transferReg (data) {
73 // 变更登记保存 73 // 变更登记保存
74 export function changeReg (data) { 74 export function changeReg (data) {
75 return request({ 75 return request({
76 url: '/service-bdcdj/ywbl/jsydsyqlr/changeReg', 76 url: '/service-bdcdj/rest/ywbl/jsydsyqlr/changeReg',
77 method: 'post', 77 method: 'post',
78 data 78 data
79 }) 79 })
...@@ -83,7 +83,7 @@ export function changeReg (data) { ...@@ -83,7 +83,7 @@ export function changeReg (data) {
83 // 注销登记保存 83 // 注销登记保存
84 export function logoutReg (data) { 84 export function logoutReg (data) {
85 return request({ 85 return request({
86 url: '/service-bdcdj/ywbl/jsydsyqlr/logoutReg', 86 url: '/service-bdcdj/rest/ywbl/jsydsyqlr/logoutReg',
87 method: 'post', 87 method: 'post',
88 data 88 data
89 }) 89 })
...@@ -91,7 +91,7 @@ export function logoutReg (data) { ...@@ -91,7 +91,7 @@ export function logoutReg (data) {
91 // 流程图 91 // 流程图
92 export function getWorkFlowImage (bsmSlsq, bestepid) { 92 export function getWorkFlowImage (bsmSlsq, bestepid) {
93 return request({ 93 return request({
94 url: '/service-bdcdj/business/workFlow/getWorkFlowImage', 94 url: '/service-bdcdj/rest/business/workFlow/getWorkFlowImage',
95 method: 'get', 95 method: 'get',
96 params: { 96 params: {
97 bsmSlsq: bsmSlsq, 97 bsmSlsq: bsmSlsq,
......
...@@ -2,7 +2,7 @@ import request from '@/utils/request' ...@@ -2,7 +2,7 @@ import request from '@/utils/request'
2 // 根据条件进行列表查询 2 // 根据条件进行列表查询
3 export function getJtfcPage (data) { 3 export function getJtfcPage (data) {
4 return request({ 4 return request({
5 url: '/service-bdcdj/sqcx/jtfc/getJtfcPage', 5 url: '/service-bdcdj/rest/sqcx/jtfc/getJtfcPage',
6 method: 'post', 6 method: 'post',
7 data 7 data
8 }) 8 })
...@@ -10,7 +10,7 @@ export function getJtfcPage (data) { ...@@ -10,7 +10,7 @@ export function getJtfcPage (data) {
10 // 新增申请查询家庭房产信息 10 // 新增申请查询家庭房产信息
11 export function addJtfcCxjgXx (data) { 11 export function addJtfcCxjgXx (data) {
12 return request({ 12 return request({
13 url: '/service-bdcdj/sqcx/jtfc/addJtfcCxjgXx', 13 url: '/service-bdcdj/rest/sqcx/jtfc/addJtfcCxjgXx',
14 method: 'post', 14 method: 'post',
15 data, 15 data,
16 showLoading: true, 16 showLoading: true,
......
...@@ -6,7 +6,7 @@ import request from '@/utils/request' ...@@ -6,7 +6,7 @@ import request from '@/utils/request'
6 // 根据条件进行列表查询 6 // 根据条件进行列表查询
7 export function getLpZrz(data) { 7 export function getLpZrz(data) {
8 return request({ 8 return request({
9 url: '/service-bdcdj/zhcx/lpcx/getLpZrz', 9 url: '/service-bdcdj/rest/zhcx/lpcx/getLpZrz',
10 method: 'post', 10 method: 'post',
11 data: data 11 data: data
12 }) 12 })
...@@ -15,7 +15,7 @@ export function getLpZrz(data) { ...@@ -15,7 +15,7 @@ export function getLpZrz(data) {
15 // 获取楼盘表 15 // 获取楼盘表
16 export function getLpb(params) { 16 export function getLpb(params) {
17 return request({ 17 return request({
18 url: '/service-bdcdj/zhcx/lpcx/getLpb/', 18 url: '/service-bdcdj/rest/zhcx/lpcx/getLpb/',
19 method: 'get', 19 method: 'get',
20 params 20 params
21 }) 21 })
......
...@@ -6,7 +6,7 @@ import request from '@/utils/request' ...@@ -6,7 +6,7 @@ import request from '@/utils/request'
6 // 获取登记封面 6 // 获取登记封面
7 export function getDjbfm(data) { 7 export function getDjbfm(data) {
8 return request({ 8 return request({
9 url: '/service-bdcdj/djbDetail/getDjbFm', 9 url: '/service-bdcdj/rest/djbDetail/getDjbFm',
10 method: 'get', 10 method: 'get',
11 params: data 11 params: data
12 }) 12 })
...@@ -15,7 +15,7 @@ export function getDjbfm(data) { ...@@ -15,7 +15,7 @@ export function getDjbfm(data) {
15 // 获取登记目录 15 // 获取登记目录
16 export function getBdcqldjmlByBdcdyid(data) { 16 export function getBdcqldjmlByBdcdyid(data) {
17 return request({ 17 return request({
18 url: '/service-bdcdj/djbDetail/getBdcqldjmlByBdcdyid', 18 url: '/service-bdcdj/rest/djbDetail/getBdcqldjmlByBdcdyid',
19 method: 'get', 19 method: 'get',
20 params: data 20 params: data
21 }) 21 })
...@@ -24,7 +24,7 @@ export function getBdcqldjmlByBdcdyid(data) { ...@@ -24,7 +24,7 @@ export function getBdcqldjmlByBdcdyid(data) {
24 // 获取宗地信息 24 // 获取宗地信息
25 export function getZdjjxxBybdcdyid(data) { 25 export function getZdjjxxBybdcdyid(data) {
26 return request({ 26 return request({
27 url: '/service-bdcdj/djbDetail/getZdjjxxBybdcdyid', 27 url: '/service-bdcdj/rest/djbDetail/getZdjjxxBybdcdyid',
28 method: 'get', 28 method: 'get',
29 params: data 29 params: data
30 }) 30 })
...@@ -33,7 +33,7 @@ export function getZdjjxxBybdcdyid(data) { ...@@ -33,7 +33,7 @@ export function getZdjjxxBybdcdyid(data) {
33 // 根据受理单元标识,获取宗地信息 33 // 根据受理单元标识,获取宗地信息
34 export function getZdjjxxBySLdy(data) { 34 export function getZdjjxxBySLdy(data) {
35 return request({ 35 return request({
36 url: '/service-bdcdj/djbDetail/getZdjjxxBySLdy', 36 url: '/service-bdcdj/rest/djbDetail/getZdjjxxBySLdy',
37 method: 'get', 37 method: 'get',
38 params: data 38 params: data
39 }) 39 })
...@@ -42,7 +42,7 @@ export function getZdjjxxBySLdy(data) { ...@@ -42,7 +42,7 @@ export function getZdjjxxBySLdy(data) {
42 // 获取不动产权利及其他事项 42 // 获取不动产权利及其他事项
43 export function getBdcqljqtsx(data) { 43 export function getBdcqljqtsx(data) {
44 return request({ 44 return request({
45 url: '/service-bdcdj/djbDetail/getBdcqljqtsx', 45 url: '/service-bdcdj/rest/djbDetail/getBdcqljqtsx',
46 method: 'get', 46 method: 'get',
47 params: data 47 params: data
48 }) 48 })
...@@ -51,7 +51,7 @@ export function getBdcqljqtsx(data) { ...@@ -51,7 +51,7 @@ export function getBdcqljqtsx(data) {
51 // 获取建设用地使用权 51 // 获取建设用地使用权
52 export function getJsydsyqList(data) { 52 export function getJsydsyqList(data) {
53 return request({ 53 return request({
54 url: '/service-bdcdj/djbDetail/getJsydsyqList', 54 url: '/service-bdcdj/rest/djbDetail/getJsydsyqList',
55 method: 'post', 55 method: 'post',
56 data 56 data
57 }) 57 })
...@@ -60,7 +60,7 @@ export function getJsydsyqList(data) { ...@@ -60,7 +60,7 @@ export function getJsydsyqList(data) {
60 // 获取房屋独幢信息集合 60 // 获取房屋独幢信息集合
61 export function getFdcq2List(data) { 61 export function getFdcq2List(data) {
62 return request({ 62 return request({
63 url: '/service-bdcdj/djbDetail/getFdcq2List', 63 url: '/service-bdcdj/rest/djbDetail/getFdcq2List',
64 method: 'post', 64 method: 'post',
65 data 65 data
66 }) 66 })
...@@ -69,7 +69,7 @@ export function getFdcq2List(data) { ...@@ -69,7 +69,7 @@ export function getFdcq2List(data) {
69 // 获取抵押权 69 // 获取抵押权
70 export function getDiyaqList(data) { 70 export function getDiyaqList(data) {
71 return request({ 71 return request({
72 url: '/service-bdcdj/djbDetail/getDiyaqList', 72 url: '/service-bdcdj/rest/djbDetail/getDiyaqList',
73 method: 'post', 73 method: 'post',
74 data 74 data
75 }) 75 })
...@@ -77,7 +77,7 @@ export function getDiyaqList(data) { ...@@ -77,7 +77,7 @@ export function getDiyaqList(data) {
77 // 获取地役权 77 // 获取地役权
78 export function getDiyiqList(data) { 78 export function getDiyiqList(data) {
79 return request({ 79 return request({
80 url: '/service-bdcdj/djbDetail/getDiyiqList', 80 url: '/service-bdcdj/rest/djbDetail/getDiyiqList',
81 method: 'post', 81 method: 'post',
82 data 82 data
83 }) 83 })
...@@ -85,7 +85,7 @@ export function getDiyiqList(data) { ...@@ -85,7 +85,7 @@ export function getDiyiqList(data) {
85 // 获取预告登记 85 // 获取预告登记
86 export function getYgdjList(data) { 86 export function getYgdjList(data) {
87 return request({ 87 return request({
88 url: '/service-bdcdj/djbDetail/getYgdjList', 88 url: '/service-bdcdj/rest/djbDetail/getYgdjList',
89 method: 'post', 89 method: 'post',
90 data 90 data
91 }) 91 })
...@@ -93,7 +93,7 @@ export function getYgdjList(data) { ...@@ -93,7 +93,7 @@ export function getYgdjList(data) {
93 // 获取异议登记 93 // 获取异议登记
94 export function getYydjList(data) { 94 export function getYydjList(data) {
95 return request({ 95 return request({
96 url: '/service-bdcdj/djbDetail/getYydjList', 96 url: '/service-bdcdj/rest/djbDetail/getYydjList',
97 method: 'post', 97 method: 'post',
98 data 98 data
99 }) 99 })
...@@ -101,7 +101,7 @@ export function getYydjList(data) { ...@@ -101,7 +101,7 @@ export function getYydjList(data) {
101 // 获取查封登记 101 // 获取查封登记
102 export function getCfdjList(data) { 102 export function getCfdjList(data) {
103 return request({ 103 return request({
104 url: '/service-bdcdj/djbDetail/getCfdjList', 104 url: '/service-bdcdj/rest/djbDetail/getCfdjList',
105 method: 'post', 105 method: 'post',
106 data 106 data
107 }) 107 })
...@@ -109,7 +109,7 @@ export function getCfdjList(data) { ...@@ -109,7 +109,7 @@ export function getCfdjList(data) {
109 // 获取数据比对集合 109 // 获取数据比对集合
110 export function getFdcqLSInfo(data) { 110 export function getFdcqLSInfo(data) {
111 return request({ 111 return request({
112 url: '/service-bdcdj/djbDetail/getFdcqLSInfo', 112 url: '/service-bdcdj/rest/djbDetail/getFdcqLSInfo',
113 method: 'post', 113 method: 'post',
114 data 114 data
115 }) 115 })
......
...@@ -2,7 +2,7 @@ import request from '@/utils/request' ...@@ -2,7 +2,7 @@ import request from '@/utils/request'
2 // 获取申请查询记录详细信息 2 // 获取申请查询记录详细信息
3 export function getJtfcInfo(params) { 3 export function getJtfcInfo(params) {
4 return request({ 4 return request({
5 url: '/service-bdcdj/sqcx/jtfc/getJtfcInfo/', 5 url: '/service-bdcdj/rest/sqcx/jtfc/getJtfcInfo/',
6 method: 'get', 6 method: 'get',
7 params 7 params
8 }) 8 })
......
...@@ -5,7 +5,7 @@ import request from '@/utils/request' ...@@ -5,7 +5,7 @@ import request from '@/utils/request'
5 */ 5 */
6 export function getSysSqdjywBysearch (data) { 6 export function getSysSqdjywBysearch (data) {
7 return request({ 7 return request({
8 url: '/service-bdcdj/system/sysSqdjyw/getSysSqdjywBysearch', 8 url: '/service-bdcdj/rest/system/sysSqdjyw/getSysSqdjywBysearch',
9 method: 'post', 9 method: 'post',
10 data, 10 data,
11 showLoading: true 11 showLoading: true
...@@ -16,7 +16,7 @@ export function getSysSqdjywBysearch (data) { ...@@ -16,7 +16,7 @@ export function getSysSqdjywBysearch (data) {
16 */ 16 */
17 export function getDjlxInfo (id) { 17 export function getDjlxInfo (id) {
18 return request({ 18 return request({
19 url: '/service-bdcdj/system/sysSqdjyw/getDjlxInfo?parentid=' + id, 19 url: '/service-bdcdj/rest/system/sysSqdjyw/getDjlxInfo?parentid=' + id,
20 method: 'post' 20 method: 'post'
21 }) 21 })
22 } 22 }
...@@ -26,7 +26,7 @@ export function getDjlxInfo (id) { ...@@ -26,7 +26,7 @@ export function getDjlxInfo (id) {
26 */ 26 */
27 export function getSqdjywDetail (bsmSqyw) { 27 export function getSqdjywDetail (bsmSqyw) {
28 return request({ 28 return request({
29 url: '/service-bdcdj/system/sysSqdjyw/getSqdjywDetail?bsmSqyw=' + bsmSqyw, 29 url: '/service-bdcdj/rest/system/sysSqdjyw/getSqdjywDetail?bsmSqyw=' + bsmSqyw,
30 method: 'get' 30 method: 'get'
31 }) 31 })
32 } 32 }
...@@ -35,7 +35,7 @@ export function getSqdjywDetail (bsmSqyw) { ...@@ -35,7 +35,7 @@ export function getSqdjywDetail (bsmSqyw) {
35 */ 35 */
36 export function saveSqdjyw (data) { 36 export function saveSqdjyw (data) {
37 return request({ 37 return request({
38 url: '/service-bdcdj/system/sysSqdjyw/saveSqdjyw', 38 url: '/service-bdcdj/rest/system/sysSqdjyw/saveSqdjyw',
39 method: 'post', 39 method: 'post',
40 data, 40 data,
41 showLoading: true, 41 showLoading: true,
...@@ -48,7 +48,7 @@ export function saveSqdjyw (data) { ...@@ -48,7 +48,7 @@ export function saveSqdjyw (data) {
48 */ 48 */
49 export function sysSqywmbszSearch (data) { 49 export function sysSqywmbszSearch (data) {
50 return request({ 50 return request({
51 url: '/service-bdcdj/system/sysSqywmbsz/search', 51 url: '/service-bdcdj/rest/system/sysSqywmbsz/search',
52 method: 'post', 52 method: 'post',
53 data, 53 data,
54 showLoading: true 54 showLoading: true
...@@ -59,7 +59,7 @@ export function sysSqywmbszSearch (data) { ...@@ -59,7 +59,7 @@ export function sysSqywmbszSearch (data) {
59 */ 59 */
60 export function getSysSqywmbszDetailById (id) { 60 export function getSysSqywmbszDetailById (id) {
61 return request({ 61 return request({
62 url: '/service-bdcdj/system/sysSqywmbsz/getSysSqywmbszDetailById?id=' + id, 62 url: '/service-bdcdj/rest/system/sysSqywmbsz/getSysSqywmbszDetailById?id=' + id,
63 method: 'get' 63 method: 'get'
64 }) 64 })
65 } 65 }
...@@ -68,7 +68,7 @@ export function getSysSqywmbszDetailById (id) { ...@@ -68,7 +68,7 @@ export function getSysSqywmbszDetailById (id) {
68 */ 68 */
69 export function updateSysSqywmbsz (data) { 69 export function updateSysSqywmbsz (data) {
70 return request({ 70 return request({
71 url: '/service-bdcdj/system/sysSqywmbsz/updateSysSqywmbsz', 71 url: '/service-bdcdj/rest/system/sysSqywmbsz/updateSysSqywmbsz',
72 method: 'put', 72 method: 'put',
73 data, 73 data,
74 showLoading: true 74 showLoading: true
......
...@@ -2,7 +2,7 @@ import request from '@/utils/request' ...@@ -2,7 +2,7 @@ import request from '@/utils/request'
2 2
3 export function getMenuInfo () { 3 export function getMenuInfo () {
4 return request({ 4 return request({
5 url: '/service-bdcdj/user/getUserMenus', 5 url: '/service-bdcdj/rest/user/getUserMenus',
6 method: 'get', 6 method: 'get',
7 }) 7 })
8 } 8 }
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -4,7 +4,7 @@ import request from '@/utils/request' ...@@ -4,7 +4,7 @@ import request from '@/utils/request'
4 */ 4 */
5 export function getCollectBiz () { 5 export function getCollectBiz () {
6 return request({ 6 return request({
7 url: '/service-bdcdj/ywbl/BusinessApply/getCollectBiz', 7 url: '/service-bdcdj/rest/ywbl/BusinessApply/getCollectBiz',
8 method: 'post' 8 method: 'post'
9 }) 9 })
10 } 10 }
...@@ -14,7 +14,7 @@ export function getCollectBiz () { ...@@ -14,7 +14,7 @@ export function getCollectBiz () {
14 */ 14 */
15 export function getleftMenu () { 15 export function getleftMenu () {
16 return request({ 16 return request({
17 url: '/service-bdcdj/ywbl/BusinessApply/getleftMenu', 17 url: '/service-bdcdj/rest/ywbl/BusinessApply/getleftMenu',
18 method: 'post' 18 method: 'post'
19 }) 19 })
20 } 20 }
...@@ -23,7 +23,7 @@ export function getleftMenu () { ...@@ -23,7 +23,7 @@ export function getleftMenu () {
23 */ 23 */
24 export function getNextNode (bsmSqyw) { 24 export function getNextNode (bsmSqyw) {
25 return request({ 25 return request({
26 url: '/service-bdcdj/ywbl/BusinessApply/getNextNode?parentid=' + bsmSqyw, 26 url: '/service-bdcdj/rest/ywbl/BusinessApply/getNextNode?parentid=' + bsmSqyw,
27 method: 'post', 27 method: 'post',
28 }) 28 })
29 } 29 }
...@@ -33,7 +33,7 @@ export function getNextNode (bsmSqyw) { ...@@ -33,7 +33,7 @@ export function getNextNode (bsmSqyw) {
33 */ 33 */
34 export function selectScBdcdy (data) { 34 export function selectScBdcdy (data) {
35 return request({ 35 return request({
36 url: '/service-bdcdj/ywbl/ywsq/selectScBdcdy', 36 url: '/service-bdcdj/rest/ywbl/ywsq/selectScBdcdy',
37 method: 'post', 37 method: 'post',
38 data, 38 data,
39 showLoading: true 39 showLoading: true
...@@ -55,7 +55,7 @@ export function selectScBdcdy (data) { ...@@ -55,7 +55,7 @@ export function selectScBdcdy (data) {
55 // 待办箱列表查询接口 55 // 待办箱列表查询接口
56 export function searchTaskToDo (data) { 56 export function searchTaskToDo (data) {
57 return request({ 57 return request({
58 url: '/service-bdcdj/workBox/search/searchTaskToDo', 58 url: '/service-bdcdj/rest/workBox/search/searchTaskToDo',
59 method: 'post', 59 method: 'post',
60 data, 60 data,
61 showLoading: true 61 showLoading: true
...@@ -74,7 +74,7 @@ export function deleteFlow (data) { ...@@ -74,7 +74,7 @@ export function deleteFlow (data) {
74 */ 74 */
75 export function startBusinessFlow (data) { 75 export function startBusinessFlow (data) {
76 return request({ 76 return request({
77 url: '/service-bdcdj/business/workFlow/startBusinessFlow', 77 url: '/service-bdcdj/rest/business/workFlow/startBusinessFlow',
78 method: 'post', 78 method: 'post',
79 data, 79 data,
80 showLoading: true 80 showLoading: true
...@@ -85,7 +85,7 @@ export function startBusinessFlow (data) { ...@@ -85,7 +85,7 @@ export function startBusinessFlow (data) {
85 */ 85 */
86 export function searchTaskDone (data) { 86 export function searchTaskDone (data) {
87 return request({ 87 return request({
88 url: '/service-bdcdj/workBox/search/searchTaskDone', 88 url: '/service-bdcdj/rest/workBox/search/searchTaskDone',
89 method: 'post', 89 method: 'post',
90 data, 90 data,
91 showLoading: true 91 showLoading: true
...@@ -96,7 +96,7 @@ export function searchTaskDone (data) { ...@@ -96,7 +96,7 @@ export function searchTaskDone (data) {
96 */ 96 */
97 export function selectQlxx (data) { 97 export function selectQlxx (data) {
98 return request({ 98 return request({
99 url: '/service-bdcdj/ywbl/ywsq/selectQlxx', 99 url: '/service-bdcdj/rest/ywbl/ywsq/selectQlxx',
100 method: 'post', 100 method: 'post',
101 data, 101 data,
102 showLoading: true 102 showLoading: true
...@@ -107,7 +107,7 @@ export function selectQlxx (data) { ...@@ -107,7 +107,7 @@ export function selectQlxx (data) {
107 */ 107 */
108 export function selectDiyaq (data) { 108 export function selectDiyaq (data) {
109 return request({ 109 return request({
110 url: '/service-bdcdj/ywbl/ywsq/selectDiyaq', 110 url: '/service-bdcdj/rest/ywbl/ywsq/selectDiyaq',
111 method: 'post', 111 method: 'post',
112 data, 112 data,
113 showLoading: true 113 showLoading: true
...@@ -118,7 +118,7 @@ export function selectDiyaq (data) { ...@@ -118,7 +118,7 @@ export function selectDiyaq (data) {
118 */ 118 */
119 export function selectCfdj (data) { 119 export function selectCfdj (data) {
120 return request({ 120 return request({
121 url: '/service-bdcdj/ywbl/ywsq/selectCfdj', 121 url: '/service-bdcdj/rest/ywbl/ywsq/selectCfdj',
122 method: 'post', 122 method: 'post',
123 data, 123 data,
124 showLoading: true 124 showLoading: true
...@@ -129,7 +129,7 @@ export function selectCfdj (data) { ...@@ -129,7 +129,7 @@ export function selectCfdj (data) {
129 */ 129 */
130 export function addCollectBiz (bsmSqyw) { 130 export function addCollectBiz (bsmSqyw) {
131 return request({ 131 return request({
132 url: '/service-bdcdj/ywbl/BusinessApply/addCollectBiz?bsmSqyw=' + bsmSqyw, 132 url: '/service-bdcdj/rest/ywbl/BusinessApply/addCollectBiz?bsmSqyw=' + bsmSqyw,
133 method: 'post' 133 method: 'post'
134 }) 134 })
135 } 135 }
...@@ -138,7 +138,7 @@ export function addCollectBiz (bsmSqyw) { ...@@ -138,7 +138,7 @@ export function addCollectBiz (bsmSqyw) {
138 */ 138 */
139 export function deleteCollectBiz (bsmSqyw) { 139 export function deleteCollectBiz (bsmSqyw) {
140 return request({ 140 return request({
141 url: '/service-bdcdj/ywbl/BusinessApply/deleteCollectBiz?bsmSqyw=' + bsmSqyw, 141 url: '/service-bdcdj/rest/ywbl/BusinessApply/deleteCollectBiz?bsmSqyw=' + bsmSqyw,
142 method: 'post' 142 method: 'post'
143 }) 143 })
144 } 144 }
......
...@@ -9,7 +9,7 @@ import request from '@/utils/request' ...@@ -9,7 +9,7 @@ import request from '@/utils/request'
9 // 根据条件进行列表查询 9 // 根据条件进行列表查询
10 export function getDjbBysearch(data) { 10 export function getDjbBysearch(data) {
11 return request({ 11 return request({
12 url: '/service-bdcdj/zhcx/search/qlxx/getDjbBysearch', 12 url: '/service-bdcdj/rest/zhcx/search/qlxx/getDjbBysearch',
13 method: 'post', 13 method: 'post',
14 data: data 14 data: data
15 }) 15 })
...@@ -18,7 +18,7 @@ export function getDjbBysearch(data) { ...@@ -18,7 +18,7 @@ export function getDjbBysearch(data) {
18 // 获取登记封面 18 // 获取登记封面
19 export function getDjbfm(qlbsm) { 19 export function getDjbfm(qlbsm) {
20 return request({ 20 return request({
21 url: '/service-bdcdj/zhcx/djbcx/djbfm/' + qlbsm, 21 url: '/service-bdcdj/rest/zhcx/djbcx/djbfm/' + qlbsm,
22 method: 'get' 22 method: 'get'
23 }) 23 })
24 } 24 }
...@@ -26,7 +26,7 @@ export function getDjbfm(qlbsm) { ...@@ -26,7 +26,7 @@ export function getDjbfm(qlbsm) {
26 // 获取登记目录 26 // 获取登记目录
27 export function getBdcqldjmlByBdcdyid(data) { 27 export function getBdcqldjmlByBdcdyid(data) {
28 return request({ 28 return request({
29 url: '/service-bdcdj/zhcx/djbcx/getBdcqldjmlByBdcdyid', 29 url: '/service-bdcdj/rest/zhcx/djbcx/getBdcqldjmlByBdcdyid',
30 method: 'get', 30 method: 'get',
31 params: data 31 params: data
32 }) 32 })
...@@ -35,7 +35,7 @@ export function getBdcqldjmlByBdcdyid(data) { ...@@ -35,7 +35,7 @@ export function getBdcqldjmlByBdcdyid(data) {
35 // 获取宗地信息 35 // 获取宗地信息
36 export function getZdjbxx(qlbsm) { 36 export function getZdjbxx(qlbsm) {
37 return request({ 37 return request({
38 url: '/service-bdcdj/zhcx/djbcx/zdjbxx/' + qlbsm, 38 url: '/service-bdcdj/rest/zhcx/djbcx/zdjbxx/' + qlbsm,
39 method: 'get' 39 method: 'get'
40 }) 40 })
41 } 41 }
...@@ -43,7 +43,7 @@ export function getZdjbxx(qlbsm) { ...@@ -43,7 +43,7 @@ export function getZdjbxx(qlbsm) {
43 // 获取宗地信息 43 // 获取宗地信息
44 export function getZdjjxxBybdcdyid(data) { 44 export function getZdjjxxBybdcdyid(data) {
45 return request({ 45 return request({
46 url: '/service-bdcdj/zhcx/djbcx/getZdjjxxBybdcdyid', 46 url: '/service-bdcdj/rest/zhcx/djbcx/getZdjjxxBybdcdyid',
47 method: 'get', 47 method: 'get',
48 params: data 48 params: data
49 }) 49 })
...@@ -52,7 +52,7 @@ export function getZdjjxxBybdcdyid(data) { ...@@ -52,7 +52,7 @@ export function getZdjjxxBybdcdyid(data) {
52 // 获取宗地信息 52 // 获取宗地信息
53 export function getZdjjxxBySLdy(data) { 53 export function getZdjjxxBySLdy(data) {
54 return request({ 54 return request({
55 url: '/service-bdcdj/zhcx/djbcx/getZdjjxxBybdcdyid', 55 url: '/service-bdcdj/rest/zhcx/djbcx/getZdjjxxBybdcdyid',
56 method: 'get', 56 method: 'get',
57 params: data 57 params: data
58 }) 58 })
...@@ -61,7 +61,7 @@ export function getZdjjxxBySLdy(data) { ...@@ -61,7 +61,7 @@ export function getZdjjxxBySLdy(data) {
61 // 获取不动产权利及其他事项 61 // 获取不动产权利及其他事项
62 export function getBdcqljqtsx(data) { 62 export function getBdcqljqtsx(data) {
63 return request({ 63 return request({
64 url: '/service-bdcdj/zhcx/djbcx/getBdcqljqtsx', 64 url: '/service-bdcdj/rest/zhcx/djbcx/getBdcqljqtsx',
65 method: 'get', 65 method: 'get',
66 params: data 66 params: data
67 }) 67 })
...@@ -70,7 +70,7 @@ export function getBdcqljqtsx(data) { ...@@ -70,7 +70,7 @@ export function getBdcqljqtsx(data) {
70 // 获取不动产权利及其他事项页面信息 70 // 获取不动产权利及其他事项页面信息
71 export function getQlname(qlbsm) { 71 export function getQlname(qlbsm) {
72 return request({ 72 return request({
73 url: '/service-bdcdj/zhcx/djbcx/qlname/' + qlbsm, 73 url: '/service-bdcdj/rest/zhcx/djbcx/qlname/' + qlbsm,
74 method: 'get' 74 method: 'get'
75 }) 75 })
76 } 76 }
...@@ -78,7 +78,7 @@ export function getQlname(qlbsm) { ...@@ -78,7 +78,7 @@ export function getQlname(qlbsm) {
78 // 获取权利详细信息 78 // 获取权利详细信息
79 export function getDetail(qlbsm) { 79 export function getDetail(qlbsm) {
80 return request({ 80 return request({
81 url: '/service-bdcdj/zhcx/djbcx/detail/' + qlbsm, 81 url: '/service-bdcdj/rest/zhcx/djbcx/detail/' + qlbsm,
82 method: 'get' 82 method: 'get'
83 }) 83 })
84 } 84 }
...@@ -86,7 +86,7 @@ export function getDetail(qlbsm) { ...@@ -86,7 +86,7 @@ export function getDetail(qlbsm) {
86 // 获取建设用地使用权 86 // 获取建设用地使用权
87 export function getJsydsyqList(data) { 87 export function getJsydsyqList(data) {
88 return request({ 88 return request({
89 url: '/service-bdcdj/zhcx/djbcx/getJsydsyqList', 89 url: '/service-bdcdj/rest/zhcx/djbcx/getJsydsyqList',
90 method: 'post', 90 method: 'post',
91 data 91 data
92 }) 92 })
...@@ -94,7 +94,7 @@ export function getJsydsyqList(data) { ...@@ -94,7 +94,7 @@ export function getJsydsyqList(data) {
94 // 获取抵押权 94 // 获取抵押权
95 export function getDiyaqList(data) { 95 export function getDiyaqList(data) {
96 return request({ 96 return request({
97 url: '/service-bdcdj/zhcx/djbcx/getDiyaqList', 97 url: '/service-bdcdj/rest/zhcx/djbcx/getDiyaqList',
98 method: 'post', 98 method: 'post',
99 data 99 data
100 }) 100 })
...@@ -102,7 +102,7 @@ export function getDiyaqList(data) { ...@@ -102,7 +102,7 @@ export function getDiyaqList(data) {
102 // 获取地役权 102 // 获取地役权
103 export function getDiyiqList(data) { 103 export function getDiyiqList(data) {
104 return request({ 104 return request({
105 url: '/service-bdcdj/zhcx/djbcx/getDiyiqList', 105 url: '/service-bdcdj/rest/zhcx/djbcx/getDiyiqList',
106 method: 'post', 106 method: 'post',
107 data 107 data
108 }) 108 })
...@@ -110,7 +110,7 @@ export function getDiyiqList(data) { ...@@ -110,7 +110,7 @@ export function getDiyiqList(data) {
110 // 获取预告登记 110 // 获取预告登记
111 export function getYgdjList(data) { 111 export function getYgdjList(data) {
112 return request({ 112 return request({
113 url: '/service-bdcdj/zhcx/djbcx/getYgdjList', 113 url: '/service-bdcdj/rest/zhcx/djbcx/getYgdjList',
114 method: 'post', 114 method: 'post',
115 data 115 data
116 }) 116 })
...@@ -118,7 +118,7 @@ export function getYgdjList(data) { ...@@ -118,7 +118,7 @@ export function getYgdjList(data) {
118 // 获取异议登记 118 // 获取异议登记
119 export function getYydjList(data) { 119 export function getYydjList(data) {
120 return request({ 120 return request({
121 url: '/service-bdcdj/zhcx/djbcx/getYydjList', 121 url: '/service-bdcdj/rest/zhcx/djbcx/getYydjList',
122 method: 'post', 122 method: 'post',
123 data 123 data
124 }) 124 })
...@@ -126,7 +126,7 @@ export function getYydjList(data) { ...@@ -126,7 +126,7 @@ export function getYydjList(data) {
126 // 获取查封登记 126 // 获取查封登记
127 export function getCfdjList(data) { 127 export function getCfdjList(data) {
128 return request({ 128 return request({
129 url: '/service-bdcdj/zhcx/djbcx/getCfdjList', 129 url: '/service-bdcdj/rest/zhcx/djbcx/getCfdjList',
130 method: 'post', 130 method: 'post',
131 data 131 data
132 }) 132 })
...@@ -134,7 +134,7 @@ export function getCfdjList(data) { ...@@ -134,7 +134,7 @@ export function getCfdjList(data) {
134 // 进度查询列表 134 // 进度查询列表
135 export function getJdcxBysearch(data) { 135 export function getJdcxBysearch(data) {
136 return request({ 136 return request({
137 url: '/service-bdcdj/zhcx/search/getJdcxBysearch', 137 url: '/service-bdcdj/rest/zhcx/search/getJdcxBysearch',
138 method: 'post', 138 method: 'post',
139 data 139 data
140 }) 140 })
......
...@@ -4,7 +4,7 @@ import request from '@/utils/request' ...@@ -4,7 +4,7 @@ import request from '@/utils/request'
4 */ 4 */
5 export function getSysSerialSingle (params) { 5 export function getSysSerialSingle (params) {
6 return request({ 6 return request({
7 url: '/service-bdcdj/system/sysSerial/getSysSerialSingle', 7 url: '/service-bdcdj/rest/system/sysSerial/getSysSerialSingle',
8 method: 'get', 8 method: 'get',
9 params: params 9 params: params
10 }) 10 })
...@@ -14,7 +14,7 @@ export function getSysSerialSingle (params) { ...@@ -14,7 +14,7 @@ export function getSysSerialSingle (params) {
14 */ 14 */
15 export function getZsglrkList (data) { 15 export function getZsglrkList (data) {
16 return request({ 16 return request({
17 url: '/service-bdcdj/sys/zsgl/getZsglrkList', 17 url: '/service-bdcdj/rest/sys/zsgl/getZsglrkList',
18 method: 'post', 18 method: 'post',
19 data, 19 data,
20 showLoading: true 20 showLoading: true
...@@ -25,7 +25,7 @@ export function getZsglrkList (data) { ...@@ -25,7 +25,7 @@ export function getZsglrkList (data) {
25 */ 25 */
26 export function zsrk (data) { 26 export function zsrk (data) {
27 return request({ 27 return request({
28 url: '/service-bdcdj/sys/zsgl/zsrk', 28 url: '/service-bdcdj/rest/sys/zsgl/zsrk',
29 method: 'post', 29 method: 'post',
30 data, 30 data,
31 showLoading: true, 31 showLoading: true,
...@@ -37,7 +37,7 @@ export function zsrk (data) { ...@@ -37,7 +37,7 @@ export function zsrk (data) {
37 */ 37 */
38 export function removeZsgl (params) { 38 export function removeZsgl (params) {
39 return request({ 39 return request({
40 url: '/service-bdcdj/sys/zsgl/removeZsgl', 40 url: '/service-bdcdj/rest/sys/zsgl/removeZsgl',
41 method: 'get', 41 method: 'get',
42 params: params 42 params: params
43 }) 43 })
...@@ -47,7 +47,7 @@ export function removeZsgl (params) { ...@@ -47,7 +47,7 @@ export function removeZsgl (params) {
47 */ 47 */
48 export function verifyZsrk (params) { 48 export function verifyZsrk (params) {
49 return request({ 49 return request({
50 url: '/service-bdcdj/sys/zsgl/verifyZsrk', 50 url: '/service-bdcdj/rest/sys/zsgl/verifyZsrk',
51 method: 'get', 51 method: 'get',
52 params: params 52 params: params
53 }) 53 })
...@@ -57,7 +57,7 @@ export function verifyZsrk (params) { ...@@ -57,7 +57,7 @@ export function verifyZsrk (params) {
57 */ 57 */
58 export function getZsglffList (data) { 58 export function getZsglffList (data) {
59 return request({ 59 return request({
60 url: '/service-bdcdj/sys/zsgl/getZsglffList', 60 url: '/service-bdcdj/rest/sys/zsgl/getZsglffList',
61 method: 'post', 61 method: 'post',
62 data, 62 data,
63 showLoading: true 63 showLoading: true
...@@ -68,7 +68,7 @@ export function getZsglffList (data) { ...@@ -68,7 +68,7 @@ export function getZsglffList (data) {
68 */ 68 */
69 export function getZsStartNo () { 69 export function getZsStartNo () {
70 return request({ 70 return request({
71 url: '/service-bdcdj/sys/zsgl/getZsStartNo', 71 url: '/service-bdcdj/rest/sys/zsgl/getZsStartNo',
72 method: 'get' 72 method: 'get'
73 }) 73 })
74 } 74 }
...@@ -77,7 +77,7 @@ export function getZsStartNo () { ...@@ -77,7 +77,7 @@ export function getZsStartNo () {
77 */ 77 */
78 export function getZsEndNo (params) { 78 export function getZsEndNo (params) {
79 return request({ 79 return request({
80 url: '/service-bdcdj/sys/zsgl/getZsEndNo', 80 url: '/service-bdcdj/rest/sys/zsgl/getZsEndNo',
81 method: 'get', 81 method: 'get',
82 params 82 params
83 }) 83 })
...@@ -87,7 +87,7 @@ export function getZsEndNo (params) { ...@@ -87,7 +87,7 @@ export function getZsEndNo (params) {
87 */ 87 */
88 export function zsff (data) { 88 export function zsff (data) {
89 return request({ 89 return request({
90 url: '/service-bdcdj/sys/zsgl/zsff', 90 url: '/service-bdcdj/rest/sys/zsgl/zsff',
91 method: 'post', 91 method: 'post',
92 data, 92 data,
93 showLoading: true, 93 showLoading: true,
...@@ -99,7 +99,7 @@ export function zsff (data) { ...@@ -99,7 +99,7 @@ export function zsff (data) {
99 */ 99 */
100 export function confirmZsff (params) { 100 export function confirmZsff (params) {
101 return request({ 101 return request({
102 url: '/service-bdcdj/sys/zsgl/confirmZsff', 102 url: '/service-bdcdj/rest/sys/zsgl/confirmZsff',
103 method: 'get', 103 method: 'get',
104 params: params 104 params: params
105 }) 105 })
...@@ -109,7 +109,7 @@ export function confirmZsff (params) { ...@@ -109,7 +109,7 @@ export function confirmZsff (params) {
109 */ 109 */
110 export function getZssyqkList (data) { 110 export function getZssyqkList (data) {
111 return request({ 111 return request({
112 url: '/service-bdcdj/sys/zsgl/getZssyqkList', 112 url: '/service-bdcdj/rest/sys/zsgl/getZssyqkList',
113 method: 'post', 113 method: 'post',
114 data, 114 data,
115 showLoading: true 115 showLoading: true
...@@ -120,7 +120,7 @@ export function getZssyqkList (data) { ...@@ -120,7 +120,7 @@ export function getZssyqkList (data) {
120 */ 120 */
121 export function getZssyqkInfo (params) { 121 export function getZssyqkInfo (params) {
122 return request({ 122 return request({
123 url: '/service-bdcdj/sys/zsgl/getZssyqkInfo', 123 url: '/service-bdcdj/rest/sys/zsgl/getZssyqkInfo',
124 method: 'get', 124 method: 'get',
125 params 125 params
126 }) 126 })
...@@ -130,7 +130,7 @@ export function getZssyqkInfo (params) { ...@@ -130,7 +130,7 @@ export function getZssyqkInfo (params) {
130 */ 130 */
131 export function getZsglInfo (params) { 131 export function getZsglInfo (params) {
132 return request({ 132 return request({
133 url: '/service-bdcdj/sys/zsgl/getZsglInfo', 133 url: '/service-bdcdj/rest/sys/zsgl/getZsglInfo',
134 method: 'get', 134 method: 'get',
135 params 135 params
136 }) 136 })
......