111
Showing
1 changed file
with
8 additions
and
8 deletions
1 | import request from '@/utils/request' | 1 | import request from '@/utils/request' |
2 | 2 | import SERVER from './config' | |
3 | 3 | ||
4 | /* | 4 | /* |
5 | 业务办理-选择单元-根据条件进行列表查询-国有建设用地使用权、房屋所有权(首次登记) | 5 | 业务办理-选择单元-根据条件进行列表查询-国有建设用地使用权、房屋所有权(首次登记) |
6 | */ | 6 | */ |
7 | export function selectScBdcdy(data) { | 7 | export function selectScBdcdy(data) { |
8 | return request({ | 8 | return request({ |
9 | url: '/ywbl/ywsq/selectScBdcdy', | 9 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectScBdcdy', |
10 | method: 'post', | 10 | method: 'post', |
11 | data, | 11 | data, |
12 | showLoading: true | 12 | showLoading: true |
... | @@ -18,7 +18,7 @@ export function selectScBdcdy(data) { | ... | @@ -18,7 +18,7 @@ export function selectScBdcdy(data) { |
18 | */ | 18 | */ |
19 | export function selectJsydQlxx(data) { | 19 | export function selectJsydQlxx(data) { |
20 | return request({ | 20 | return request({ |
21 | url: '/ywbl/ywsq/selectJsydQlxx', | 21 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectJsydQlxx', |
22 | method: 'post', | 22 | method: 'post', |
23 | data, | 23 | data, |
24 | showLoading: true | 24 | showLoading: true |
... | @@ -42,7 +42,7 @@ export function selectJsydQlxx(data) { | ... | @@ -42,7 +42,7 @@ export function selectJsydQlxx(data) { |
42 | */ | 42 | */ |
43 | export function selectQlxx(data) { | 43 | export function selectQlxx(data) { |
44 | return request({ | 44 | return request({ |
45 | url: '/ywbl/ywsq/selectQlxx', | 45 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectQlxx', |
46 | method: 'post', | 46 | method: 'post', |
47 | data, | 47 | data, |
48 | showLoading: true | 48 | showLoading: true |
... | @@ -53,7 +53,7 @@ export function selectQlxx(data) { | ... | @@ -53,7 +53,7 @@ export function selectQlxx(data) { |
53 | */ | 53 | */ |
54 | export function selectDiyaq(data) { | 54 | export function selectDiyaq(data) { |
55 | return request({ | 55 | return request({ |
56 | url: '/ywbl/ywsq/selectDiyaq', | 56 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectDiyaq', |
57 | method: 'post', | 57 | method: 'post', |
58 | data, | 58 | data, |
59 | showLoading: true | 59 | showLoading: true |
... | @@ -64,7 +64,7 @@ export function selectDiyaq(data) { | ... | @@ -64,7 +64,7 @@ export function selectDiyaq(data) { |
64 | */ | 64 | */ |
65 | export function selectCfdj(data) { | 65 | export function selectCfdj(data) { |
66 | return request({ | 66 | return request({ |
67 | url: '/ywbl/ywsq/selectCfdj', | 67 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectCfdj', |
68 | method: 'post', | 68 | method: 'post', |
69 | data, | 69 | data, |
70 | showLoading: true | 70 | showLoading: true |
... | @@ -76,14 +76,14 @@ export function selectCfdj(data) { | ... | @@ -76,14 +76,14 @@ export function selectCfdj(data) { |
76 | */ | 76 | */ |
77 | export function deleteCollectBiz(bsmSqyw) { | 77 | export function deleteCollectBiz(bsmSqyw) { |
78 | return request({ | 78 | return request({ |
79 | url: '/ywbl/BusinessApply/deleteCollectBiz?bsmSqyw=' + bsmSqyw, | 79 | url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/deleteCollectBiz?bsmSqyw=' + bsmSqyw, |
80 | method: 'post' | 80 | method: 'post' |
81 | }) | 81 | }) |
82 | } | 82 | } |
83 | // 国有建设用地使用权/房屋使用权 -选择不动产单元 | 83 | // 国有建设用地使用权/房屋使用权 -选择不动产单元 |
84 | export function choiceBdcdy(data) { | 84 | export function choiceBdcdy(data) { |
85 | return request({ | 85 | return request({ |
86 | url: 'business/workFlow/choiceBdcdy', | 86 | url: SERVER.SERVERAPI + '/rest/business/workFlow/choiceBdcdy', |
87 | method: 'post', | 87 | method: 'post', |
88 | data, | 88 | data, |
89 | showLoading: true | 89 | showLoading: true | ... | ... |
-
Please register or sign in to post a comment