52d69ef5 by 任超

style:api

1 parent 616eb097
...@@ -5,4 +5,4 @@ NODE_ENV=development ...@@ -5,4 +5,4 @@ NODE_ENV=development
5 VUE_APP_BASE_API = '/api' 5 VUE_APP_BASE_API = '/api'
6 6
7 # 开发环境 7 # 开发环境
8 VUE_APP_API_BASE_URL = 'http://192.168.2.38:8008/service-bdcdj1' 8 VUE_APP_API_BASE_URL = 'http://192.168.2.38:8008'
......
1 import request from '@/utils/request' 1 import request from '@/utils/request'
2 import SERVER from './config'
2 3
3 // 初始化内容 4 // 初始化内容
4 export function Init (data) { 5 export function Init (data) {
5 let apiUrl = ""; 6 let apiUrl = "";
6 switch (data.get("djlx")) { 7 switch (data.get("djlx")) {
7 case "300": 8 case "300":
8 apiUrl = "/ywbl/cfdj/xfInit"; 9 apiUrl = SERVER.SERVERAPI + "/ywbl/cfdj/xfInit";
9 break; 10 break;
10 case "400": 11 case "400":
11 apiUrl = "/ywbl/cfdj/jfInit"; 12 apiUrl = SERVER.SERVERAPI + "/ywbl/cfdj/jfInit";
12 break; 13 break;
13 case "800": 14 case "800":
14 apiUrl = "/ywbl/cfdj/cfInit"; 15 apiUrl = SERVER.SERVERAPI + "/ywbl/cfdj/cfInit";
15 break; 16 break;
16 } 17 }
17 return request({ 18 return request({
...@@ -25,13 +26,13 @@ export function BatchInit (data) { ...@@ -25,13 +26,13 @@ export function BatchInit (data) {
25 let apiUrl = ""; 26 let apiUrl = "";
26 switch (data.get("djlx")) { 27 switch (data.get("djlx")) {
27 case "300": 28 case "300":
28 apiUrl = "/ywbl/cfdj/xfBatchInit"; 29 apiUrl = SERVER.SERVERAPI + "/ywbl/cfdj/xfBatchInit";
29 break; 30 break;
30 case "400": 31 case "400":
31 apiUrl = "/ywbl/cfdj/jfBatchInit"; 32 apiUrl = SERVER.SERVERAPI + "/ywbl/cfdj/jfBatchInit";
32 break; 33 break;
33 case "800": 34 case "800":
34 apiUrl = "/ywbl/cfdj/cfBatchInit"; 35 apiUrl = SERVER.SERVERAPI + "/ywbl/cfdj/cfBatchInit";
35 break; 36 break;
36 } 37 }
37 return request({ 38 return request({
...@@ -44,7 +45,7 @@ export function BatchInit (data) { ...@@ -44,7 +45,7 @@ export function BatchInit (data) {
44 // 数据保存 45 // 数据保存
45 export function saveData (data) { 46 export function saveData (data) {
46 return request({ 47 return request({
47 url: '/rest/ywbl/cfdj/saveData', 48 url: SERVER.SERVERAPI + '/rest/ywbl/cfdj/saveData',
48 method: 'post', 49 method: 'post',
49 data 50 data
50 }) 51 })
...@@ -53,7 +54,7 @@ export function saveData (data) { ...@@ -53,7 +54,7 @@ export function saveData (data) {
53 // 批量数据保存 54 // 批量数据保存
54 export function batchSaveData (data) { 55 export function batchSaveData (data) {
55 return request({ 56 return request({
56 url: '/rest/ywbl/cfdj/batchSaveData', 57 url: SERVER.SERVERAPI + '/rest/ywbl/cfdj/batchSaveData',
57 method: 'post', 58 method: 'post',
58 data 59 data
59 }) 60 })
......
1 export default {
2 SERVERAPI: '/service-bdcdj2'
3 }
...\ No newline at end of file ...\ No newline at end of file
1 import request from '@/utils/request' 1 import request from '@/utils/request'
2 import SERVER from './config'
2 /* 3 /*
3 获取全部字典数据 4 获取全部字典数据
4 */ 5 */
5 export function getAllDict () { 6 export function getAllDict () {
6 return request({ 7 return request({
7 url: '/rest/sys/dict/getAllDict', 8 url: SERVER.SERVERAPI + '/rest/sys/dict/getAllDict',
8 method: 'post' 9 method: 'post'
9 }) 10 })
10 } 11 }
11 export function getQlxxDictList (data) { 12 export function getQlxxDictList (data) {
12 return request({ 13 return request({
13 url: '/rest/sys/dict/getQlxxDictList', 14 url: SERVER.SERVERAPI + '/rest/sys/dict/getQlxxDictList',
14 method: 'post', 15 method: 'post',
15 data, 16 data,
16 showLoading: true 17 showLoading: true
...@@ -21,7 +22,7 @@ export function getQlxxDictList (data) { ...@@ -21,7 +22,7 @@ export function getQlxxDictList (data) {
21 */ 22 */
22 export function getChildDictList (bsmDict) { 23 export function getChildDictList (bsmDict) {
23 return request({ 24 return request({
24 url: '/rest/sys/dict/getChildDictList', 25 url: SERVER.SERVERAPI + '/rest/sys/dict/getChildDictList',
25 method: 'get', 26 method: 'get',
26 params: { 27 params: {
27 bsmDict: bsmDict 28 bsmDict: bsmDict
...@@ -33,7 +34,7 @@ export function getChildDictList (bsmDict) { ...@@ -33,7 +34,7 @@ export function getChildDictList (bsmDict) {
33 */ 34 */
34 export function editDictNode (data) { 35 export function editDictNode (data) {
35 return request({ 36 return request({
36 url: '/rest/sys/dict/editDictNode', 37 url: SERVER.SERVERAPI + '/rest/sys/dict/editDictNode',
37 method: 'post', 38 method: 'post',
38 data, 39 data,
39 showLoading: true, 40 showLoading: true,
......
1 import request from '@/utils/request' 1 import request from '@/utils/request'
2 2 import SERVER from './config'
3 // 初始化内容 3 // 初始化内容
4 export function Init (data) { 4 export function Init (data) {
5 return request({ 5 return request({
6 url: '/rest/ywbl/dyaq/Init', 6 url: SERVER.SERVERAPI + '/rest/ywbl/dyaq/Init',
7 method: 'post', 7 method: 'post',
8 data 8 data
9 }) 9 })
......
1 import SERVER from './config'
1 class fileController { 2 class fileController {
2 uploadUrl () { 3 uploadUrl () {
3 return process.env.VUE_APP_BASE_API + '/file/upload' 4 return process.env.VUE_APP_BASE_API + SERVER.SERVERAPI + '/file/upload'
4 } 5 }
5 } 6 }
6 export default new fileController() 7 export default new fileController()
......
1 import request from '@/utils/request' 1 import request from '@/utils/request'
2 2 import SERVER from './config'
3
4 // 转出 3 // 转出
5 export function completeTask (data) { 4 export function completeTask (data) {
6 return request({ 5 return request({
7 url: '/rest/business/workFlow/completeTask', 6 url: SERVER.SERVERAPI + '/rest/business/workFlow/completeTask',
8 method: 'post', 7 method: 'post',
9 data 8 data
10 }) 9 })
...@@ -12,7 +11,7 @@ export function completeTask (data) { ...@@ -12,7 +11,7 @@ export function completeTask (data) {
12 // 回退表格数据 11 // 回退表格数据
13 export function getTaskBackNode (params) { 12 export function getTaskBackNode (params) {
14 return request({ 13 return request({
15 url: '/rest/business/workFlow/getTaskBackNode', 14 url: SERVER.SERVERAPI + '/rest/business/workFlow/getTaskBackNode',
16 method: 'get', 15 method: 'get',
17 params: params 16 params: params
18 }) 17 })
...@@ -20,7 +19,7 @@ export function getTaskBackNode (params) { ...@@ -20,7 +19,7 @@ export function getTaskBackNode (params) {
20 // 退回确认接口 19 // 退回确认接口
21 export function sendBackTask (data) { 20 export function sendBackTask (data) {
22 return request({ 21 return request({
23 url: '/rest/business/workFlow/sendBackTask', 22 url: SERVER.SERVERAPI + '/rest/business/workFlow/sendBackTask',
24 method: 'post', 23 method: 'post',
25 data 24 data
26 }) 25 })
...@@ -28,7 +27,7 @@ export function sendBackTask (data) { ...@@ -28,7 +27,7 @@ export function sendBackTask (data) {
28 // 获取左侧列表 27 // 获取左侧列表
29 export function leftMenu (data) { 28 export function leftMenu (data) {
30 return request({ 29 return request({
31 url: '/rest/business/workFlow/leftMenu', 30 url: SERVER.SERVERAPI + '/rest/business/workFlow/leftMenu',
32 method: 'post', 31 method: 'post',
33 data 32 data
34 }) 33 })
...@@ -36,7 +35,7 @@ export function leftMenu (data) { ...@@ -36,7 +35,7 @@ export function leftMenu (data) {
36 // 材料目录明细初始化 35 // 材料目录明细初始化
37 export function clmlInit (data) { 36 export function clmlInit (data) {
38 return request({ 37 return request({
39 url: '/rest/zhcx/clml/Init', 38 url: SERVER.SERVERAPI + '/rest/zhcx/clml/Init',
40 method: 'post', 39 method: 'post',
41 data 40 data
42 }) 41 })
...@@ -45,7 +44,7 @@ export function clmlInit (data) { ...@@ -45,7 +44,7 @@ export function clmlInit (data) {
45 // 材料目录明细移动 44 // 材料目录明细移动
46 export function move (data) { 45 export function move (data) {
47 return request({ 46 return request({
48 url: '/rest/zhcx/clml/move', 47 url: SERVER.SERVERAPI + '/rest/zhcx/clml/move',
49 method: 'post', 48 method: 'post',
50 data 49 data
51 }) 50 })
...@@ -54,7 +53,7 @@ export function move (data) { ...@@ -54,7 +53,7 @@ export function move (data) {
54 // 材料目录明细保存 53 // 材料目录明细保存
55 export function save (data) { 54 export function save (data) {
56 return request({ 55 return request({
57 url: '/rest/zhcx/clml/save', 56 url: SERVER.SERVERAPI + '/rest/zhcx/clml/save',
58 method: 'post', 57 method: 'post',
59 data 58 data
60 }) 59 })
...@@ -63,7 +62,7 @@ export function save (data) { ...@@ -63,7 +62,7 @@ export function save (data) {
63 // 材料目录批量删除 62 // 材料目录批量删除
64 export function clmlDelete (params) { 63 export function clmlDelete (params) {
65 return request({ 64 return request({
66 url: '/rest/zhcx/clml/delete', 65 url: SERVER.SERVERAPI + '/rest/zhcx/clml/delete',
67 method: 'delete', 66 method: 'delete',
68 params: params 67 params: params
69 }) 68 })
...@@ -72,7 +71,7 @@ export function clmlDelete (params) { ...@@ -72,7 +71,7 @@ export function clmlDelete (params) {
72 // 获取下一环节信息 71 // 获取下一环节信息
73 export function getNextLinkInfo (params) { 72 export function getNextLinkInfo (params) {
74 return request({ 73 return request({
75 url: '/rest/business/workFlow/getNextLinkInfo', 74 url: SERVER.SERVERAPI + '/rest/business/workFlow/getNextLinkInfo',
76 method: 'get', 75 method: 'get',
77 params: params 76 params: params
78 }); 77 });
...@@ -81,7 +80,7 @@ export function getNextLinkInfo (params) { ...@@ -81,7 +80,7 @@ export function getNextLinkInfo (params) {
81 //获取单元对应的环节表单信息 80 //获取单元对应的环节表单信息
82 export function getStepFormInfo (data) { 81 export function getStepFormInfo (data) {
83 return request({ 82 return request({
84 url: '/rest/business/workFlow/getStepFormInfo', 83 url: SERVER.SERVERAPI + '/rest/business/workFlow/getStepFormInfo',
85 method: 'post', 84 method: 'post',
86 data 85 data
87 }); 86 });
...@@ -89,7 +88,7 @@ export function getStepFormInfo (data) { ...@@ -89,7 +88,7 @@ export function getStepFormInfo (data) {
89 // 环节扩展信息 88 // 环节扩展信息
90 export function stepExpandInfo (data) { 89 export function stepExpandInfo (data) {
91 return request({ 90 return request({
92 url: '/rest/business/workFlow/stepExpandInfo', 91 url: SERVER.SERVERAPI + '/rest/business/workFlow/stepExpandInfo',
93 method: 'post', 92 method: 'post',
94 data 93 data
95 }) 94 })
...@@ -98,7 +97,7 @@ export function stepExpandInfo (data) { ...@@ -98,7 +97,7 @@ export function stepExpandInfo (data) {
98 // 获取审批意见 97 // 获取审批意见
99 export function getSpyjList (data) { 98 export function getSpyjList (data) {
100 return request({ 99 return request({
101 url: '/rest/business/workFlow/getSpyjList', 100 url: SERVER.SERVERAPI + '/rest/business/workFlow/getSpyjList',
102 method: 'post', 101 method: 'post',
103 data 102 data
104 }) 103 })
...@@ -107,7 +106,7 @@ export function getSpyjList (data) { ...@@ -107,7 +106,7 @@ export function getSpyjList (data) {
107 // 保存审批意见 106 // 保存审批意见
108 export function saveSpyj (data) { 107 export function saveSpyj (data) {
109 return request({ 108 return request({
110 url: '/rest/business/workFlow/saveSpyj', 109 url: SERVER.SERVERAPI + '/rest/business/workFlow/saveSpyj',
111 method: 'post', 110 method: 'post',
112 data 111 data
113 }) 112 })
...@@ -115,7 +114,7 @@ export function saveSpyj (data) { ...@@ -115,7 +114,7 @@ export function saveSpyj (data) {
115 // 根据受理申请保存审批意见 114 // 根据受理申请保存审批意见
116 export function saveSpyjBySlsq (data) { 115 export function saveSpyjBySlsq (data) {
117 return request({ 116 return request({
118 url: '/rest/business/workFlow/saveSpyjBySlsq', 117 url: SERVER.SERVERAPI + '/rest/business/workFlow/saveSpyjBySlsq',
119 method: 'post', 118 method: 'post',
120 data 119 data
121 }) 120 })
...@@ -123,7 +122,7 @@ export function saveSpyjBySlsq (data) { ...@@ -123,7 +122,7 @@ export function saveSpyjBySlsq (data) {
123 // 登簿接口 122 // 登簿接口
124 export function record (data) { 123 export function record (data) {
125 return request({ 124 return request({
126 url: '/rest/business/workFlow/record', 125 url: SERVER.SERVERAPI + '/rest/business/workFlow/record',
127 method: 'post', 126 method: 'post',
128 data 127 data
129 }) 128 })
...@@ -131,7 +130,7 @@ export function record (data) { ...@@ -131,7 +130,7 @@ export function record (data) {
131 // 获取不动产权证列表 130 // 获取不动产权证列表
132 export function getBdcqzList (params) { 131 export function getBdcqzList (params) {
133 return request({ 132 return request({
134 url: '/rest/business/workFlow/getBdcqzList', 133 url: SERVER.SERVERAPI + '/rest/business/workFlow/getBdcqzList',
135 method: 'get', 134 method: 'get',
136 params: params 135 params: params
137 }) 136 })
...@@ -139,7 +138,7 @@ export function getBdcqzList (params) { ...@@ -139,7 +138,7 @@ export function getBdcqzList (params) {
139 // 获取印刷序列号 138 // 获取印刷序列号
140 export function readYsxlh (params) { 139 export function readYsxlh (params) {
141 return request({ 140 return request({
142 url: '/rest/business/workFlow/readYsxlh', 141 url: SERVER.SERVERAPI + '/rest/business/workFlow/readYsxlh',
143 method: 'get', 142 method: 'get',
144 params: params 143 params: params
145 }) 144 })
...@@ -147,7 +146,7 @@ export function readYsxlh (params) { ...@@ -147,7 +146,7 @@ export function readYsxlh (params) {
147 // 缮证 146 // 缮证
148 export function certificate (data) { 147 export function certificate (data) {
149 return request({ 148 return request({
150 url: '/rest/business/workFlow/certificate', 149 url: SERVER.SERVERAPI + '/rest/business/workFlow/certificate',
151 method: 'post', 150 method: 'post',
152 data 151 data
153 }) 152 })
...@@ -155,7 +154,7 @@ export function certificate (data) { ...@@ -155,7 +154,7 @@ export function certificate (data) {
155 // 作废缮证信息 154 // 作废缮证信息
156 export function invalidCertificate (data) { 155 export function invalidCertificate (data) {
157 return request({ 156 return request({
158 url: '/rest/business/workFlow/invalidCertificate', 157 url: SERVER.SERVERAPI + '/rest/business/workFlow/invalidCertificate',
159 method: 'post', 158 method: 'post',
160 data 159 data
161 }) 160 })
...@@ -163,7 +162,7 @@ export function invalidCertificate (data) { ...@@ -163,7 +162,7 @@ export function invalidCertificate (data) {
163 // 缮证列表 162 // 缮证列表
164 export function getCertificateList (data) { 163 export function getCertificateList (data) {
165 return request({ 164 return request({
166 url: '/rest/business/workFlow/getCertificateList', 165 url: SERVER.SERVERAPI + '/rest/business/workFlow/getCertificateList',
167 method: 'post', 166 method: 'post',
168 data 167 data
169 }) 168 })
...@@ -171,7 +170,7 @@ export function getCertificateList (data) { ...@@ -171,7 +170,7 @@ export function getCertificateList (data) {
171 // 发证 170 // 发证
172 export function issueCertificate (data) { 171 export function issueCertificate (data) {
173 return request({ 172 return request({
174 url: '/rest/business/workFlow/issueCertificate', 173 url: SERVER.SERVERAPI + '/rest/business/workFlow/issueCertificate',
175 method: 'post', 174 method: 'post',
176 data 175 data
177 }) 176 })
...@@ -179,7 +178,7 @@ export function issueCertificate (data) { ...@@ -179,7 +178,7 @@ export function issueCertificate (data) {
179 // 获取受理申请下全部不动产权证 178 // 获取受理申请下全部不动产权证
180 export function getSlsqBdcqzList (params) { 179 export function getSlsqBdcqzList (params) {
181 return request({ 180 return request({
182 url: '/rest/business/workFlow/getSlsqBdcqzList', 181 url: SERVER.SERVERAPI + '/rest/business/workFlow/getSlsqBdcqzList',
183 method: 'get', 182 method: 'get',
184 params 183 params
185 }) 184 })
...@@ -187,7 +186,7 @@ export function getSlsqBdcqzList (params) { ...@@ -187,7 +186,7 @@ export function getSlsqBdcqzList (params) {
187 // 终止任务 186 // 终止任务
188 export function stopTask (data) { 187 export function stopTask (data) {
189 return request({ 188 return request({
190 url: '/rest/business/workFlow/stopTask', 189 url: SERVER.SERVERAPI + '/rest/business/workFlow/stopTask',
191 method: 'post', 190 method: 'post',
192 data 191 data
193 }) 192 })
......
1 import request from '@/utils/request' 1 import request from '@/utils/request'
2 2 import SERVER from './config'
3 // 初始化内容 3 // 初始化内容
4 export function Init (data) { 4 export function Init (data) {
5 let apiUrl = ""; 5 let apiUrl = "";
...@@ -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: '/rest/ywbl/fdcq2lr/saveData', 38 url: SERVER.SERVERAPI + '/rest/ywbl/fdcq2lr/saveData',
39 method: 'post', 39 method: 'post',
40 data 40 data
41 }) 41 })
......
1 import request from '@/utils/request' 1 import request from '@/utils/request'
2 2 import SERVER from './config'
3 3
4 // 初始化内容 4 // 初始化内容
5 export function Init (data) { 5 export function Init (data) {
...@@ -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: '/rest/ywbl/jsydsyqlr/saveData', 39 url: SERVER.SERVERAPI + '/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: '/rest/ywbl/tdsyqlr/Init', 48 // url: SERVER.SERVERAPI +'/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: '/rest/ywbl/jsydsyqlr/fristReg', 57 url: SERVER.SERVERAPI + '/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: '/rest/ywbl/jsydsyqlr/transferReg', 66 url: SERVER.SERVERAPI + '/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: '/rest/ywbl/jsydsyqlr/changeReg', 76 url: SERVER.SERVERAPI + '/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: '/rest/ywbl/jsydsyqlr/logoutReg', 86 url: SERVER.SERVERAPI + '/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: '/rest/business/workFlow/getWorkFlowImage', 94 url: SERVER.SERVERAPI + '/rest/business/workFlow/getWorkFlowImage',
95 method: 'get', 95 method: 'get',
96 params: { 96 params: {
97 bsmSlsq: bsmSlsq, 97 bsmSlsq: bsmSlsq,
......
1 import request from '@/utils/request' 1 import request from '@/utils/request'
2 import SERVER from './config'
2 // 根据条件进行列表查询 3 // 根据条件进行列表查询
3 export function getJtfcPage (data) { 4 export function getJtfcPage (data) {
4 return request({ 5 return request({
5 url: '/rest/sqcx/jtfc/getJtfcPage', 6 url: SERVER.SERVERAPI + '/rest/sqcx/jtfc/getJtfcPage',
6 method: 'post', 7 method: 'post',
7 data 8 data
8 }) 9 })
...@@ -10,7 +11,7 @@ export function getJtfcPage (data) { ...@@ -10,7 +11,7 @@ export function getJtfcPage (data) {
10 // 新增申请查询家庭房产信息 11 // 新增申请查询家庭房产信息
11 export function addJtfcCxjgXx (data) { 12 export function addJtfcCxjgXx (data) {
12 return request({ 13 return request({
13 url: '/rest/sqcx/jtfc/addJtfcCxjgXx', 14 url: SERVER.SERVERAPI + '/rest/sqcx/jtfc/addJtfcCxjgXx',
14 method: 'post', 15 method: 'post',
15 data, 16 data,
16 showLoading: true, 17 showLoading: true,
......
1 import request from '@/utils/request' 1 import request from '@/utils/request'
2 import SERVER from './config'
2 /* 3 /*
3 楼盘查询 4 楼盘查询
4 */ 5 */
5
6 // 根据条件进行列表查询 6 // 根据条件进行列表查询
7 export function getLpZrz (data) { 7 export function getLpZrz (data) {
8 return request({ 8 return request({
9 url: '/rest/zhcx/lpcx/getLpZrz', 9 url: SERVER.SERVERAPI + '/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: '/rest/zhcx/lpcx/getLpb/', 18 url: SERVER.SERVERAPI + '/rest/zhcx/lpcx/getLpb/',
19 method: 'get', 19 method: 'get',
20 params 20 params
21 }) 21 })
......
1 import request from '@/utils/request' 1 import request from '@/utils/request'
2 import SERVER from './config'
2 /* 3 /*
3 登记簿详情页 4 登记簿详情页
4 */ 5 */
5
6 // 获取登记封面 6 // 获取登记封面
7 export function getDjbfm (data) { 7 export function getDjbfm (data) {
8 return request({ 8 return request({
9 url: '/rest/djbDetail/getDjbFm', 9 url: SERVER.SERVERAPI + '/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: '/rest/djbDetail/getBdcqldjmlByBdcdyid', 18 url: SERVER.SERVERAPI + '/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: '/rest/djbDetail/getZdjjxxBybdcdyid', 27 url: SERVER.SERVERAPI + '/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: '/rest/djbDetail/getZdjjxxBySLdy', 36 url: SERVER.SERVERAPI + '/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: '/rest/djbDetail/getBdcqljqtsx', 45 url: SERVER.SERVERAPI + '/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: '/rest/djbDetail/getJsydsyqList', 54 url: SERVER.SERVERAPI + '/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: '/rest/djbDetail/getFdcq2List', 63 url: SERVER.SERVERAPI + '/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: '/rest/djbDetail/getDiyaqList', 72 url: SERVER.SERVERAPI + '/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: '/rest/djbDetail/getDiyiqList', 80 url: SERVER.SERVERAPI + '/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: '/rest/djbDetail/getYgdjList', 88 url: SERVER.SERVERAPI + '/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: '/rest/djbDetail/getYydjList', 96 url: SERVER.SERVERAPI + '/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: '/rest/djbDetail/getCfdjList', 104 url: SERVER.SERVERAPI + '/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: '/rest/djbDetail/getFdcqLSInfo', 112 url: SERVER.SERVERAPI + '/rest/djbDetail/getFdcqLSInfo',
113 method: 'post', 113 method: 'post',
114 data 114 data
115 }) 115 })
......
1 import request from '@/utils/request' 1 import request from '@/utils/request'
2 import SERVER from './config'
2 // 获取申请查询记录详细信息 3 // 获取申请查询记录详细信息
3 export function getJtfcInfo (params) { 4 export function getJtfcInfo (params) {
4 return request({ 5 return request({
5 url: '/rest/sqcx/jtfc/getJtfcInfo/', 6 url: SERVER.SERVERAPI + '/rest/sqcx/jtfc/getJtfcInfo/',
6 method: 'get', 7 method: 'get',
7 params 8 params
8 }) 9 })
......
1 import request from '@/utils/request' 1 import request from '@/utils/request'
2 import SERVER from './config'
2 /* 3 /*
3 系统管理 4 系统管理
4 申请业务规则API-根据条件进行列表查询 5 申请业务规则API-根据条件进行列表查询
5 */ 6 */
6 export function getSysSqdjywBysearch (data) { 7 export function getSysSqdjywBysearch (data) {
7 return request({ 8 return request({
8 url: '/rest/system/sysSqdjyw/getSysSqdjywBysearch', 9 url: SERVER.SERVERAPI + '/rest/system/sysSqdjyw/getSysSqdjywBysearch',
9 method: 'post', 10 method: 'post',
10 data, 11 data,
11 showLoading: true 12 showLoading: true
...@@ -16,7 +17,7 @@ export function getSysSqdjywBysearch (data) { ...@@ -16,7 +17,7 @@ export function getSysSqdjywBysearch (data) {
16 */ 17 */
17 export function getDjlxInfo (id) { 18 export function getDjlxInfo (id) {
18 return request({ 19 return request({
19 url: '/rest/system/sysSqdjyw/getDjlxInfo?parentid=' + id, 20 url: SERVER.SERVERAPI + '/rest/system/sysSqdjyw/getDjlxInfo?parentid=' + id,
20 method: 'post' 21 method: 'post'
21 }) 22 })
22 } 23 }
...@@ -26,7 +27,7 @@ export function getDjlxInfo (id) { ...@@ -26,7 +27,7 @@ export function getDjlxInfo (id) {
26 */ 27 */
27 export function getSqdjywDetail (bsmSqyw) { 28 export function getSqdjywDetail (bsmSqyw) {
28 return request({ 29 return request({
29 url: '/rest/system/sysSqdjyw/getSqdjywDetail?bsmSqyw=' + bsmSqyw, 30 url: SERVER.SERVERAPI + '/rest/system/sysSqdjyw/getSqdjywDetail?bsmSqyw=' + bsmSqyw,
30 method: 'get' 31 method: 'get'
31 }) 32 })
32 } 33 }
...@@ -35,7 +36,7 @@ export function getSqdjywDetail (bsmSqyw) { ...@@ -35,7 +36,7 @@ export function getSqdjywDetail (bsmSqyw) {
35 */ 36 */
36 export function saveSqdjyw (data) { 37 export function saveSqdjyw (data) {
37 return request({ 38 return request({
38 url: '/rest/system/sysSqdjyw/saveSqdjyw', 39 url: SERVER.SERVERAPI + '/rest/system/sysSqdjyw/saveSqdjyw',
39 method: 'post', 40 method: 'post',
40 data, 41 data,
41 showLoading: true, 42 showLoading: true,
...@@ -48,7 +49,7 @@ export function saveSqdjyw (data) { ...@@ -48,7 +49,7 @@ export function saveSqdjyw (data) {
48 */ 49 */
49 export function sysSqywmbszSearch (data) { 50 export function sysSqywmbszSearch (data) {
50 return request({ 51 return request({
51 url: '/rest/system/sysSqywmbsz/search', 52 url: SERVER.SERVERAPI + '/rest/system/sysSqywmbsz/search',
52 method: 'post', 53 method: 'post',
53 data, 54 data,
54 showLoading: true 55 showLoading: true
...@@ -59,7 +60,7 @@ export function sysSqywmbszSearch (data) { ...@@ -59,7 +60,7 @@ export function sysSqywmbszSearch (data) {
59 */ 60 */
60 export function getSysSqywmbszDetailById (id) { 61 export function getSysSqywmbszDetailById (id) {
61 return request({ 62 return request({
62 url: '/rest/system/sysSqywmbsz/getSysSqywmbszDetailById?id=' + id, 63 url: SERVER.SERVERAPI + '/rest/system/sysSqywmbsz/getSysSqywmbszDetailById?id=' + id,
63 method: 'get' 64 method: 'get'
64 }) 65 })
65 } 66 }
...@@ -68,7 +69,7 @@ export function getSysSqywmbszDetailById (id) { ...@@ -68,7 +69,7 @@ export function getSysSqywmbszDetailById (id) {
68 */ 69 */
69 export function updateSysSqywmbsz (data) { 70 export function updateSysSqywmbsz (data) {
70 return request({ 71 return request({
71 url: '/rest/system/sysSqywmbsz/updateSysSqywmbsz', 72 url: SERVER.SERVERAPI + '/rest/system/sysSqywmbsz/updateSysSqywmbsz',
72 method: 'put', 73 method: 'put',
73 data, 74 data,
74 showLoading: true 75 showLoading: true
......
1 import request from '@/utils/request' 1 import request from '@/utils/request'
2 2 import SERVER from './config'
3 export function getMenuInfo () { 3 export function getMenuInfo () {
4 return request({ 4 return request({
5 url: '/rest/user/getUserMenus', 5 url: SERVER.SERVERAPI + '/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
......
1 import request from '@/utils/request' 1 import request from '@/utils/request'
2 import SERVER from './config'
2 /* 3 /*
3 业务办理-获取收藏业务集合 4 业务办理-获取收藏业务集合
4 */ 5 */
5 export function getCollectBiz () { 6 export function getCollectBiz () {
6 return request({ 7 return request({
7 url: '/rest/ywbl/BusinessApply/getCollectBiz', 8 url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/getCollectBiz',
8 method: 'post' 9 method: 'post'
9 }) 10 })
10 } 11 }
...@@ -14,7 +15,7 @@ export function getCollectBiz () { ...@@ -14,7 +15,7 @@ export function getCollectBiz () {
14 */ 15 */
15 export function getleftMenu () { 16 export function getleftMenu () {
16 return request({ 17 return request({
17 url: '/rest/ywbl/BusinessApply/getleftMenu', 18 url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/getleftMenu',
18 method: 'post' 19 method: 'post'
19 }) 20 })
20 } 21 }
...@@ -23,7 +24,7 @@ export function getleftMenu () { ...@@ -23,7 +24,7 @@ export function getleftMenu () {
23 */ 24 */
24 export function getNextNode (bsmSqyw) { 25 export function getNextNode (bsmSqyw) {
25 return request({ 26 return request({
26 url: '/rest/ywbl/BusinessApply/getNextNode?parentid=' + bsmSqyw, 27 url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/getNextNode?parentid=' + bsmSqyw,
27 method: 'post', 28 method: 'post',
28 }) 29 })
29 } 30 }
...@@ -33,7 +34,7 @@ export function getNextNode (bsmSqyw) { ...@@ -33,7 +34,7 @@ export function getNextNode (bsmSqyw) {
33 */ 34 */
34 export function selectScBdcdy (data) { 35 export function selectScBdcdy (data) {
35 return request({ 36 return request({
36 url: '/rest/ywbl/ywsq/selectScBdcdy', 37 url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectScBdcdy',
37 method: 'post', 38 method: 'post',
38 data, 39 data,
39 showLoading: true 40 showLoading: true
...@@ -55,7 +56,7 @@ export function selectScBdcdy (data) { ...@@ -55,7 +56,7 @@ export function selectScBdcdy (data) {
55 // 待办箱列表查询接口 56 // 待办箱列表查询接口
56 export function searchTaskToDo (data) { 57 export function searchTaskToDo (data) {
57 return request({ 58 return request({
58 url: '/rest/workBox/search/searchTaskToDo', 59 url: SERVER.SERVERAPI + '/rest/workBox/search/searchTaskToDo',
59 method: 'post', 60 method: 'post',
60 data, 61 data,
61 showLoading: true 62 showLoading: true
...@@ -74,7 +75,7 @@ export function deleteFlow (data) { ...@@ -74,7 +75,7 @@ export function deleteFlow (data) {
74 */ 75 */
75 export function startBusinessFlow (data) { 76 export function startBusinessFlow (data) {
76 return request({ 77 return request({
77 url: '/rest/business/workFlow/startBusinessFlow', 78 url: SERVER.SERVERAPI + '/rest/business/workFlow/startBusinessFlow',
78 method: 'post', 79 method: 'post',
79 data, 80 data,
80 showLoading: true 81 showLoading: true
...@@ -85,7 +86,7 @@ export function startBusinessFlow (data) { ...@@ -85,7 +86,7 @@ export function startBusinessFlow (data) {
85 */ 86 */
86 export function searchTaskDone (data) { 87 export function searchTaskDone (data) {
87 return request({ 88 return request({
88 url: '/rest/workBox/search/searchTaskDone', 89 url: SERVER.SERVERAPI + '/rest/workBox/search/searchTaskDone',
89 method: 'post', 90 method: 'post',
90 data, 91 data,
91 showLoading: true 92 showLoading: true
...@@ -96,7 +97,7 @@ export function searchTaskDone (data) { ...@@ -96,7 +97,7 @@ export function searchTaskDone (data) {
96 */ 97 */
97 export function selectQlxx (data) { 98 export function selectQlxx (data) {
98 return request({ 99 return request({
99 url: '/rest/ywbl/ywsq/selectQlxx', 100 url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectQlxx',
100 method: 'post', 101 method: 'post',
101 data, 102 data,
102 showLoading: true 103 showLoading: true
...@@ -107,7 +108,7 @@ export function selectQlxx (data) { ...@@ -107,7 +108,7 @@ export function selectQlxx (data) {
107 */ 108 */
108 export function selectDiyaq (data) { 109 export function selectDiyaq (data) {
109 return request({ 110 return request({
110 url: '/rest/ywbl/ywsq/selectDiyaq', 111 url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectDiyaq',
111 method: 'post', 112 method: 'post',
112 data, 113 data,
113 showLoading: true 114 showLoading: true
...@@ -118,7 +119,7 @@ export function selectDiyaq (data) { ...@@ -118,7 +119,7 @@ export function selectDiyaq (data) {
118 */ 119 */
119 export function selectCfdj (data) { 120 export function selectCfdj (data) {
120 return request({ 121 return request({
121 url: '/rest/ywbl/ywsq/selectCfdj', 122 url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectCfdj',
122 method: 'post', 123 method: 'post',
123 data, 124 data,
124 showLoading: true 125 showLoading: true
...@@ -129,7 +130,7 @@ export function selectCfdj (data) { ...@@ -129,7 +130,7 @@ export function selectCfdj (data) {
129 */ 130 */
130 export function addCollectBiz (bsmSqyw) { 131 export function addCollectBiz (bsmSqyw) {
131 return request({ 132 return request({
132 url: '/rest/ywbl/BusinessApply/addCollectBiz?bsmSqyw=' + bsmSqyw, 133 url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/addCollectBiz?bsmSqyw=' + bsmSqyw,
133 method: 'post' 134 method: 'post'
134 }) 135 })
135 } 136 }
...@@ -138,7 +139,7 @@ export function addCollectBiz (bsmSqyw) { ...@@ -138,7 +139,7 @@ export function addCollectBiz (bsmSqyw) {
138 */ 139 */
139 export function deleteCollectBiz (bsmSqyw) { 140 export function deleteCollectBiz (bsmSqyw) {
140 return request({ 141 return request({
141 url: '/rest/ywbl/BusinessApply/deleteCollectBiz?bsmSqyw=' + bsmSqyw, 142 url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/deleteCollectBiz?bsmSqyw=' + bsmSqyw,
142 method: 'post' 143 method: 'post'
143 }) 144 })
144 } 145 }
......
1 import request from '@/utils/request' 1 import request from '@/utils/request'
2 import SERVER from './config'
2 /* 3 /*
3 综合查询 4 综合查询
4 */ 5 */
...@@ -9,7 +10,7 @@ import request from '@/utils/request' ...@@ -9,7 +10,7 @@ import request from '@/utils/request'
9 // 根据条件进行列表查询 10 // 根据条件进行列表查询
10 export function getDjbBysearch (data) { 11 export function getDjbBysearch (data) {
11 return request({ 12 return request({
12 url: '/rest/zhcx/search/qlxx/getDjbBysearch', 13 url: SERVER.SERVERAPI + '/rest/zhcx/search/qlxx/getDjbBysearch',
13 method: 'post', 14 method: 'post',
14 data: data 15 data: data
15 }) 16 })
...@@ -18,7 +19,7 @@ export function getDjbBysearch (data) { ...@@ -18,7 +19,7 @@ export function getDjbBysearch (data) {
18 // 获取登记封面 19 // 获取登记封面
19 export function getDjbfm (qlbsm) { 20 export function getDjbfm (qlbsm) {
20 return request({ 21 return request({
21 url: '/rest/zhcx/djbcx/djbfm/' + qlbsm, 22 url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/djbfm/' + qlbsm,
22 method: 'get' 23 method: 'get'
23 }) 24 })
24 } 25 }
...@@ -26,7 +27,7 @@ export function getDjbfm (qlbsm) { ...@@ -26,7 +27,7 @@ export function getDjbfm (qlbsm) {
26 // 获取登记目录 27 // 获取登记目录
27 export function getBdcqldjmlByBdcdyid (data) { 28 export function getBdcqldjmlByBdcdyid (data) {
28 return request({ 29 return request({
29 url: '/rest/zhcx/djbcx/getBdcqldjmlByBdcdyid', 30 url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/getBdcqldjmlByBdcdyid',
30 method: 'get', 31 method: 'get',
31 params: data 32 params: data
32 }) 33 })
...@@ -35,7 +36,7 @@ export function getBdcqldjmlByBdcdyid (data) { ...@@ -35,7 +36,7 @@ export function getBdcqldjmlByBdcdyid (data) {
35 // 获取宗地信息 36 // 获取宗地信息
36 export function getZdjbxx (qlbsm) { 37 export function getZdjbxx (qlbsm) {
37 return request({ 38 return request({
38 url: '/rest/zhcx/djbcx/zdjbxx/' + qlbsm, 39 url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/zdjbxx/' + qlbsm,
39 method: 'get' 40 method: 'get'
40 }) 41 })
41 } 42 }
...@@ -43,7 +44,7 @@ export function getZdjbxx (qlbsm) { ...@@ -43,7 +44,7 @@ export function getZdjbxx (qlbsm) {
43 // 获取宗地信息 44 // 获取宗地信息
44 export function getZdjjxxBybdcdyid (data) { 45 export function getZdjjxxBybdcdyid (data) {
45 return request({ 46 return request({
46 url: '/rest/zhcx/djbcx/getZdjjxxBybdcdyid', 47 url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/getZdjjxxBybdcdyid',
47 method: 'get', 48 method: 'get',
48 params: data 49 params: data
49 }) 50 })
...@@ -52,7 +53,7 @@ export function getZdjjxxBybdcdyid (data) { ...@@ -52,7 +53,7 @@ export function getZdjjxxBybdcdyid (data) {
52 // 获取宗地信息 53 // 获取宗地信息
53 export function getZdjjxxBySLdy (data) { 54 export function getZdjjxxBySLdy (data) {
54 return request({ 55 return request({
55 url: '/rest/zhcx/djbcx/getZdjjxxBybdcdyid', 56 url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/getZdjjxxBybdcdyid',
56 method: 'get', 57 method: 'get',
57 params: data 58 params: data
58 }) 59 })
...@@ -61,7 +62,7 @@ export function getZdjjxxBySLdy (data) { ...@@ -61,7 +62,7 @@ export function getZdjjxxBySLdy (data) {
61 // 获取不动产权利及其他事项 62 // 获取不动产权利及其他事项
62 export function getBdcqljqtsx (data) { 63 export function getBdcqljqtsx (data) {
63 return request({ 64 return request({
64 url: '/rest/zhcx/djbcx/getBdcqljqtsx', 65 url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/getBdcqljqtsx',
65 method: 'get', 66 method: 'get',
66 params: data 67 params: data
67 }) 68 })
...@@ -70,7 +71,7 @@ export function getBdcqljqtsx (data) { ...@@ -70,7 +71,7 @@ export function getBdcqljqtsx (data) {
70 // 获取不动产权利及其他事项页面信息 71 // 获取不动产权利及其他事项页面信息
71 export function getQlname (qlbsm) { 72 export function getQlname (qlbsm) {
72 return request({ 73 return request({
73 url: '/rest/zhcx/djbcx/qlname/' + qlbsm, 74 url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/qlname/' + qlbsm,
74 method: 'get' 75 method: 'get'
75 }) 76 })
76 } 77 }
...@@ -78,7 +79,7 @@ export function getQlname (qlbsm) { ...@@ -78,7 +79,7 @@ export function getQlname (qlbsm) {
78 // 获取权利详细信息 79 // 获取权利详细信息
79 export function getDetail (qlbsm) { 80 export function getDetail (qlbsm) {
80 return request({ 81 return request({
81 url: '/rest/zhcx/djbcx/detail/' + qlbsm, 82 url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/detail/' + qlbsm,
82 method: 'get' 83 method: 'get'
83 }) 84 })
84 } 85 }
...@@ -86,7 +87,7 @@ export function getDetail (qlbsm) { ...@@ -86,7 +87,7 @@ export function getDetail (qlbsm) {
86 // 获取建设用地使用权 87 // 获取建设用地使用权
87 export function getJsydsyqList (data) { 88 export function getJsydsyqList (data) {
88 return request({ 89 return request({
89 url: '/rest/zhcx/djbcx/getJsydsyqList', 90 url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/getJsydsyqList',
90 method: 'post', 91 method: 'post',
91 data 92 data
92 }) 93 })
...@@ -94,7 +95,7 @@ export function getJsydsyqList (data) { ...@@ -94,7 +95,7 @@ export function getJsydsyqList (data) {
94 // 获取抵押权 95 // 获取抵押权
95 export function getDiyaqList (data) { 96 export function getDiyaqList (data) {
96 return request({ 97 return request({
97 url: '/rest/zhcx/djbcx/getDiyaqList', 98 url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/getDiyaqList',
98 method: 'post', 99 method: 'post',
99 data 100 data
100 }) 101 })
...@@ -102,7 +103,7 @@ export function getDiyaqList (data) { ...@@ -102,7 +103,7 @@ export function getDiyaqList (data) {
102 // 获取地役权 103 // 获取地役权
103 export function getDiyiqList (data) { 104 export function getDiyiqList (data) {
104 return request({ 105 return request({
105 url: '/rest/zhcx/djbcx/getDiyiqList', 106 url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/getDiyiqList',
106 method: 'post', 107 method: 'post',
107 data 108 data
108 }) 109 })
...@@ -110,7 +111,7 @@ export function getDiyiqList (data) { ...@@ -110,7 +111,7 @@ export function getDiyiqList (data) {
110 // 获取预告登记 111 // 获取预告登记
111 export function getYgdjList (data) { 112 export function getYgdjList (data) {
112 return request({ 113 return request({
113 url: '/rest/zhcx/djbcx/getYgdjList', 114 url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/getYgdjList',
114 method: 'post', 115 method: 'post',
115 data 116 data
116 }) 117 })
...@@ -118,7 +119,7 @@ export function getYgdjList (data) { ...@@ -118,7 +119,7 @@ export function getYgdjList (data) {
118 // 获取异议登记 119 // 获取异议登记
119 export function getYydjList (data) { 120 export function getYydjList (data) {
120 return request({ 121 return request({
121 url: '/rest/zhcx/djbcx/getYydjList', 122 url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/getYydjList',
122 method: 'post', 123 method: 'post',
123 data 124 data
124 }) 125 })
...@@ -126,7 +127,7 @@ export function getYydjList (data) { ...@@ -126,7 +127,7 @@ export function getYydjList (data) {
126 // 获取查封登记 127 // 获取查封登记
127 export function getCfdjList (data) { 128 export function getCfdjList (data) {
128 return request({ 129 return request({
129 url: '/rest/zhcx/djbcx/getCfdjList', 130 url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/getCfdjList',
130 method: 'post', 131 method: 'post',
131 data 132 data
132 }) 133 })
...@@ -134,7 +135,7 @@ export function getCfdjList (data) { ...@@ -134,7 +135,7 @@ export function getCfdjList (data) {
134 // 进度查询列表 135 // 进度查询列表
135 export function getJdcxBysearch (data) { 136 export function getJdcxBysearch (data) {
136 return request({ 137 return request({
137 url: '/rest/zhcx/search/getJdcxBysearch', 138 url: SERVER.SERVERAPI + '/rest/zhcx/search/getJdcxBysearch',
138 method: 'post', 139 method: 'post',
139 data 140 data
140 }) 141 })
......
1 import request from '@/utils/request' 1 import request from '@/utils/request'
2 import SERVER from './config'
2 /* 3 /*
3 证书管理-获取序列号 4 证书管理-获取序列号
4 */ 5 */
5 export function getSysSerialSingle (params) { 6 export function getSysSerialSingle (params) {
6 return request({ 7 return request({
7 url: '/rest/system/sysSerial/getSysSerialSingle', 8 url: SERVER.SERVERAPI + '/rest/system/sysSerial/getSysSerialSingle',
8 method: 'get', 9 method: 'get',
9 params: params 10 params: params
10 }) 11 })
...@@ -14,7 +15,7 @@ export function getSysSerialSingle (params) { ...@@ -14,7 +15,7 @@ export function getSysSerialSingle (params) {
14 */ 15 */
15 export function getZsglrkList (data) { 16 export function getZsglrkList (data) {
16 return request({ 17 return request({
17 url: '/rest/sys/zsgl/getZsglrkList', 18 url: SERVER.SERVERAPI + '/rest/sys/zsgl/getZsglrkList',
18 method: 'post', 19 method: 'post',
19 data, 20 data,
20 showLoading: true 21 showLoading: true
...@@ -25,7 +26,7 @@ export function getZsglrkList (data) { ...@@ -25,7 +26,7 @@ export function getZsglrkList (data) {
25 */ 26 */
26 export function zsrk (data) { 27 export function zsrk (data) {
27 return request({ 28 return request({
28 url: '/rest/sys/zsgl/zsrk', 29 url: SERVER.SERVERAPI + '/rest/sys/zsgl/zsrk',
29 method: 'post', 30 method: 'post',
30 data, 31 data,
31 showLoading: true, 32 showLoading: true,
...@@ -37,7 +38,7 @@ export function zsrk (data) { ...@@ -37,7 +38,7 @@ export function zsrk (data) {
37 */ 38 */
38 export function removeZsgl (params) { 39 export function removeZsgl (params) {
39 return request({ 40 return request({
40 url: '/rest/sys/zsgl/removeZsgl', 41 url: SERVER.SERVERAPI + '/rest/sys/zsgl/removeZsgl',
41 method: 'get', 42 method: 'get',
42 params: params 43 params: params
43 }) 44 })
...@@ -47,7 +48,7 @@ export function removeZsgl (params) { ...@@ -47,7 +48,7 @@ export function removeZsgl (params) {
47 */ 48 */
48 export function verifyZsrk (params) { 49 export function verifyZsrk (params) {
49 return request({ 50 return request({
50 url: '/rest/sys/zsgl/verifyZsrk', 51 url: SERVER.SERVERAPI + '/rest/sys/zsgl/verifyZsrk',
51 method: 'get', 52 method: 'get',
52 params: params 53 params: params
53 }) 54 })
...@@ -57,7 +58,7 @@ export function verifyZsrk (params) { ...@@ -57,7 +58,7 @@ export function verifyZsrk (params) {
57 */ 58 */
58 export function getZsglffList (data) { 59 export function getZsglffList (data) {
59 return request({ 60 return request({
60 url: '/rest/sys/zsgl/getZsglffList', 61 url: SERVER.SERVERAPI + '/rest/sys/zsgl/getZsglffList',
61 method: 'post', 62 method: 'post',
62 data, 63 data,
63 showLoading: true 64 showLoading: true
...@@ -68,7 +69,7 @@ export function getZsglffList (data) { ...@@ -68,7 +69,7 @@ export function getZsglffList (data) {
68 */ 69 */
69 export function getZsStartNo () { 70 export function getZsStartNo () {
70 return request({ 71 return request({
71 url: '/rest/sys/zsgl/getZsStartNo', 72 url: SERVER.SERVERAPI + '/rest/sys/zsgl/getZsStartNo',
72 method: 'get' 73 method: 'get'
73 }) 74 })
74 } 75 }
...@@ -77,7 +78,7 @@ export function getZsStartNo () { ...@@ -77,7 +78,7 @@ export function getZsStartNo () {
77 */ 78 */
78 export function getZsEndNo (params) { 79 export function getZsEndNo (params) {
79 return request({ 80 return request({
80 url: '/rest/sys/zsgl/getZsEndNo', 81 url: SERVER.SERVERAPI + '/rest/sys/zsgl/getZsEndNo',
81 method: 'get', 82 method: 'get',
82 params 83 params
83 }) 84 })
...@@ -87,7 +88,7 @@ export function getZsEndNo (params) { ...@@ -87,7 +88,7 @@ export function getZsEndNo (params) {
87 */ 88 */
88 export function zsff (data) { 89 export function zsff (data) {
89 return request({ 90 return request({
90 url: '/rest/sys/zsgl/zsff', 91 url: SERVER.SERVERAPI + '/rest/sys/zsgl/zsff',
91 method: 'post', 92 method: 'post',
92 data, 93 data,
93 showLoading: true, 94 showLoading: true,
...@@ -99,7 +100,7 @@ export function zsff (data) { ...@@ -99,7 +100,7 @@ export function zsff (data) {
99 */ 100 */
100 export function confirmZsff (params) { 101 export function confirmZsff (params) {
101 return request({ 102 return request({
102 url: '/rest/sys/zsgl/confirmZsff', 103 url: SERVER.SERVERAPI + '/rest/sys/zsgl/confirmZsff',
103 method: 'get', 104 method: 'get',
104 params: params 105 params: params
105 }) 106 })
...@@ -109,7 +110,7 @@ export function confirmZsff (params) { ...@@ -109,7 +110,7 @@ export function confirmZsff (params) {
109 */ 110 */
110 export function getZssyqkList (data) { 111 export function getZssyqkList (data) {
111 return request({ 112 return request({
112 url: '/rest/sys/zsgl/getZssyqkList', 113 url: SERVER.SERVERAPI + '/rest/sys/zsgl/getZssyqkList',
113 method: 'post', 114 method: 'post',
114 data, 115 data,
115 showLoading: true 116 showLoading: true
...@@ -120,7 +121,7 @@ export function getZssyqkList (data) { ...@@ -120,7 +121,7 @@ export function getZssyqkList (data) {
120 */ 121 */
121 export function getZssyqkInfo (params) { 122 export function getZssyqkInfo (params) {
122 return request({ 123 return request({
123 url: '/rest/sys/zsgl/getZssyqkInfo', 124 url: SERVER.SERVERAPI + '/rest/sys/zsgl/getZssyqkInfo',
124 method: 'get', 125 method: 'get',
125 params 126 params
126 }) 127 })
...@@ -130,7 +131,7 @@ export function getZssyqkInfo (params) { ...@@ -130,7 +131,7 @@ export function getZssyqkInfo (params) {
130 */ 131 */
131 export function getZsglInfo (params) { 132 export function getZsglInfo (params) {
132 return request({ 133 return request({
133 url: '/rest/sys/zsgl/getZsglInfo', 134 url: SERVER.SERVERAPI + '/rest/sys/zsgl/getZsglInfo',
134 method: 'get', 135 method: 'get',
135 params 136 params
136 }) 137 })
......
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
37 37
38 <el-col :span="4" class="btnColRight"> 38 <el-col :span="4" class="btnColRight">
39 <el-form-item> 39 <el-form-item>
40 <el-button type="primary" @click="queryClick()">查询</el-button> 40 <el-button type="primary" native-type="submit" @click="queryClick()">查询</el-button>
41 <el-button @click="moreQueryClick()">高级查询</el-button> 41 <el-button @click="moreQueryClick()">高级查询</el-button>
42 </el-form-item> 42 </el-form-item>
43 </el-col> 43 </el-col>
......
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
37 37
38 <el-col :span="4" class="btnColRight"> 38 <el-col :span="4" class="btnColRight">
39 <el-form-item> 39 <el-form-item>
40 <el-button type="primary" @click="queryClick()">查询</el-button> 40 <el-button type="primary" native-type="submit" @click="queryClick()">查询</el-button>
41 <el-button @click="moreQueryClick()">高级查询</el-button> 41 <el-button @click="moreQueryClick()">高级查询</el-button>
42 </el-form-item> 42 </el-form-item>
43 </el-col> 43 </el-col>
...@@ -45,12 +45,12 @@ ...@@ -45,12 +45,12 @@
45 <el-row class="advanced-search"> 45 <el-row class="advanced-search">
46 <span>高级搜索条件:</span> 46 <span>高级搜索条件:</span>
47 <ul> 47 <ul>
48 <li v-for="(item,index) in searchList" :key="index"> 48 <li v-for="(item, index) in searchList" :key="index">
49 {{item.name}}:{{item.value}} 49 {{ item.name }}:{{ item.value }}
50 <i class="el-icon-circle-close" @click="handelItem(index)"></i> 50 <i class="el-icon-circle-close" @click="handelItem(index)"></i>
51 </li> 51 </li>
52 </ul> 52 </ul>
53 <el-button class="clean-btn" type="text" v-if="searchList.length>0" @click.native="hanldeCleanAll">清除全部 53 <el-button class="clean-btn" type="text" v-if="searchList.length > 0" @click.native="hanldeCleanAll">清除全部
54 </el-button> 54 </el-button>
55 </el-row> 55 </el-row>
56 </el-form> 56 </el-form>
......