Merge branch 'master' of http://yun.pashanhoo.com:9090/bdc/bdcdj-web
Showing
31 changed files
with
293 additions
and
327 deletions
... | @@ -2,7 +2,7 @@ | ... | @@ -2,7 +2,7 @@ |
2 | ENV = 'development' | 2 | ENV = 'development' |
3 | NODE_ENV=development | 3 | NODE_ENV=development |
4 | # base api | 4 | # base api |
5 | VUE_APP_BASE_API = '/bdcdj' | 5 | VUE_APP_BASE_API = '/api' |
6 | 6 | ||
7 | # 开发环境 | 7 | # 开发环境 |
8 | VUE_APP_API_BASE_URL = 'http://192.168.2.88:8018' | 8 | VUE_APP_API_BASE_URL = 'http://192.168.2.38:8008' | ... | ... |
... | @@ -2,7 +2,7 @@ | ... | @@ -2,7 +2,7 @@ |
2 | ENV = 'production' | 2 | ENV = 'production' |
3 | NODE_ENV=production | 3 | NODE_ENV=production |
4 | # base api | 4 | # base api |
5 | VUE_APP_BASE_API = '/service-bdcdj' | 5 | VUE_APP_BASE_API = '' |
6 | 6 | ||
7 | # 演示,正式后端 | 7 | # 演示,正式后端 |
8 | VUE_APP_API_BASE_URL = 'http://192.168.2.38:8008/service-bdcdj' | 8 | VUE_APP_API_BASE_URL = 'http://192.168.2.38:8008' | ... | ... |
... | @@ -12,6 +12,12 @@ | ... | @@ -12,6 +12,12 @@ |
12 | <body> | 12 | <body> |
13 | <div id="app"></div> | 13 | <div id="app"></div> |
14 | <!-- built files will be auto injected --> | 14 | <!-- built files will be auto injected --> |
15 | |||
16 | </body> | 15 | </body> |
17 | </html> | 16 | </html> |
17 | <script> | ||
18 | window.baseUrl = location.origin || location.protocol +'//'+location.host | ||
19 | // window.authorization = 'bearer AT-14-h4UlUGjPvgmrIgnDO-3QgMP0m4YJGQTR'; | ||
20 | // window.authorization = 'bearer AT-223-c-Q86EHx75m7ig3EDf-SwMWl4U0AKn0b'; | ||
21 | window.timeout=5000 | ||
22 | window.authorization="bearer AT-4-MxSrO29Coe7VTazx8uuixtqqgO-hvCB6" | ||
23 | </script> | ... | ... |
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({ |
... | @@ -21,17 +22,17 @@ export function Init(data) { | ... | @@ -21,17 +22,17 @@ export function Init(data) { |
21 | }) | 22 | }) |
22 | } | 23 | } |
23 | //批量初始化 | 24 | //批量初始化 |
24 | export function BatchInit(data) { | 25 | 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: '/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: '/ywbl/cfdj/batchSaveData', | 57 | url: SERVER.SERVERAPI + '/rest/ywbl/cfdj/batchSaveData', |
57 | method: 'post', | 58 | method: 'post', |
58 | data | 59 | data |
59 | }) | 60 | }) | ... | ... |
src/api/config.js
0 → 100644
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: '/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: '/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: '/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: '/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: '/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: '/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: '/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: '/business/workFlow/sendBackTask', | 22 | url: SERVER.SERVERAPI + '/rest/business/workFlow/sendBackTask', |
24 | method: 'post', | 23 | method: 'post', |
25 | data | 24 | data |
26 | }) | 25 | }) |
... | @@ -28,17 +27,15 @@ export function sendBackTask (data) { | ... | @@ -28,17 +27,15 @@ export function sendBackTask (data) { |
28 | // 获取左侧列表 | 27 | // 获取左侧列表 |
29 | export function leftMenu (data) { | 28 | export function leftMenu (data) { |
30 | return request({ | 29 | return request({ |
31 | url: '/business/workFlow/leftMenu', | 30 | url: SERVER.SERVERAPI + '/rest/business/workFlow/leftMenu', |
32 | method: 'post', | 31 | method: 'post', |
33 | data | 32 | data |
34 | }) | 33 | }) |
35 | } | 34 | } |
36 | |||
37 | |||
38 | // 材料目录明细初始化 | 35 | // 材料目录明细初始化 |
39 | export function clmlInit (data) { | 36 | export function clmlInit (data) { |
40 | return request({ | 37 | return request({ |
41 | url: '/zhcx/clml/Init', | 38 | url: SERVER.SERVERAPI + '/rest/zhcx/clml/Init', |
42 | method: 'post', | 39 | method: 'post', |
43 | data | 40 | data |
44 | }) | 41 | }) |
... | @@ -47,7 +44,7 @@ export function clmlInit (data) { | ... | @@ -47,7 +44,7 @@ export function clmlInit (data) { |
47 | // 材料目录明细移动 | 44 | // 材料目录明细移动 |
48 | export function move (data) { | 45 | export function move (data) { |
49 | return request({ | 46 | return request({ |
50 | url: '/zhcx/clml/move', | 47 | url: SERVER.SERVERAPI + '/rest/zhcx/clml/move', |
51 | method: 'post', | 48 | method: 'post', |
52 | data | 49 | data |
53 | }) | 50 | }) |
... | @@ -56,7 +53,7 @@ export function move (data) { | ... | @@ -56,7 +53,7 @@ export function move (data) { |
56 | // 材料目录明细保存 | 53 | // 材料目录明细保存 |
57 | export function save (data) { | 54 | export function save (data) { |
58 | return request({ | 55 | return request({ |
59 | url: '/zhcx/clml/save', | 56 | url: SERVER.SERVERAPI + '/rest/zhcx/clml/save', |
60 | method: 'post', | 57 | method: 'post', |
61 | data | 58 | data |
62 | }) | 59 | }) |
... | @@ -65,7 +62,7 @@ export function save (data) { | ... | @@ -65,7 +62,7 @@ export function save (data) { |
65 | // 材料目录批量删除 | 62 | // 材料目录批量删除 |
66 | export function clmlDelete (params) { | 63 | export function clmlDelete (params) { |
67 | return request({ | 64 | return request({ |
68 | url: '/zhcx/clml/delete', | 65 | url: SERVER.SERVERAPI + '/rest/zhcx/clml/delete', |
69 | method: 'delete', | 66 | method: 'delete', |
70 | params: params | 67 | params: params |
71 | }) | 68 | }) |
... | @@ -73,23 +70,17 @@ export function clmlDelete (params) { | ... | @@ -73,23 +70,17 @@ export function clmlDelete (params) { |
73 | 70 | ||
74 | // 获取下一环节信息 | 71 | // 获取下一环节信息 |
75 | export function getNextLinkInfo (params) { | 72 | export function getNextLinkInfo (params) { |
76 | // return axios({ | ||
77 | // url: '/business/workFlow/getNextLinkInfo', | ||
78 | // method: 'get', | ||
79 | // params: params | ||
80 | // }); | ||
81 | |||
82 | return request({ | 73 | return request({ |
83 | url: '/business/workFlow/getNextLinkInfo', | 74 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getNextLinkInfo', |
84 | method: 'get', | 75 | method: 'get', |
85 | params: params | 76 | params: params |
86 | }); | 77 | }); |
87 | } | 78 | } |
88 | 79 | ||
89 | //获取单元对应的环节表单信息 | 80 | //获取单元对应的环节表单信息 |
90 | export function getStepFormInfo(data){ | 81 | export function getStepFormInfo (data) { |
91 | return request({ | 82 | return request({ |
92 | url: '/business/workFlow/getStepFormInfo', | 83 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getStepFormInfo', |
93 | method: 'post', | 84 | method: 'post', |
94 | data | 85 | data |
95 | }); | 86 | }); |
... | @@ -97,7 +88,7 @@ export function getStepFormInfo(data){ | ... | @@ -97,7 +88,7 @@ export function getStepFormInfo(data){ |
97 | // 环节扩展信息 | 88 | // 环节扩展信息 |
98 | export function stepExpandInfo (data) { | 89 | export function stepExpandInfo (data) { |
99 | return request({ | 90 | return request({ |
100 | url: '/business/workFlow/stepExpandInfo', | 91 | url: SERVER.SERVERAPI + '/rest/business/workFlow/stepExpandInfo', |
101 | method: 'post', | 92 | method: 'post', |
102 | data | 93 | data |
103 | }) | 94 | }) |
... | @@ -106,7 +97,7 @@ export function stepExpandInfo (data) { | ... | @@ -106,7 +97,7 @@ export function stepExpandInfo (data) { |
106 | // 获取审批意见 | 97 | // 获取审批意见 |
107 | export function getSpyjList (data) { | 98 | export function getSpyjList (data) { |
108 | return request({ | 99 | return request({ |
109 | url: '/business/workFlow/getSpyjList', | 100 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getSpyjList', |
110 | method: 'post', | 101 | method: 'post', |
111 | data | 102 | data |
112 | }) | 103 | }) |
... | @@ -115,7 +106,7 @@ export function getSpyjList (data) { | ... | @@ -115,7 +106,7 @@ export function getSpyjList (data) { |
115 | // 保存审批意见 | 106 | // 保存审批意见 |
116 | export function saveSpyj (data) { | 107 | export function saveSpyj (data) { |
117 | return request({ | 108 | return request({ |
118 | url: '/business/workFlow/saveSpyj', | 109 | url: SERVER.SERVERAPI + '/rest/business/workFlow/saveSpyj', |
119 | method: 'post', | 110 | method: 'post', |
120 | data | 111 | data |
121 | }) | 112 | }) |
... | @@ -123,7 +114,7 @@ export function saveSpyj (data) { | ... | @@ -123,7 +114,7 @@ export function saveSpyj (data) { |
123 | // 根据受理申请保存审批意见 | 114 | // 根据受理申请保存审批意见 |
124 | export function saveSpyjBySlsq (data) { | 115 | export function saveSpyjBySlsq (data) { |
125 | return request({ | 116 | return request({ |
126 | url: '/business/workFlow/saveSpyjBySlsq', | 117 | url: SERVER.SERVERAPI + '/rest/business/workFlow/saveSpyjBySlsq', |
127 | method: 'post', | 118 | method: 'post', |
128 | data | 119 | data |
129 | }) | 120 | }) |
... | @@ -131,7 +122,7 @@ export function saveSpyjBySlsq (data) { | ... | @@ -131,7 +122,7 @@ export function saveSpyjBySlsq (data) { |
131 | // 登簿接口 | 122 | // 登簿接口 |
132 | export function record (data) { | 123 | export function record (data) { |
133 | return request({ | 124 | return request({ |
134 | url: '/business/workFlow/record', | 125 | url: SERVER.SERVERAPI + '/rest/business/workFlow/record', |
135 | method: 'post', | 126 | method: 'post', |
136 | data | 127 | data |
137 | }) | 128 | }) |
... | @@ -139,7 +130,7 @@ export function record (data) { | ... | @@ -139,7 +130,7 @@ export function record (data) { |
139 | // 获取不动产权证列表 | 130 | // 获取不动产权证列表 |
140 | export function getBdcqzList (params) { | 131 | export function getBdcqzList (params) { |
141 | return request({ | 132 | return request({ |
142 | url: '/business/workFlow/getBdcqzList', | 133 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getBdcqzList', |
143 | method: 'get', | 134 | method: 'get', |
144 | params: params | 135 | params: params |
145 | }) | 136 | }) |
... | @@ -147,7 +138,7 @@ export function getBdcqzList (params) { | ... | @@ -147,7 +138,7 @@ export function getBdcqzList (params) { |
147 | // 获取印刷序列号 | 138 | // 获取印刷序列号 |
148 | export function readYsxlh (params) { | 139 | export function readYsxlh (params) { |
149 | return request({ | 140 | return request({ |
150 | url: '/business/workFlow/readYsxlh', | 141 | url: SERVER.SERVERAPI + '/rest/business/workFlow/readYsxlh', |
151 | method: 'get', | 142 | method: 'get', |
152 | params: params | 143 | params: params |
153 | }) | 144 | }) |
... | @@ -155,7 +146,7 @@ export function readYsxlh (params) { | ... | @@ -155,7 +146,7 @@ export function readYsxlh (params) { |
155 | // 缮证 | 146 | // 缮证 |
156 | export function certificate (data) { | 147 | export function certificate (data) { |
157 | return request({ | 148 | return request({ |
158 | url: '/business/workFlow/certificate', | 149 | url: SERVER.SERVERAPI + '/rest/business/workFlow/certificate', |
159 | method: 'post', | 150 | method: 'post', |
160 | data | 151 | data |
161 | }) | 152 | }) |
... | @@ -163,7 +154,7 @@ export function certificate (data) { | ... | @@ -163,7 +154,7 @@ export function certificate (data) { |
163 | // 作废缮证信息 | 154 | // 作废缮证信息 |
164 | export function invalidCertificate (data) { | 155 | export function invalidCertificate (data) { |
165 | return request({ | 156 | return request({ |
166 | url: '/business/workFlow/invalidCertificate', | 157 | url: SERVER.SERVERAPI + '/rest/business/workFlow/invalidCertificate', |
167 | method: 'post', | 158 | method: 'post', |
168 | data | 159 | data |
169 | }) | 160 | }) |
... | @@ -171,7 +162,7 @@ export function invalidCertificate (data) { | ... | @@ -171,7 +162,7 @@ export function invalidCertificate (data) { |
171 | // 缮证列表 | 162 | // 缮证列表 |
172 | export function getCertificateList (data) { | 163 | export function getCertificateList (data) { |
173 | return request({ | 164 | return request({ |
174 | url: '/business/workFlow/getCertificateList', | 165 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getCertificateList', |
175 | method: 'post', | 166 | method: 'post', |
176 | data | 167 | data |
177 | }) | 168 | }) |
... | @@ -179,7 +170,7 @@ export function getCertificateList (data) { | ... | @@ -179,7 +170,7 @@ export function getCertificateList (data) { |
179 | // 发证 | 170 | // 发证 |
180 | export function issueCertificate (data) { | 171 | export function issueCertificate (data) { |
181 | return request({ | 172 | return request({ |
182 | url: '/business/workFlow/issueCertificate', | 173 | url: SERVER.SERVERAPI + '/rest/business/workFlow/issueCertificate', |
183 | method: 'post', | 174 | method: 'post', |
184 | data | 175 | data |
185 | }) | 176 | }) |
... | @@ -187,7 +178,7 @@ export function issueCertificate (data) { | ... | @@ -187,7 +178,7 @@ export function issueCertificate (data) { |
187 | // 获取受理申请下全部不动产权证 | 178 | // 获取受理申请下全部不动产权证 |
188 | export function getSlsqBdcqzList (params) { | 179 | export function getSlsqBdcqzList (params) { |
189 | return request({ | 180 | return request({ |
190 | url: '/business/workFlow/getSlsqBdcqzList', | 181 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getSlsqBdcqzList', |
191 | method: 'get', | 182 | method: 'get', |
192 | params | 183 | params |
193 | }) | 184 | }) |
... | @@ -195,7 +186,7 @@ export function getSlsqBdcqzList (params) { | ... | @@ -195,7 +186,7 @@ export function getSlsqBdcqzList (params) { |
195 | // 终止任务 | 186 | // 终止任务 |
196 | export function stopTask (data) { | 187 | export function stopTask (data) { |
197 | return request({ | 188 | return request({ |
198 | url: '/business/workFlow/stopTask', | 189 | url: SERVER.SERVERAPI + '/rest/business/workFlow/stopTask', |
199 | method: 'post', | 190 | method: 'post', |
200 | data | 191 | data |
201 | }) | 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 = ""; |
6 | switch (data.get("djlx")) { | 6 | switch (data.get("djlx")) { |
7 | case "100": | 7 | case "100": |
... | @@ -33,9 +33,9 @@ export function Init(data) { | ... | @@ -33,9 +33,9 @@ export function Init(data) { |
33 | }) | 33 | }) |
34 | } | 34 | } |
35 | // 初始化内容 | 35 | // 初始化内容 |
36 | export function saveData(data) { | 36 | export function saveData (data) { |
37 | return request({ | 37 | return request({ |
38 | url: '/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) { |
6 | let apiUrl = ""; | 6 | let apiUrl = ""; |
7 | switch (data.get("djlx")) { | 7 | switch (data.get("djlx")) { |
8 | case "100": | 8 | case "100": |
... | @@ -34,9 +34,9 @@ export function Init(data) { | ... | @@ -34,9 +34,9 @@ export function Init(data) { |
34 | }) | 34 | }) |
35 | } | 35 | } |
36 | // 初始化内容 | 36 | // 初始化内容 |
37 | export function saveData(data) { | 37 | export function saveData (data) { |
38 | return request({ | 38 | return request({ |
39 | url: '/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: '/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: '/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: '/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: '/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: '/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: '/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: '/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: '/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: '/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 | }) |
13 | } | 13 | } |
14 | 14 | ||
15 | // 获取楼盘表 | 15 | // 获取楼盘表 |
16 | export function getLpb(params) { | 16 | export function getLpb (params) { |
17 | return request({ | 17 | return request({ |
18 | url: '/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: '/djbDetail/getDjbFm', | 9 | url: SERVER.SERVERAPI + '/rest/djbDetail/getDjbFm', |
10 | method: 'get', | 10 | method: 'get', |
11 | params: data | 11 | params: data |
12 | }) | 12 | }) |
13 | } | 13 | } |
14 | 14 | ||
15 | // 获取登记目录 | 15 | // 获取登记目录 |
16 | export function getBdcqldjmlByBdcdyid(data) { | 16 | export function getBdcqldjmlByBdcdyid (data) { |
17 | return request({ | 17 | return request({ |
18 | url: '/djbDetail/getBdcqldjmlByBdcdyid', | 18 | url: SERVER.SERVERAPI + '/rest/djbDetail/getBdcqldjmlByBdcdyid', |
19 | method: 'get', | 19 | method: 'get', |
20 | params: data | 20 | params: data |
21 | }) | 21 | }) |
22 | } | 22 | } |
23 | 23 | ||
24 | // 获取宗地信息 | 24 | // 获取宗地信息 |
25 | export function getZdjjxxBybdcdyid(data) { | 25 | export function getZdjjxxBybdcdyid (data) { |
26 | return request({ | 26 | return request({ |
27 | url: '/djbDetail/getZdjjxxBybdcdyid', | 27 | url: SERVER.SERVERAPI + '/rest/djbDetail/getZdjjxxBybdcdyid', |
28 | method: 'get', | 28 | method: 'get', |
29 | params: data | 29 | params: data |
30 | }) | 30 | }) |
31 | } | 31 | } |
32 | 32 | ||
33 | // 根据受理单元标识,获取宗地信息 | 33 | // 根据受理单元标识,获取宗地信息 |
34 | export function getZdjjxxBySLdy(data) { | 34 | export function getZdjjxxBySLdy (data) { |
35 | return request({ | 35 | return request({ |
36 | url: '/djbDetail/getZdjjxxBySLdy', | 36 | url: SERVER.SERVERAPI + '/rest/djbDetail/getZdjjxxBySLdy', |
37 | method: 'get', | 37 | method: 'get', |
38 | params: data | 38 | params: data |
39 | }) | 39 | }) |
40 | } | 40 | } |
41 | 41 | ||
42 | // 获取不动产权利及其他事项 | 42 | // 获取不动产权利及其他事项 |
43 | export function getBdcqljqtsx(data) { | 43 | export function getBdcqljqtsx (data) { |
44 | return request({ | 44 | return request({ |
45 | url: '/djbDetail/getBdcqljqtsx', | 45 | url: SERVER.SERVERAPI + '/rest/djbDetail/getBdcqljqtsx', |
46 | method: 'get', | 46 | method: 'get', |
47 | params: data | 47 | params: data |
48 | }) | 48 | }) |
49 | } | 49 | } |
50 | 50 | ||
51 | // 获取建设用地使用权 | 51 | // 获取建设用地使用权 |
52 | export function getJsydsyqList(data) { | 52 | export function getJsydsyqList (data) { |
53 | return request({ | 53 | return request({ |
54 | url: '/djbDetail/getJsydsyqList', | 54 | url: SERVER.SERVERAPI + '/rest/djbDetail/getJsydsyqList', |
55 | method: 'post', | 55 | method: 'post', |
56 | data | 56 | data |
57 | }) | 57 | }) |
58 | } | 58 | } |
59 | 59 | ||
60 | // 获取房屋独幢信息集合 | 60 | // 获取房屋独幢信息集合 |
61 | export function getFdcq2List(data) { | 61 | export function getFdcq2List (data) { |
62 | return request({ | 62 | return request({ |
63 | url: '/djbDetail/getFdcq2List', | 63 | url: SERVER.SERVERAPI + '/rest/djbDetail/getFdcq2List', |
64 | method: 'post', | 64 | method: 'post', |
65 | data | 65 | data |
66 | }) | 66 | }) |
67 | } | 67 | } |
68 | 68 | ||
69 | // 获取抵押权 | 69 | // 获取抵押权 |
70 | export function getDiyaqList(data) { | 70 | export function getDiyaqList (data) { |
71 | return request({ | 71 | return request({ |
72 | url: '/djbDetail/getDiyaqList', | 72 | url: SERVER.SERVERAPI + '/rest/djbDetail/getDiyaqList', |
73 | method: 'post', | 73 | method: 'post', |
74 | data | 74 | data |
75 | }) | 75 | }) |
76 | } | 76 | } |
77 | // 获取地役权 | 77 | // 获取地役权 |
78 | export function getDiyiqList(data) { | 78 | export function getDiyiqList (data) { |
79 | return request({ | 79 | return request({ |
80 | url: '/djbDetail/getDiyiqList', | 80 | url: SERVER.SERVERAPI + '/rest/djbDetail/getDiyiqList', |
81 | method: 'post', | 81 | method: 'post', |
82 | data | 82 | data |
83 | }) | 83 | }) |
84 | } | 84 | } |
85 | // 获取预告登记 | 85 | // 获取预告登记 |
86 | export function getYgdjList(data) { | 86 | export function getYgdjList (data) { |
87 | return request({ | 87 | return request({ |
88 | url: '/djbDetail/getYgdjList', | 88 | url: SERVER.SERVERAPI + '/rest/djbDetail/getYgdjList', |
89 | method: 'post', | 89 | method: 'post', |
90 | data | 90 | data |
91 | }) | 91 | }) |
92 | } | 92 | } |
93 | // 获取异议登记 | 93 | // 获取异议登记 |
94 | export function getYydjList(data) { | 94 | export function getYydjList (data) { |
95 | return request({ | 95 | return request({ |
96 | url: '/djbDetail/getYydjList', | 96 | url: SERVER.SERVERAPI + '/rest/djbDetail/getYydjList', |
97 | method: 'post', | 97 | method: 'post', |
98 | data | 98 | data |
99 | }) | 99 | }) |
100 | } | 100 | } |
101 | // 获取查封登记 | 101 | // 获取查封登记 |
102 | export function getCfdjList(data) { | 102 | export function getCfdjList (data) { |
103 | return request({ | 103 | return request({ |
104 | url: '/djbDetail/getCfdjList', | 104 | url: SERVER.SERVERAPI + '/rest/djbDetail/getCfdjList', |
105 | method: 'post', | 105 | method: 'post', |
106 | data | 106 | data |
107 | }) | 107 | }) |
108 | } | 108 | } |
109 | // 获取数据比对集合 | 109 | // 获取数据比对集合 |
110 | export function getFdcqLSInfo(data) { | 110 | export function getFdcqLSInfo (data) { |
111 | return request({ | 111 | return request({ |
112 | url: '/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: '/sqcx/jtfc/getJtfcInfo/', | 6 | url: SERVER.SERVERAPI + '/rest/sqcx/jtfc/getJtfcInfo/', |
6 | method: 'get', | 7 | method: 'get', |
7 | params | 8 | params |
8 | }) | 9 | }) |
9 | } | 10 | } | ... | ... |
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: '/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: '/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: '/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: '/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: '/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: '/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: '/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: '/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: '/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: '/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: '/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: '/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: '/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: '/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: '/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: '/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: '/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: '/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: '/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: '/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 | */ |
... | @@ -7,134 +8,134 @@ import request from '@/utils/request' | ... | @@ -7,134 +8,134 @@ import request from '@/utils/request' |
7 | 登记簿查询 | 8 | 登记簿查询 |
8 | */ | 9 | */ |
9 | // 根据条件进行列表查询 | 10 | // 根据条件进行列表查询 |
10 | export function getDjbBysearch(data) { | 11 | export function getDjbBysearch (data) { |
11 | return request({ | 12 | return request({ |
12 | url: '/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 | }) |
16 | } | 17 | } |
17 | 18 | ||
18 | // 获取登记封面 | 19 | // 获取登记封面 |
19 | export function getDjbfm(qlbsm) { | 20 | export function getDjbfm (qlbsm) { |
20 | return request({ | 21 | return request({ |
21 | url: '/zhcx/djbcx/djbfm/' + qlbsm, | 22 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/djbfm/' + qlbsm, |
22 | method: 'get' | 23 | method: 'get' |
23 | }) | 24 | }) |
24 | } | 25 | } |
25 | 26 | ||
26 | // 获取登记目录 | 27 | // 获取登记目录 |
27 | export function getBdcqldjmlByBdcdyid(data) { | 28 | export function getBdcqldjmlByBdcdyid (data) { |
28 | return request({ | 29 | return request({ |
29 | url: '/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 | }) |
33 | } | 34 | } |
34 | 35 | ||
35 | // 获取宗地信息 | 36 | // 获取宗地信息 |
36 | export function getZdjbxx(qlbsm) { | 37 | export function getZdjbxx (qlbsm) { |
37 | return request({ | 38 | return request({ |
38 | url: '/zhcx/djbcx/zdjbxx/' + qlbsm, | 39 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/zdjbxx/' + qlbsm, |
39 | method: 'get' | 40 | method: 'get' |
40 | }) | 41 | }) |
41 | } | 42 | } |
42 | 43 | ||
43 | // 获取宗地信息 | 44 | // 获取宗地信息 |
44 | export function getZdjjxxBybdcdyid(data) { | 45 | export function getZdjjxxBybdcdyid (data) { |
45 | return request({ | 46 | return request({ |
46 | url: '/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 | }) |
50 | } | 51 | } |
51 | 52 | ||
52 | // 获取宗地信息 | 53 | // 获取宗地信息 |
53 | export function getZdjjxxBySLdy(data) { | 54 | export function getZdjjxxBySLdy (data) { |
54 | return request({ | 55 | return request({ |
55 | url: '/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 | }) |
59 | } | 60 | } |
60 | 61 | ||
61 | // 获取不动产权利及其他事项 | 62 | // 获取不动产权利及其他事项 |
62 | export function getBdcqljqtsx(data) { | 63 | export function getBdcqljqtsx (data) { |
63 | return request({ | 64 | return request({ |
64 | url: '/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 | }) |
68 | } | 69 | } |
69 | 70 | ||
70 | // 获取不动产权利及其他事项页面信息 | 71 | // 获取不动产权利及其他事项页面信息 |
71 | export function getQlname(qlbsm) { | 72 | export function getQlname (qlbsm) { |
72 | return request({ | 73 | return request({ |
73 | url: '/zhcx/djbcx/qlname/' + qlbsm, | 74 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/qlname/' + qlbsm, |
74 | method: 'get' | 75 | method: 'get' |
75 | }) | 76 | }) |
76 | } | 77 | } |
77 | 78 | ||
78 | // 获取权利详细信息 | 79 | // 获取权利详细信息 |
79 | export function getDetail(qlbsm) { | 80 | export function getDetail (qlbsm) { |
80 | return request({ | 81 | return request({ |
81 | url: '/zhcx/djbcx/detail/' + qlbsm, | 82 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/detail/' + qlbsm, |
82 | method: 'get' | 83 | method: 'get' |
83 | }) | 84 | }) |
84 | } | 85 | } |
85 | 86 | ||
86 | // 获取建设用地使用权 | 87 | // 获取建设用地使用权 |
87 | export function getJsydsyqList(data) { | 88 | export function getJsydsyqList (data) { |
88 | return request({ | 89 | return request({ |
89 | url: '/zhcx/djbcx/getJsydsyqList', | 90 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/getJsydsyqList', |
90 | method: 'post', | 91 | method: 'post', |
91 | data | 92 | data |
92 | }) | 93 | }) |
93 | } | 94 | } |
94 | // 获取抵押权 | 95 | // 获取抵押权 |
95 | export function getDiyaqList(data) { | 96 | export function getDiyaqList (data) { |
96 | return request({ | 97 | return request({ |
97 | url: '/zhcx/djbcx/getDiyaqList', | 98 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/getDiyaqList', |
98 | method: 'post', | 99 | method: 'post', |
99 | data | 100 | data |
100 | }) | 101 | }) |
101 | } | 102 | } |
102 | // 获取地役权 | 103 | // 获取地役权 |
103 | export function getDiyiqList(data) { | 104 | export function getDiyiqList (data) { |
104 | return request({ | 105 | return request({ |
105 | url: '/zhcx/djbcx/getDiyiqList', | 106 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/getDiyiqList', |
106 | method: 'post', | 107 | method: 'post', |
107 | data | 108 | data |
108 | }) | 109 | }) |
109 | } | 110 | } |
110 | // 获取预告登记 | 111 | // 获取预告登记 |
111 | export function getYgdjList(data) { | 112 | export function getYgdjList (data) { |
112 | return request({ | 113 | return request({ |
113 | url: '/zhcx/djbcx/getYgdjList', | 114 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/getYgdjList', |
114 | method: 'post', | 115 | method: 'post', |
115 | data | 116 | data |
116 | }) | 117 | }) |
117 | } | 118 | } |
118 | // 获取异议登记 | 119 | // 获取异议登记 |
119 | export function getYydjList(data) { | 120 | export function getYydjList (data) { |
120 | return request({ | 121 | return request({ |
121 | url: '/zhcx/djbcx/getYydjList', | 122 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/getYydjList', |
122 | method: 'post', | 123 | method: 'post', |
123 | data | 124 | data |
124 | }) | 125 | }) |
125 | } | 126 | } |
126 | // 获取查封登记 | 127 | // 获取查封登记 |
127 | export function getCfdjList(data) { | 128 | export function getCfdjList (data) { |
128 | return request({ | 129 | return request({ |
129 | url: '/zhcx/djbcx/getCfdjList', | 130 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/getCfdjList', |
130 | method: 'post', | 131 | method: 'post', |
131 | data | 132 | data |
132 | }) | 133 | }) |
133 | } | 134 | } |
134 | // 进度查询列表 | 135 | // 进度查询列表 |
135 | export function getJdcxBysearch(data) { | 136 | export function getJdcxBysearch (data) { |
136 | return request({ | 137 | return request({ |
137 | url: '/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: '/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: '/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: '/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: '/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: '/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: '/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: '/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: '/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: '/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: '/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: '/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: '/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: '/sys/zsgl/getZsglInfo', | 134 | url: SERVER.SERVERAPI + '/rest/sys/zsgl/getZsglInfo', |
134 | method: 'get', | 135 | method: 'get', |
135 | params | 136 | params |
136 | }) | 137 | }) | ... | ... |
1 | <template> | 1 | <template> |
2 | <transition name="fade" mode="out-in" v-if="isShow"> | 2 | <transition name="fade" mode="out-in" v-if="isShow"> |
3 | <div class="ls-mask" v-loading="loading"> | 3 | <div class="ls-mask" v-loading="loading"> |
4 | <div class="ls-mask-window" :style="{'width':width,'height':height}"> | 4 | <div class="ls-mask-window" :style="{ 'width': width, 'height': height }"> |
5 | <div class="ls-head"> | 5 | <div class="ls-head"> |
6 | <div class="ls-title" :style="{'text-align':titleStyle}"> | 6 | <div class="ls-title" :style="{ 'text-align': titleStyle }"> |
7 | <svg-icon v-if="iconClass!=''" :icon-class='iconClass' /> | 7 | <svg-icon v-if="iconClass != ''" :icon-class='iconClass' /> |
8 | <b>{{title}}</b> | 8 | <b>{{ title }}</b> |
9 | </div> | 9 | </div> |
10 | <svg-icon icon-class='close' class="closeStyle" @click="onCancel" /> | 10 | <svg-icon icon-class='close' class="closeStyle" @click="onCancel" /> |
11 | </div> | 11 | </div> |
12 | 12 | ||
13 | <div class="ls-mask-content" ref='contentRef' :style="{'height': contentHeight}"> | 13 | <div class="ls-mask-content" ref='contentRef' :style="{ 'height': contentHeight }"> |
14 | <component :is="editItem" ref='childRef' @loading='loadingFn' :key="key" :formData='formData' /> | 14 | <component :is="editItem" ref='childRef' @loading='loadingFn' :key="key" :formData='formData' /> |
15 | </div> | 15 | </div> |
16 | <div class="ls-mask-footer" v-if='btnShow'> | 16 | <div class="ls-mask-footer" v-if='btnShow'> |
17 | <el-button type="primary" @click="onConfirm">{{confirmText}}</el-button> | 17 | <el-button type="primary" @click="onConfirm">{{ confirmText }}</el-button> |
18 | <el-button @click="onCancel">{{cancelText}}</el-button> | 18 | <el-button @click="onCancel">{{ cancelText }}</el-button> |
19 | </div> | 19 | </div> |
20 | </div> | 20 | </div> |
21 | </div> | 21 | </div> |
... | @@ -51,7 +51,8 @@ export default { | ... | @@ -51,7 +51,8 @@ export default { |
51 | isShow (a, b) { | 51 | isShow (a, b) { |
52 | this.key++ | 52 | this.key++ |
53 | this.editItem = this.loadViewFn(this.editItem) | 53 | this.editItem = this.loadViewFn(this.editItem) |
54 | }, | 54 | document.body.appendChild(this.$el); |
55 | } | ||
55 | }, | 56 | }, |
56 | mounted () { | 57 | mounted () { |
57 | // 计算滚动条高度 | 58 | // 计算滚动条高度 | ... | ... |
... | @@ -11,9 +11,9 @@ const service = axios.create({ | ... | @@ -11,9 +11,9 @@ const service = axios.create({ |
11 | withCredentials: true, //是否允许跨域 | 11 | withCredentials: true, //是否允许跨域 |
12 | headers: { | 12 | headers: { |
13 | 'Content-Type': 'application/json; charset=utf-8', | 13 | 'Content-Type': 'application/json; charset=utf-8', |
14 | 'Authorization': 'bearer AT-16-oqkOHiUSsDdFA-eAZ49k2rJQDTzQpClO' | 14 | 'Authorization': 'bearer AT-4-MxSrO29Coe7VTazx8uuixtqqgO-hvCB6' |
15 | //token列表 | 15 | //token列表 |
16 | // 'Authorization': 'bearer AT-12-eRKHta5I8ZWftIU86sSyJ8rUkPhMvMJU' | 16 | //'Authorization': 'bearer AT-12-eRKHta5I8ZWftIU86sSyJ8rUkPhMvMJU' |
17 | //renc:bearer AT-30-KHB4LXc8-CZXwBEyaFJa9lRmMTc5sHVI | 17 | //renc:bearer AT-30-KHB4LXc8-CZXwBEyaFJa9lRmMTc5sHVI |
18 | //tianh:bearer AT-33-3zFTGkhQ4eUv4nXvzAmbgN5RPZppzEY6 | 18 | //tianh:bearer AT-33-3zFTGkhQ4eUv4nXvzAmbgN5RPZppzEY6 |
19 | //zhangh:bearer AT-7-Tx8dlZH0LNRc33UjD1CX1xwa-1D7kQmQ | 19 | //zhangh:bearer AT-7-Tx8dlZH0LNRc33UjD1CX1xwa-1D7kQmQ |
... | @@ -27,6 +27,10 @@ service.interceptors.request.use( | ... | @@ -27,6 +27,10 @@ service.interceptors.request.use( |
27 | if (config.showLoading) { | 27 | if (config.showLoading) { |
28 | startLoadingAddCount(config.loadingTarget); | 28 | startLoadingAddCount(config.loadingTarget); |
29 | } | 29 | } |
30 | config.headers.Authorization = | ||
31 | // 'bearer AT-231-XqviE9StKRPLMwmnSoVBLP-YzTupyBI5' | ||
32 | 'bearer AT-4-MxSrO29Coe7VTazx8uuixtqqgO-hvCB6' | ||
33 | config.headers.Accept = 'application/json' | ||
30 | return config | 34 | return config |
31 | }, | 35 | }, |
32 | error => { | 36 | error => { | ... | ... |
... | @@ -695,7 +695,7 @@ class data extends filter { | ... | @@ -695,7 +695,7 @@ class data extends filter { |
695 | label: "登记时间", | 695 | label: "登记时间", |
696 | }, | 696 | }, |
697 | { | 697 | { |
698 | prop: "jfywh", | 698 | prop: "zxywh", |
699 | label: "解封业务号", | 699 | label: "解封业务号", |
700 | }, | 700 | }, |
701 | { | 701 | { |
... | @@ -711,11 +711,11 @@ class data extends filter { | ... | @@ -711,11 +711,11 @@ class data extends filter { |
711 | label: "解封文件", | 711 | label: "解封文件", |
712 | }, | 712 | }, |
713 | { | 713 | { |
714 | prop: "jfdjsj", | 714 | prop: "zxsj", |
715 | label: "解封登记时间", | 715 | label: "解封登记时间", |
716 | }, | 716 | }, |
717 | { | 717 | { |
718 | prop: "jfdbr", | 718 | prop: "zxdbr", |
719 | label: "解封登簿人", | 719 | label: "解封登簿人", |
720 | }, | 720 | }, |
721 | ], | 721 | ], | ... | ... |
... | @@ -2,34 +2,24 @@ | ... | @@ -2,34 +2,24 @@ |
2 | <div class="from-clues"> | 2 | <div class="from-clues"> |
3 | <!-- 表单部分 --> | 3 | <!-- 表单部分 --> |
4 | <div class="from-clues-header"> | 4 | <div class="from-clues-header"> |
5 | <el-form :model="queryForm" ref="queryForm" label-width="80px"> | 5 | <el-form :model="queryForm" ref="queryForm" @submit.native.prevent label-width="70px"> |
6 | <el-row> | 6 | <el-row> |
7 | <el-col :span="5"> | 7 | <el-col :span="5"> |
8 | <el-form-item label="查询编号"> | 8 | <el-form-item label="查询编号"> |
9 | <el-input | 9 | <el-input placeholder="请输入编号" v-model="queryForm.cxbh" class="width100" clearable @clear="queryClick()"> |
10 | placeholder="请输入编号" | ||
11 | v-model="queryForm.cxbh" | ||
12 | class="width200px" | ||
13 | clearable | ||
14 | > | ||
15 | </el-input> | 10 | </el-input> |
16 | </el-form-item> | 11 | </el-form-item> |
17 | </el-col> | 12 | </el-col> |
18 | <el-col :span="5"> | 13 | <el-col :span="5"> |
19 | <el-form-item label="申请人"> | 14 | <el-form-item label="申请人"> |
20 | <el-input | 15 | <el-input placeholder="请输入申请人" v-model="queryForm.sqr" class="width100" @clear="queryClick()" clearable> |
21 | placeholder="请输入申请人" | ||
22 | v-model="queryForm.sqr" | ||
23 | class="width200px" | ||
24 | clearable | ||
25 | > | ||
26 | </el-input> | 16 | </el-input> |
27 | </el-form-item> | 17 | </el-form-item> |
28 | </el-col> | 18 | </el-col> |
29 | 19 | ||
30 | <el-col :span="14" class="btnColRight"> | 20 | <el-col :span="14" class="btnColRight"> |
31 | <el-form-item> | 21 | <el-form-item> |
32 | <el-button type="primary" @click="queryClick()">查询</el-button> | 22 | <el-button type="primary" native-type="submit" @click="queryClick()">查询</el-button> |
33 | <el-button @click="moreQueryClick()">高级查询</el-button> | 23 | <el-button @click="moreQueryClick()">高级查询</el-button> |
34 | </el-form-item> | 24 | </el-form-item> |
35 | </el-col> | 25 | </el-col> |
... | @@ -38,17 +28,9 @@ | ... | @@ -38,17 +28,9 @@ |
38 | </div> | 28 | </div> |
39 | <!-- 表格 --> | 29 | <!-- 表格 --> |
40 | <div class="from-clues-content"> | 30 | <div class="from-clues-content"> |
41 | <lb-table | 31 | <lb-table :page-size="pageData.size" border @sort-change="handleSort" :current-page.sync="pageData.current" |
42 | :page-size="pageData.size" | 32 | :total="tableData.total" @size-change="handleSizeChange" @p-current-change="handleCurrentChange" |
43 | border | 33 | :column="tableData.columns" :data="tableData.data"> |
44 | @sort-change="handleSort" | ||
45 | :current-page.sync="pageData.current" | ||
46 | :total="tableData.total" | ||
47 | @size-change="handleSizeChange" | ||
48 | @p-current-change="handleCurrentChange" | ||
49 | :column="tableData.columns" | ||
50 | :data="tableData.data" | ||
51 | > | ||
52 | </lb-table> | 34 | </lb-table> |
53 | </div> | 35 | </div> |
54 | </div> | 36 | </div> |
... | @@ -62,13 +44,13 @@ import { getJtfcPage } from "@/api/jtfc"; | ... | @@ -62,13 +44,13 @@ import { getJtfcPage } from "@/api/jtfc"; |
62 | export default { | 44 | export default { |
63 | name: "dydjb", | 45 | name: "dydjb", |
64 | mixins: [table], | 46 | mixins: [table], |
65 | mounted() { | 47 | mounted () { |
66 | sendThis(this); | 48 | sendThis(this); |
67 | }, | 49 | }, |
68 | computed: { | 50 | computed: { |
69 | ...mapGetters(["dictData"]), | 51 | ...mapGetters(["dictData"]), |
70 | }, | 52 | }, |
71 | data() { | 53 | data () { |
72 | return { | 54 | return { |
73 | queryForm: { | 55 | queryForm: { |
74 | cxbh: "", | 56 | cxbh: "", |
... | @@ -83,18 +65,18 @@ export default { | ... | @@ -83,18 +65,18 @@ export default { |
83 | }, | 65 | }, |
84 | methods: { | 66 | methods: { |
85 | // 初始化数据 | 67 | // 初始化数据 |
86 | fetchData() { | 68 | fetchData () { |
87 | getJtfcPage({ ...this.queryForm, ...this.pageData }).then((res) => { | 69 | getJtfcPage({ ...this.queryForm, ...this.pageData }).then((res) => { |
88 | let { records, total } = res.result; | 70 | let { records, total } = res.result; |
89 | this.tableData.data = records; | 71 | this.tableData.data = records; |
90 | this.tableData.total = total; | 72 | this.tableData.total = total; |
91 | }); | 73 | }); |
92 | }, | 74 | }, |
93 | handleSort(name, sort) { | 75 | handleSort (name, sort) { |
94 | console.log(name, sort); | 76 | console.log(name, sort); |
95 | }, | 77 | }, |
96 | 78 | ||
97 | dydjbClick(scope) { | 79 | dydjbClick (scope) { |
98 | // var sqcxBsm = scope.row.bsmSqcx; | 80 | // var sqcxBsm = scope.row.bsmSqcx; |
99 | this.$popup({ | 81 | this.$popup({ |
100 | title: "打印登记薄", | 82 | title: "打印登记薄", |
... | @@ -105,14 +87,14 @@ export default { | ... | @@ -105,14 +87,14 @@ export default { |
105 | formData: { | 87 | formData: { |
106 | sqcxdata: scope.row, | 88 | sqcxdata: scope.row, |
107 | }, | 89 | }, |
108 | cancel: function () {}, //取消事件的回调 | 90 | cancel: function () { }, //取消事件的回调 |
109 | confirm: function () { | 91 | confirm: function () { |
110 | // that.loadBdcdylist(); | 92 | // that.loadBdcdylist(); |
111 | }, //确认事件的回调 | 93 | }, //确认事件的回调 |
112 | }); | 94 | }); |
113 | }, | 95 | }, |
114 | 96 | ||
115 | queryClick() { | 97 | queryClick () { |
116 | this.fetchData(); | 98 | this.fetchData(); |
117 | }, | 99 | }, |
118 | }, | 100 | }, | ... | ... |
... | @@ -2,53 +2,32 @@ | ... | @@ -2,53 +2,32 @@ |
2 | <div class="from-clues"> | 2 | <div class="from-clues"> |
3 | <!-- 家庭房产 --> | 3 | <!-- 家庭房产 --> |
4 | <div class="from-clues-header"> | 4 | <div class="from-clues-header"> |
5 | <el-form :model="queryForm" ref="queryForm" label-width="70px"> | 5 | <el-form :model="queryForm" @submit.native.prevent ref="queryForm" label-width="70px"> |
6 | <el-row> | 6 | <el-row> |
7 | <el-col :span="5"> | 7 | <el-col :span="5"> |
8 | <el-form-item label="查询编号"> | 8 | <el-form-item label="查询编号"> |
9 | <el-input | 9 | <el-input placeholder="请输入查询编号" @clear="queryClick()" v-model="queryForm.cxbh" clearable class="width100"> |
10 | placeholder="请输入查询编号" | ||
11 | v-model="queryForm.cxbh" | ||
12 | clearable | ||
13 | class="width200px" | ||
14 | > | ||
15 | </el-input> | 10 | </el-input> |
16 | </el-form-item> | 11 | </el-form-item> |
17 | </el-col> | 12 | </el-col> |
18 | <el-col :span="5"> | 13 | <el-col :span="5"> |
19 | <el-form-item label="申请人"> | 14 | <el-form-item label="申请人"> |
20 | <el-input | 15 | <el-input placeholder="请输入申请人" @clear="queryClick()" v-model="queryForm.sqr" clearable class="width100"> |
21 | placeholder="请输入申请人" | ||
22 | v-model="queryForm.sqr" | ||
23 | clearable | ||
24 | class="width200px" | ||
25 | > | ||
26 | </el-input> | 16 | </el-input> |
27 | </el-form-item> | 17 | </el-form-item> |
28 | </el-col> | 18 | </el-col> |
29 | <el-col :span="14" class="btnColRight"> | 19 | <el-col :span="14" class="btnColRight"> |
30 | <el-button type="primary" @click="queryClick()" | 20 | <el-button type="primary" native-type="submit" @click="queryClick()">查询</el-button> |
31 | >查询</el-button | 21 | <el-button type="primary" @click="handleAdd">新增</el-button> |
32 | > | ||
33 | <el-button type="primary" @click="handleAdd" | ||
34 | >新增</el-button | ||
35 | > | ||
36 | </el-col> | 22 | </el-col> |
37 | </el-row> | 23 | </el-row> |
38 | </el-form> | 24 | </el-form> |
39 | </div> | 25 | </div> |
40 | <!-- 表格 --> | 26 | <!-- 表格 --> |
41 | <div class="from-clues-content"> | 27 | <div class="from-clues-content"> |
42 | <lb-table | 28 | <lb-table :page-size="pageData.size" border :current-page.sync="pageData.current" :total="tableData.total" |
43 | :page-size="pageData.size" | 29 | @size-change="handleSizeChange" @p-current-change="handleCurrentChange" :column="tableData.columns" |
44 | border | 30 | :data="tableData.data"> |
45 | :current-page.sync="pageData.current" | ||
46 | :total="tableData.total" | ||
47 | @size-change="handleSizeChange" | ||
48 | @p-current-change="handleCurrentChange" | ||
49 | :column="tableData.columns" | ||
50 | :data="tableData.data" | ||
51 | > | ||
52 | </lb-table> | 31 | </lb-table> |
53 | </div> | 32 | </div> |
54 | <addjtfc v-model="isDialog" /> | 33 | <addjtfc v-model="isDialog" /> |
... | @@ -63,10 +42,10 @@ export default { | ... | @@ -63,10 +42,10 @@ export default { |
63 | name: "jtfc", | 42 | name: "jtfc", |
64 | components: { addjtfc }, | 43 | components: { addjtfc }, |
65 | mixins: [table], | 44 | mixins: [table], |
66 | mounted() { | 45 | mounted () { |
67 | sendThis(this); | 46 | sendThis(this); |
68 | }, | 47 | }, |
69 | data() { | 48 | data () { |
70 | return { | 49 | return { |
71 | isDialog: false, | 50 | isDialog: false, |
72 | sqrOption: [], | 51 | sqrOption: [], |
... | @@ -84,22 +63,22 @@ export default { | ... | @@ -84,22 +63,22 @@ export default { |
84 | }; | 63 | }; |
85 | }, | 64 | }, |
86 | methods: { | 65 | methods: { |
87 | queryClick(){ | 66 | queryClick () { |
88 | this.fetchData(); | 67 | this.fetchData(); |
89 | }, | 68 | }, |
90 | 69 | ||
91 | // 初始化数据 | 70 | // 初始化数据 |
92 | fetchData() { | 71 | fetchData () { |
93 | getJtfcPage({ ...this.queryForm, ...this.pageData }).then((res) => { | 72 | getJtfcPage({ ...this.queryForm, ...this.pageData }).then((res) => { |
94 | let { records, total } = res.result; | 73 | let { records, total } = res.result; |
95 | this.tableData.data = records; | 74 | this.tableData.data = records; |
96 | this.tableData.total = total; | 75 | this.tableData.total = total; |
97 | }); | 76 | }); |
98 | }, | 77 | }, |
99 | handleSort(name, sort) { | 78 | handleSort (name, sort) { |
100 | console.log(name, sort); | 79 | console.log(name, sort); |
101 | }, | 80 | }, |
102 | handleAdd() { | 81 | handleAdd () { |
103 | this.isDialog = true; | 82 | this.isDialog = true; |
104 | }, | 83 | }, |
105 | }, | 84 | }, | ... | ... |
src/views/sqcx/sqcxjl/components/addjtfc.vue
0 → 100644
File mode changed
... | @@ -2,33 +2,23 @@ | ... | @@ -2,33 +2,23 @@ |
2 | <div class="from-clues"> | 2 | <div class="from-clues"> |
3 | <!-- 表单部分 --> | 3 | <!-- 表单部分 --> |
4 | <div class="from-clues-header"> | 4 | <div class="from-clues-header"> |
5 | <el-form :model="queryForm" ref="queryForm" label-width="80px"> | 5 | <el-form :model="queryForm" ref="queryForm" @submit.native.prevent label-width="70px"> |
6 | <el-row> | 6 | <el-row> |
7 | <el-col :span="5"> | 7 | <el-col :span="5"> |
8 | <el-form-item label="查询编号"> | 8 | <el-form-item label="查询编号"> |
9 | <el-input | 9 | <el-input placeholder="请输入编号" @clear="queryClick()" v-model="queryForm.cxbh" class="width100" clearable> |
10 | placeholder="请输入编号" | ||
11 | v-model="queryForm.cxbh" | ||
12 | class="width200px" | ||
13 | clearable | ||
14 | > | ||
15 | </el-input> | 10 | </el-input> |
16 | </el-form-item> | 11 | </el-form-item> |
17 | </el-col> | 12 | </el-col> |
18 | <el-col :span="5"> | 13 | <el-col :span="5"> |
19 | <el-form-item label="申请人"> | 14 | <el-form-item label="申请人"> |
20 | <el-input | 15 | <el-input placeholder="请输入申请人" @clear="queryClick()" v-model="queryForm.sqr" class="width100" clearable> |
21 | placeholder="请输入申请人" | ||
22 | v-model="queryForm.sqr" | ||
23 | class="width200px" | ||
24 | clearable | ||
25 | > | ||
26 | </el-input> | 16 | </el-input> |
27 | </el-form-item> | 17 | </el-form-item> |
28 | </el-col> | 18 | </el-col> |
29 | <el-col :span="14" class="btnColRight"> | 19 | <el-col :span="14" class="btnColRight"> |
30 | <el-form-item> | 20 | <el-form-item> |
31 | <el-button type="primary" @click="queryClick()">查询</el-button> | 21 | <el-button type="primary" native-type="submit" @click="queryClick()">查询</el-button> |
32 | <el-button @click="moreQueryClick()">高级查询</el-button> | 22 | <el-button @click="moreQueryClick()">高级查询</el-button> |
33 | </el-form-item> | 23 | </el-form-item> |
34 | </el-col> | 24 | </el-col> |
... | @@ -37,17 +27,9 @@ | ... | @@ -37,17 +27,9 @@ |
37 | </div> | 27 | </div> |
38 | <!-- 表格 --> | 28 | <!-- 表格 --> |
39 | <div class="from-clues-content"> | 29 | <div class="from-clues-content"> |
40 | <lb-table | 30 | <lb-table :page-size="pageData.size" border @sort-change="handleSort" :current-page.sync="pageData.current" |
41 | :page-size="pageData.size" | 31 | :total="tableData.total" @size-change="handleSizeChange" @p-current-change="handleCurrentChange" |
42 | border | 32 | :column="tableData.columns" :data="tableData.data"> |
43 | @sort-change="handleSort" | ||
44 | :current-page.sync="pageData.current" | ||
45 | :total="tableData.total" | ||
46 | @size-change="handleSizeChange" | ||
47 | @p-current-change="handleCurrentChange" | ||
48 | :column="tableData.columns" | ||
49 | :data="tableData.data" | ||
50 | > | ||
51 | </lb-table> | 33 | </lb-table> |
52 | </div> | 34 | </div> |
53 | </div> | 35 | </div> |
... | @@ -59,10 +41,10 @@ import { getJtfcPage } from "@/api/jtfc"; | ... | @@ -59,10 +41,10 @@ import { getJtfcPage } from "@/api/jtfc"; |
59 | export default { | 41 | export default { |
60 | name: "sqcxjl", | 42 | name: "sqcxjl", |
61 | mixins: [table], | 43 | mixins: [table], |
62 | mounted() { | 44 | mounted () { |
63 | sendThis(this); | 45 | sendThis(this); |
64 | }, | 46 | }, |
65 | data() { | 47 | data () { |
66 | return { | 48 | return { |
67 | queryForm: { | 49 | queryForm: { |
68 | cxbh: "", | 50 | cxbh: "", |
... | @@ -76,12 +58,12 @@ export default { | ... | @@ -76,12 +58,12 @@ export default { |
76 | }; | 58 | }; |
77 | }, | 59 | }, |
78 | methods: { | 60 | methods: { |
79 | queryClick() { | 61 | queryClick () { |
80 | this.fetchData(); | 62 | this.fetchData(); |
81 | }, | 63 | }, |
82 | 64 | ||
83 | // 初始化数据 | 65 | // 初始化数据 |
84 | fetchData() { | 66 | fetchData () { |
85 | 67 | ||
86 | getJtfcPage({ ...this.queryForm, ...this.pageData }).then((res) => { | 68 | getJtfcPage({ ...this.queryForm, ...this.pageData }).then((res) => { |
87 | let { records, total } = res.result; | 69 | let { records, total } = res.result; |
... | @@ -89,13 +71,13 @@ export default { | ... | @@ -89,13 +71,13 @@ export default { |
89 | this.tableData.total = total; | 71 | this.tableData.total = total; |
90 | }); | 72 | }); |
91 | }, | 73 | }, |
92 | handleSort(name, sort) { | 74 | handleSort (name, sort) { |
93 | console.log(name, sort); | 75 | console.log(name, sort); |
94 | }, | 76 | }, |
95 | 77 | ||
96 | // 查看 | 78 | // 查看 |
97 | handleViewClick(scope) { | 79 | handleViewClick (scope) { |
98 | var sqcxBsm = scope.row.bsmSqcx; | 80 | var sqcxBsm = scope.row.bsmSqcx; |
99 | this.$popup({ | 81 | this.$popup({ |
100 | title: "申请查询记录", | 82 | title: "申请查询记录", |
101 | width: "85%", | 83 | width: "85%", |
... | @@ -105,7 +87,7 @@ export default { | ... | @@ -105,7 +87,7 @@ export default { |
105 | formData: { | 87 | formData: { |
106 | sqcxBsm: sqcxBsm, | 88 | sqcxBsm: sqcxBsm, |
107 | }, | 89 | }, |
108 | cancel: function () {}, //取消事件的回调 | 90 | cancel: function () { }, //取消事件的回调 |
109 | confirm: function () { | 91 | confirm: function () { |
110 | // that.loadBdcdylist(); | 92 | // that.loadBdcdylist(); |
111 | }, //确认事件的回调 | 93 | }, //确认事件的回调 |
... | @@ -116,5 +98,4 @@ export default { | ... | @@ -116,5 +98,4 @@ export default { |
116 | </script> | 98 | </script> |
117 | <style scoped lang="scss"> | 99 | <style scoped lang="scss"> |
118 | @import "~@/styles/public.scss"; | 100 | @import "~@/styles/public.scss"; |
119 | |||
120 | </style> | 101 | </style> | ... | ... |
... | @@ -2,11 +2,12 @@ | ... | @@ -2,11 +2,12 @@ |
2 | <div class="from-clues"> | 2 | <div class="from-clues"> |
3 | <!-- 表单部分 --> | 3 | <!-- 表单部分 --> |
4 | <div class="from-clues-header"> | 4 | <div class="from-clues-header"> |
5 | <el-form :model="queryForm" ref="queryForm" label-width="80px"> | 5 | <el-form :model="queryForm" ref="queryForm" @submit.native.prevent label-width="80px"> |
6 | <el-row> | 6 | <el-row> |
7 | <el-col :span="5"> | 7 | <el-col :span="5"> |
8 | <el-form-item label="业务来源"> | 8 | <el-form-item label="业务来源"> |
9 | <el-select v-model="queryForm.ywly" class="width100" filterable clearable placeholder="请选择业务来源"> | 9 | <el-select v-model="queryForm.ywly" class="width100" @change="queryClick()" filterable clearable |
10 | placeholder="请选择业务来源"> | ||
10 | <el-option v-for="item in dictData['ywly']" :key="item.dcode" :label="item.dname" :value="item.dcode"> | 11 | <el-option v-for="item in dictData['ywly']" :key="item.dcode" :label="item.dname" :value="item.dcode"> |
11 | </el-option> | 12 | </el-option> |
12 | </el-select> | 13 | </el-select> |
... | @@ -14,7 +15,8 @@ | ... | @@ -14,7 +15,8 @@ |
14 | </el-col> | 15 | </el-col> |
15 | <el-col :span="5"> | 16 | <el-col :span="5"> |
16 | <el-form-item label="权利类型"> | 17 | <el-form-item label="权利类型"> |
17 | <el-select v-model="queryForm.qllx" class="width100" filterable clearable placeholder="请选择权利类型"> | 18 | <el-select v-model="queryForm.qllx" class="width100" @change="queryClick()" filterable clearable |
19 | placeholder="请选择权利类型"> | ||
18 | <el-option v-for="item in dictData['A8']" :key="item.dcode" :label="item.dname" :value="item.dcode"> | 20 | <el-option v-for="item in dictData['A8']" :key="item.dcode" :label="item.dname" :value="item.dcode"> |
19 | </el-option> | 21 | </el-option> |
20 | </el-select> | 22 | </el-select> |
... | @@ -22,7 +24,8 @@ | ... | @@ -22,7 +24,8 @@ |
22 | </el-col> | 24 | </el-col> |
23 | <el-col :span="5"> | 25 | <el-col :span="5"> |
24 | <el-form-item label="登记类型"> | 26 | <el-form-item label="登记类型"> |
25 | <el-select v-model="queryForm.djlx" class="width100" filterable clearable placeholder="请选择登记类型"> | 27 | <el-select v-model="queryForm.djlx" class="width100" @change="queryClick()" filterable clearable |
28 | placeholder="请选择登记类型"> | ||
26 | <el-option v-for="item in dictData['A21']" :key="item.dcode" :label="item.dname" :value="item.dcode"> | 29 | <el-option v-for="item in dictData['A21']" :key="item.dcode" :label="item.dname" :value="item.dcode"> |
27 | </el-option> | 30 | </el-option> |
28 | </el-select> | 31 | </el-select> |
... | @@ -30,14 +33,14 @@ | ... | @@ -30,14 +33,14 @@ |
30 | </el-col> | 33 | </el-col> |
31 | <el-col :span="5"> | 34 | <el-col :span="5"> |
32 | <el-form-item label="业务号"> | 35 | <el-form-item label="业务号"> |
33 | <el-input placeholder="请输入业务号" v-model="queryForm.ywh" clearable class="width200px"> | 36 | <el-input placeholder="请输入业务号" v-model="queryForm.ywh" @clear="queryClick()" clearable class="width200px"> |
34 | </el-input> | 37 | </el-input> |
35 | </el-form-item> | 38 | </el-form-item> |
36 | </el-col> | 39 | </el-col> |
37 | 40 | ||
38 | <el-col :span="4" class="btnColRight"> | 41 | <el-col :span="4" class="btnColRight"> |
39 | <el-form-item> | 42 | <el-form-item> |
40 | <el-button type="primary" @click="queryClick()">查询</el-button> | 43 | <el-button type="primary" native-type="submit" @click="queryClick()">查询</el-button> |
41 | <el-button @click="moreQueryClick()">高级查询</el-button> | 44 | <el-button @click="moreQueryClick()">高级查询</el-button> |
42 | </el-form-item> | 45 | </el-form-item> |
43 | </el-col> | 46 | </el-col> |
... | @@ -45,12 +48,12 @@ | ... | @@ -45,12 +48,12 @@ |
45 | <el-row class="advanced-search"> | 48 | <el-row class="advanced-search"> |
46 | <span>高级搜索条件:</span> | 49 | <span>高级搜索条件:</span> |
47 | <ul> | 50 | <ul> |
48 | <li v-for="(item,index) in searchList" :key="index"> | 51 | <li v-for="(item, index) in searchList" :key="index"> |
49 | {{item.name}}:{{item.value}} | 52 | {{ item.name }}:{{ item.value }} |
50 | <i class="el-icon-circle-close" @click="handelItem(index)"></i> | 53 | <i class="el-icon-circle-close" @click="handelItem(index)"></i> |
51 | </li> | 54 | </li> |
52 | </ul> | 55 | </ul> |
53 | <el-button class="clean-btn" type="text" v-if="searchList.length>0" @click.native="hanldeCleanAll">清除全部 | 56 | <el-button class="clean-btn" type="text" v-if="searchList.length > 0" @click.native="hanldeCleanAll">清除全部 |
54 | </el-button> | 57 | </el-button> |
55 | </el-row> | 58 | </el-row> |
56 | </el-form> | 59 | </el-form> | ... | ... |
... | @@ -2,11 +2,12 @@ | ... | @@ -2,11 +2,12 @@ |
2 | <div class="from-clues"> | 2 | <div class="from-clues"> |
3 | <!-- 表单部分 --> | 3 | <!-- 表单部分 --> |
4 | <div class="from-clues-header"> | 4 | <div class="from-clues-header"> |
5 | <el-form :model="queryForm" ref="queryForm" label-width="80px"> | 5 | <el-form :model="queryForm" ref="queryForm" @submit.native.prevent label-width="80px"> |
6 | <el-row> | 6 | <el-row> |
7 | <el-col :span="5"> | 7 | <el-col :span="5"> |
8 | <el-form-item label="业务来源"> | 8 | <el-form-item label="业务来源"> |
9 | <el-select v-model="queryForm.ywly" class="width100" filterable clearable placeholder="请选择业务来源"> | 9 | <el-select v-model="queryForm.ywly" @change="queryClick()" class="width100" filterable clearable |
10 | placeholder="请选择业务来源"> | ||
10 | <el-option v-for="item in dictData['ywly']" :key="item.dcode" :label="item.dname" :value="item.dcode"> | 11 | <el-option v-for="item in dictData['ywly']" :key="item.dcode" :label="item.dname" :value="item.dcode"> |
11 | </el-option> | 12 | </el-option> |
12 | </el-select> | 13 | </el-select> |
... | @@ -14,7 +15,8 @@ | ... | @@ -14,7 +15,8 @@ |
14 | </el-col> | 15 | </el-col> |
15 | <el-col :span="5"> | 16 | <el-col :span="5"> |
16 | <el-form-item label="权利类型"> | 17 | <el-form-item label="权利类型"> |
17 | <el-select v-model="queryForm.qllx" class="width100" filterable clearable placeholder="请选择权利类型"> | 18 | <el-select v-model="queryForm.qllx" @change="queryClick()" class="width100" filterable clearable |
19 | placeholder="请选择权利类型"> | ||
18 | <el-option v-for="item in dictData['A8']" :key="item.dcode" :label="item.dname" :value="item.dcode"> | 20 | <el-option v-for="item in dictData['A8']" :key="item.dcode" :label="item.dname" :value="item.dcode"> |
19 | </el-option> | 21 | </el-option> |
20 | </el-select> | 22 | </el-select> |
... | @@ -22,7 +24,8 @@ | ... | @@ -22,7 +24,8 @@ |
22 | </el-col> | 24 | </el-col> |
23 | <el-col :span="5"> | 25 | <el-col :span="5"> |
24 | <el-form-item label="登记类型"> | 26 | <el-form-item label="登记类型"> |
25 | <el-select v-model="queryForm.djlx" class="width100" filterable clearable placeholder="请选择登记类型"> | 27 | <el-select v-model="queryForm.djlx" @change="queryClick()" class="width100" filterable clearable |
28 | placeholder="请选择登记类型"> | ||
26 | <el-option v-for="item in dictData['A21']" :key="item.dcode" :label="item.dname" :value="item.dcode"> | 29 | <el-option v-for="item in dictData['A21']" :key="item.dcode" :label="item.dname" :value="item.dcode"> |
27 | </el-option> | 30 | </el-option> |
28 | </el-select> | 31 | </el-select> |
... | @@ -30,14 +33,14 @@ | ... | @@ -30,14 +33,14 @@ |
30 | </el-col> | 33 | </el-col> |
31 | <el-col :span="5"> | 34 | <el-col :span="5"> |
32 | <el-form-item label="业务号"> | 35 | <el-form-item label="业务号"> |
33 | <el-input placeholder="请输入业务号" v-model="queryForm.ywh" clearable class="width200px"> | 36 | <el-input placeholder="请输入业务号" v-model="queryForm.ywh" @clear="queryClick()" clearable class="width200px"> |
34 | </el-input> | 37 | </el-input> |
35 | </el-form-item> | 38 | </el-form-item> |
36 | </el-col> | 39 | </el-col> |
37 | 40 | ||
38 | <el-col :span="4" class="btnColRight"> | 41 | <el-col :span="4" class="btnColRight"> |
39 | <el-form-item> | 42 | <el-form-item> |
40 | <el-button type="primary" @click="queryClick()">查询</el-button> | 43 | <el-button type="primary" native-type="submit" @click="queryClick()">查询</el-button> |
41 | <el-button @click="moreQueryClick()">高级查询</el-button> | 44 | <el-button @click="moreQueryClick()">高级查询</el-button> |
42 | </el-form-item> | 45 | </el-form-item> |
43 | </el-col> | 46 | </el-col> |
... | @@ -45,12 +48,12 @@ | ... | @@ -45,12 +48,12 @@ |
45 | <el-row class="advanced-search"> | 48 | <el-row class="advanced-search"> |
46 | <span>高级搜索条件:</span> | 49 | <span>高级搜索条件:</span> |
47 | <ul> | 50 | <ul> |
48 | <li v-for="(item,index) in searchList" :key="index"> | 51 | <li v-for="(item, index) in searchList" :key="index"> |
49 | {{item.name}}:{{item.value}} | 52 | {{ item.name }}:{{ item.value }} |
50 | <i class="el-icon-circle-close" @click="handelItem(index)"></i> | 53 | <i class="el-icon-circle-close" @click="handelItem(index)"></i> |
51 | </li> | 54 | </li> |
52 | </ul> | 55 | </ul> |
53 | <el-button class="clean-btn" type="text" v-if="searchList.length>0" @click.native="hanldeCleanAll">清除全部 | 56 | <el-button class="clean-btn" type="text" v-if="searchList.length > 0" @click.native="hanldeCleanAll">清除全部 |
54 | </el-button> | 57 | </el-button> |
55 | </el-row> | 58 | </el-row> |
56 | </el-form> | 59 | </el-form> | ... | ... |
... | @@ -2,11 +2,12 @@ | ... | @@ -2,11 +2,12 @@ |
2 | <div class="from-clues"> | 2 | <div class="from-clues"> |
3 | <!-- 表单部分 --> | 3 | <!-- 表单部分 --> |
4 | <div class="from-clues-header"> | 4 | <div class="from-clues-header"> |
5 | <el-form :model="queryForm" ref="queryForm" label-width="70px"> | 5 | <el-form :model="queryForm" ref="queryForm" @submit.native.prevent label-width="80px"> |
6 | <el-row> | 6 | <el-row> |
7 | <el-col :span="5"> | 7 | <el-col :span="5"> |
8 | <el-form-item label="业务来源"> | 8 | <el-form-item label="业务来源"> |
9 | <el-select v-model="queryForm.ywly" filterable clearable placeholder="请选择业务来源"> | 9 | <el-select v-model="queryForm.ywly" class="width100" @change="fetchData()" filterable clearable |
10 | placeholder="请选择业务来源"> | ||
10 | <el-option v-for="item in dictData['ywly']" :key="item.dcode" :label="item.dname" :value="item.dcode"> | 11 | <el-option v-for="item in dictData['ywly']" :key="item.dcode" :label="item.dname" :value="item.dcode"> |
11 | </el-option> | 12 | </el-option> |
12 | </el-select> | 13 | </el-select> |
... | @@ -14,7 +15,8 @@ | ... | @@ -14,7 +15,8 @@ |
14 | </el-col> | 15 | </el-col> |
15 | <el-col :span="5"> | 16 | <el-col :span="5"> |
16 | <el-form-item label="权利类型"> | 17 | <el-form-item label="权利类型"> |
17 | <el-select v-model="queryForm.qllx" filterable clearable placeholder="请选择权利类型"> | 18 | <el-select v-model="queryForm.qllx" class="width100" @change="fetchData()" filterable clearable |
19 | placeholder="请选择权利类型"> | ||
18 | <el-option v-for="item in dictData['A8']" :key="item.dcode" :label="item.dname" :value="item.dcode"> | 20 | <el-option v-for="item in dictData['A8']" :key="item.dcode" :label="item.dname" :value="item.dcode"> |
19 | </el-option> | 21 | </el-option> |
20 | </el-select> | 22 | </el-select> |
... | @@ -22,7 +24,8 @@ | ... | @@ -22,7 +24,8 @@ |
22 | </el-col> | 24 | </el-col> |
23 | <el-col :span="5"> | 25 | <el-col :span="5"> |
24 | <el-form-item label="登记类型"> | 26 | <el-form-item label="登记类型"> |
25 | <el-select v-model="queryForm.djlx" filterable clearable placeholder="请选择登记类型"> | 27 | <el-select v-model="queryForm.djlx" class="width100" @change="fetchData()" filterable clearable |
28 | placeholder="请选择登记类型"> | ||
26 | <el-option v-for="item in dictData['A21']" :key="item.dcode" :label="item.dname" :value="item.dcode"> | 29 | <el-option v-for="item in dictData['A21']" :key="item.dcode" :label="item.dname" :value="item.dcode"> |
27 | </el-option> | 30 | </el-option> |
28 | </el-select> | 31 | </el-select> |
... | @@ -30,14 +33,14 @@ | ... | @@ -30,14 +33,14 @@ |
30 | </el-col> | 33 | </el-col> |
31 | <el-col :span="5"> | 34 | <el-col :span="5"> |
32 | <el-form-item label="业务号"> | 35 | <el-form-item label="业务号"> |
33 | <el-input placeholder="请输入业务号" v-model="queryForm.ywh" clearable class="width200px"> | 36 | <el-input placeholder="请输入业务号" v-model="queryForm.ywh" @clear="fetchData()" clearable class="width200px"> |
34 | </el-input> | 37 | </el-input> |
35 | </el-form-item> | 38 | </el-form-item> |
36 | </el-col> | 39 | </el-col> |
37 | 40 | ||
38 | <el-col :span="4" class="btnColRight"> | 41 | <el-col :span="4" class="btnColRight"> |
39 | <el-form-item> | 42 | <el-form-item> |
40 | <el-button type="primary" @click="queryClick()">查询</el-button> | 43 | <el-button type="primary" native-type="submit" @click="fetchData()">查询</el-button> |
41 | <el-button @click="moreQueryClick()">高级查询</el-button> | 44 | <el-button @click="moreQueryClick()">高级查询</el-button> |
42 | </el-form-item> | 45 | </el-form-item> |
43 | </el-col> | 46 | </el-col> |
... | @@ -46,9 +49,9 @@ | ... | @@ -46,9 +49,9 @@ |
46 | </div> | 49 | </div> |
47 | <!-- 表格 --> | 50 | <!-- 表格 --> |
48 | <div class="from-clues-content"> | 51 | <div class="from-clues-content"> |
49 | <lb-table border :page-size="pageData.pageSize" @sort-change="handleSort" :current-page.sync="pageData.currentPage" | 52 | <lb-table border :page-size="pageData.pageSize" @sort-change="handleSort" |
50 | :total="pageData.total" @size-change="handleSizeChange" @p-current-change="handleCurrentChange" | 53 | :current-page.sync="pageData.currentPage" :total="pageData.total" @size-change="handleSizeChange" |
51 | :column="tableData.columns" :data="tableData.data"> | 54 | @p-current-change="handleCurrentChange" :column="tableData.columns" :data="tableData.data"> |
52 | </lb-table> | 55 | </lb-table> |
53 | </div> | 56 | </div> |
54 | </div> | 57 | </div> | ... | ... |
... | @@ -32,25 +32,26 @@ module.exports = { | ... | @@ -32,25 +32,26 @@ module.exports = { |
32 | port: port, | 32 | port: port, |
33 | open: true, | 33 | open: true, |
34 | disableHostCheck: true, | 34 | disableHostCheck: true, |
35 | host: "0.0.0.0", | ||
35 | overlay: { | 36 | overlay: { |
36 | warnings: false, | 37 | warnings: false, |
37 | errors: true | 38 | errors: true |
38 | }, | 39 | }, |
39 | proxy: { | 40 | proxy: { |
40 | '/bdcdj': { | 41 | '/api': { |
41 | target: process.env.VUE_APP_API_BASE_URL,//本机服务 | 42 | target: process.env.VUE_APP_API_BASE_URL,//本机服务 |
42 | changeOrigin: true, | 43 | changeOrigin: true, |
43 | pathRewrite: { | 44 | pathRewrite: { |
44 | '^/bdcdj': '' | 45 | '^/api': '' |
45 | } | ||
46 | }, | ||
47 | '/service-bdcdj': { | ||
48 | target: process.env.VUE_APP_API_BASE_URL, | ||
49 | changeOrigin: true, | ||
50 | pathRewrite: { | ||
51 | '^/service-bdcdj': '' | ||
52 | } | 46 | } |
53 | } | 47 | } |
48 | // '': { | ||
49 | // target: process.env.VUE_APP_API_BASE_URL, | ||
50 | // changeOrigin: true, | ||
51 | // pathRewrite: { | ||
52 | // '^': '' | ||
53 | // } | ||
54 | // } | ||
54 | }, | 55 | }, |
55 | }, | 56 | }, |
56 | css: { | 57 | css: { | ... | ... |
-
Please register or sign in to post a comment