修改申请查询字段优化
Showing
12 changed files
with
93 additions
and
519 deletions
1 | <!-- | ||
2 | * @Description: | ||
3 | * @Autor: renchao | ||
4 | * @LastEditTime: 2023-10-10 15:54:58 | ||
5 | --> | ||
6 | <template> | ||
7 | <div class="from-clues"> | ||
8 | <el-tabs type="card" v-model="activeName" @tab-click="handleTabClick" v-if="!isJump"> | ||
9 | <el-tab-pane label="自然幢" name="zrz"></el-tab-pane> | ||
10 | <el-tab-pane label="多幢" name="dz" v-if="sqywInfo.djywbm !== 'B37100'"></el-tab-pane> | ||
11 | </el-tabs> | ||
12 | <div v-show="activeName == 'zrz'"> | ||
13 | <div class="from-clues-header"> | ||
14 | <el-form :model="queryzrzForm" ref="queryzrzForm" label-width="110px"> | ||
15 | <el-row> | ||
16 | <el-col :span="7"> | ||
17 | <el-form-item label="宗地代码"> | ||
18 | <el-input placeholder="请输入宗地代码" v-model="queryzrzForm.zddm" clearable> | ||
19 | </el-input> | ||
20 | </el-form-item> | ||
21 | </el-col> | ||
22 | <el-col :span="7"> | ||
23 | <el-form-item label="土地证号"> | ||
24 | <el-input placeholder="请输入土地证号" v-model="queryzrzForm.bdcqzh" clearable> | ||
25 | </el-input> | ||
26 | </el-form-item> | ||
27 | </el-col> | ||
28 | <el-col :span="7"> | ||
29 | <el-form-item label="土地坐落"> | ||
30 | <el-input placeholder="请输入土地坐落" v-model="queryzrzForm.zl" clearable> | ||
31 | </el-input> | ||
32 | </el-form-item> | ||
33 | </el-col> | ||
34 | </el-row> | ||
35 | <el-row> | ||
36 | <el-col :span="7"> | ||
37 | <el-form-item label="自然幢号"> | ||
38 | <el-input placeholder="请输入自然幢号" v-model="queryzrzForm.zrzh" clearable> | ||
39 | </el-input> | ||
40 | </el-form-item> | ||
41 | </el-col> | ||
42 | <el-col :span="7"> | ||
43 | <el-form-item label="项目名称"> | ||
44 | <el-input placeholder="请输入项目名称" v-model="queryzrzForm.xmmc"></el-input> | ||
45 | </el-form-item> | ||
46 | </el-col> | ||
47 | <el-col :span="7"> | ||
48 | <el-form-item label="建筑物名称"> | ||
49 | <el-input placeholder="请输入建筑物名称" v-model="queryzrzForm.jzwmc" clearable> | ||
50 | </el-input> | ||
51 | </el-form-item> | ||
52 | </el-col> | ||
53 | |||
54 | <el-col :span="3" class="btnColRight"> | ||
55 | <el-form-item> | ||
56 | <el-button type="primary" @click="handleSearch">查询</el-button> | ||
57 | <el-button type="primary" @click="resetForm(true)">重置</el-button> | ||
58 | </el-form-item> | ||
59 | </el-col> | ||
60 | </el-row> | ||
61 | </el-form> | ||
62 | </div> | ||
63 | <div class="from-clues-content loadingtext"> | ||
64 | <lb-table ref="table1" @row-click="handleRowClick" :page-size="pageData.pageSize" :calcHeight="300" | ||
65 | :current-page.sync="pageData.currentPage" :total="zrztableData.total" @size-change="handleSizeChange" @select="select" | ||
66 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="zrztableData.columns" | ||
67 | :data="zrztableData.data"> | ||
68 | </lb-table> | ||
69 | </div> | ||
70 | <div class="submit_button"> | ||
71 | <el-button @click="$popupCacel">取消</el-button> | ||
72 | <el-button type="primary" plain @click="submitForm" :loading="loading">发起申请</el-button> | ||
73 | </div> | ||
74 | </div> | ||
75 | <div v-show="activeName == 'dz'"> | ||
76 | <div class="from-clues-header"> | ||
77 | <el-form :model="querydzForm" ref="querydzForm" label-width="110px"> | ||
78 | <el-row> | ||
79 | <el-col :span="7"> | ||
80 | <el-form-item label="宗地代码"> | ||
81 | <el-input placeholder="请输入宗地代码" v-model="querydzForm.zddm" clearable> | ||
82 | </el-input> | ||
83 | </el-form-item> | ||
84 | </el-col> | ||
85 | <el-col :span="7"> | ||
86 | <el-form-item label="坐落"> | ||
87 | <el-input placeholder="请输入土地坐落" v-model="querydzForm.zl" clearable> | ||
88 | </el-input> | ||
89 | </el-form-item> | ||
90 | </el-col> | ||
91 | <el-col :span="10" class="btnColRight"> | ||
92 | <el-form-item> | ||
93 | <!-- <el-button type="primary" @click="resetForm(true)">重置</el-button> --> | ||
94 | <el-button type="primary" @click="handleSearch">查询</el-button> | ||
95 | </el-form-item> | ||
96 | </el-col> | ||
97 | </el-row> | ||
98 | |||
99 | </el-form> | ||
100 | </div> | ||
101 | <div class="from-clues-content loadingtext"> | ||
102 | <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :calcHeight="262" | ||
103 | :current-page.sync="pageData.currentPage" :total="dztableData.total" @size-change="handleSizeChange" @select="select" | ||
104 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="dztableData.columns" | ||
105 | :data="dztableData.data"> | ||
106 | </lb-table> | ||
107 | </div> | ||
108 | <div class="submit_button"> | ||
109 | <el-button @click="$popupCacel">取消</el-button> | ||
110 | <el-button type="primary" plain @click="submitForm" :loading="loading">发起申请</el-button> | ||
111 | </div> | ||
112 | </div> | ||
113 | </div> | ||
114 | </template> | ||
115 | <script> | ||
116 | import Vue from 'vue' | ||
117 | import store from '@/store/index.js' | ||
118 | import table from "@/utils/mixin/table"; | ||
119 | //国有建设用地使用权/房屋使用权 | ||
120 | import { ywPopupDialog } from "@/utils/popup.js"; | ||
121 | import { datas, sendThis } from "../javascript/fwsyq.js"; | ||
122 | import jump from "@/views/ywbl/ywsq/components/mixin/jump"; | ||
123 | import { selectOtherH, selectZrz, selectDz } from "@/api/ywsq.js"; | ||
124 | import { startBusinessFlow, choiceBdcdy } from "@/api/workFlow.js"; | ||
125 | export default { | ||
126 | mixins: [table, jump], | ||
127 | props: { | ||
128 | isJump: { type: Boolean, default: false }, | ||
129 | sqywInfo: { type: Object, default: () => { } }, | ||
130 | }, | ||
131 | data () { | ||
132 | return { | ||
133 | loading: false, | ||
134 | activeName: 'zrz', | ||
135 | queryzrzForm: { | ||
136 | qllx: '', | ||
137 | bdcdyh: '', | ||
138 | ywh: '', | ||
139 | bdcqzh: '' | ||
140 | }, | ||
141 | querydzForm: { | ||
142 | qllx: '', | ||
143 | bdcdyh: '', | ||
144 | ywh: '', | ||
145 | bdcqzh: '' | ||
146 | }, | ||
147 | zrztableData: { | ||
148 | total: 0, | ||
149 | columns: datas.zrzcolumns(), | ||
150 | data: [], | ||
151 | }, | ||
152 | dztableData: { | ||
153 | total: 0, | ||
154 | columns: datas.dzcolumns(), | ||
155 | data: [], | ||
156 | }, | ||
157 | bdcdysz: [], | ||
158 | }; | ||
159 | }, | ||
160 | mounted () { | ||
161 | sendThis(this) | ||
162 | }, | ||
163 | methods: { | ||
164 | /** | ||
165 | * @description: queryClick | ||
166 | * @author: renchao | ||
167 | */ | ||
168 | queryClick () { | ||
169 | this.$startLoading(); | ||
170 | if (!this.isJump) { | ||
171 | //从业务办理进入 | ||
172 | if (this.activeName == "zrz") { | ||
173 | this.queryzrzForm.sqywbm = this.sqywInfo.djywbm; | ||
174 | this.queryzrzForm.fwfl = this.activeName; | ||
175 | selectZrz({ ...this.queryzrzForm, ...this.pageData }).then((res) => { | ||
176 | this.$endLoading(); | ||
177 | if (res.code === 200) { | ||
178 | this.zrztableData.total = res.result.total; | ||
179 | this.zrztableData.data = res.result.records; | ||
180 | } | ||
181 | }); | ||
182 | } else { | ||
183 | this.querydzForm.sqywbm = this.sqywInfo.djywbm; | ||
184 | this.querydzForm.fwfl = this.activeName; | ||
185 | selectDz({ ...this.querydzForm, ...this.pageData }).then((res) => { | ||
186 | this.$endLoading(); | ||
187 | if (res.code === 200) { | ||
188 | this.dztableData.total = res.result.total; | ||
189 | this.dztableData.data = res.result.records; | ||
190 | } | ||
191 | }) | ||
192 | } | ||
193 | |||
194 | } else { | ||
195 | //从办理框架选择不动产单元进入 | ||
196 | //房屋首次办理选择不动产需找出对应自然幢下未选择的户 | ||
197 | this.queryzrzForm.bsmSlsq = Vue.prototype.$currentRoute.query.bsmSlsq; | ||
198 | selectOtherH({ ...this.queryzrzForm, ...this.pageData }).then((res) => { | ||
199 | this.$endLoading(); | ||
200 | if (res.code === 200) { | ||
201 | let { total, records } = res.result; | ||
202 | this.zrztableData.total = total; | ||
203 | this.zrztableData.data = records; | ||
204 | } | ||
205 | }) | ||
206 | } | ||
207 | }, | ||
208 | /** | ||
209 | * @description: handleTabClick | ||
210 | * @author: renchao | ||
211 | */ | ||
212 | handleTabClick () { | ||
213 | this.bdcdysz = [], | ||
214 | this.pageData.currentPage = 1; | ||
215 | this.queryClick(); | ||
216 | }, | ||
217 | /** | ||
218 | * @description: submitForm | ||
219 | * @author: renchao | ||
220 | */ | ||
221 | submitForm () { | ||
222 | if (this.bdcdysz.length == 0) { | ||
223 | this.$message.error("请至少选择一条数据"); | ||
224 | return; | ||
225 | } | ||
226 | if (!this.isJump) { | ||
227 | this.loading = true | ||
228 | startBusinessFlow({ | ||
229 | bsmSqyw: this.sqywInfo.bsmSqyw, | ||
230 | //sjlx: 'zrz', | ||
231 | sjlx: this.activeName, | ||
232 | bdcdysz: this.bdcdysz, | ||
233 | }).then((res) => { | ||
234 | this.loading = false | ||
235 | if (res.code == 200) { | ||
236 | this.$message({ | ||
237 | showClose: true, | ||
238 | message: '发起申请成功', | ||
239 | type: 'success' | ||
240 | }) | ||
241 | if (!this.isJump) { | ||
242 | this.jump(res.result, this.sqywInfo.djywbm); | ||
243 | } else { | ||
244 | store.dispatch('user/refreshPage', true); | ||
245 | } | ||
246 | this.$popupCacel() | ||
247 | } else { | ||
248 | if (res.result && res.result.length > 0) { | ||
249 | ywPopupDialog("申请错误明细", "components/ywdialog", { result: res.result }, '36%', true) | ||
250 | } else { | ||
251 | ywPopupDialog("申请错误明细", "components/ywdialog", { message: res.message }, '36%', true) | ||
252 | } | ||
253 | } | ||
254 | }).catch(() => { | ||
255 | this.loading = false | ||
256 | }) | ||
257 | } else { | ||
258 | this.loading = true | ||
259 | choiceBdcdy({ | ||
260 | bsmSlsq: Vue.prototype.$currentRoute.query.bsmSlsq, | ||
261 | bdcdysz: this.bdcdysz | ||
262 | }).then(res => { | ||
263 | this.loading = false | ||
264 | if (res.code == 200) { | ||
265 | this.$message({ | ||
266 | showClose: true, | ||
267 | message: '发起申请成功', | ||
268 | type: 'success' | ||
269 | }) | ||
270 | store.dispatch('user/refreshPage', true); | ||
271 | this.$popupCacel() | ||
272 | } else { | ||
273 | if (res.result && res.result.length > 0) { | ||
274 | ywPopupDialog("申请错误明细", "components/ywdialog", { result: res.result }, '36%', true) | ||
275 | } else { | ||
276 | ywPopupDialog("申请错误明细", "components/ywdialog", { message: res.message }, '36%', true) | ||
277 | } | ||
278 | } | ||
279 | }).catch(() => { | ||
280 | this.loading = false | ||
281 | }) | ||
282 | } | ||
283 | }, | ||
284 | /** | ||
285 | * @description: handleSelectionChange | ||
286 | * @param {*} val | ||
287 | * @author: renchao | ||
288 | */ | ||
289 | handleSelectionChange (val) { | ||
290 | if (this.sqywInfo.sqywdylx == "1") { | ||
291 | if (val.length > 1) { | ||
292 | this.bdcdysz = [...val[val.length - 1]]; | ||
293 | } else { | ||
294 | this.bdcdysz = val; | ||
295 | } | ||
296 | } else { | ||
297 | this.bdcdysz = val; | ||
298 | } | ||
299 | }, | ||
300 | /** | ||
301 | * @description: handleLpbClick | ||
302 | * @param {*} item | ||
303 | * @author: renchao | ||
304 | */ | ||
305 | handleLpbClick (item) { | ||
306 | ywPopupDialog('楼盘表', 'lpb/index', { | ||
307 | bsm: item.bsm, | ||
308 | bsmSqyw: this.sqywInfo.bsmSqyw, | ||
309 | onlyShow: false, | ||
310 | scyclx: 1 | ||
311 | }, '85%', true, false) | ||
312 | }, | ||
313 | /** | ||
314 | * @description: select | ||
315 | * @param {*} selection | ||
316 | * @param {*} row | ||
317 | * @author: renchao | ||
318 | */ | ||
319 | select (selection, row) { | ||
320 | if (this.sqywInfo.sqywdylx == "1") { | ||
321 | // 清除 所有勾选项 | ||
322 | this.$refs.table.clearSelection() | ||
323 | // 当表格数据都没有被勾选的时候 就返回 | ||
324 | // 主要用于将当前勾选的表格状态清除 | ||
325 | if (selection.length == 0) return | ||
326 | this.$refs.table.toggleRowSelection(row, true); | ||
327 | } | ||
328 | }, | ||
329 | /** | ||
330 | * @description: handleRowClick | ||
331 | * @param {*} row | ||
332 | * @author: renchao | ||
333 | */ | ||
334 | handleRowClick (row) { | ||
335 | // 自然幢单选,多幢多选 | ||
336 | let refs = 'table1'; | ||
337 | if (this.activeName == 'dz') { | ||
338 | refs = 'table'; | ||
339 | } else { | ||
340 | this.sqywInfo.djywbm !== 'B37100' && this.$refs[refs].clearSelection() | ||
341 | } | ||
342 | const bdcdysz = this.bdcdysz | ||
343 | if (bdcdysz.length > 0) { | ||
344 | bdcdysz.forEach(item => { | ||
345 | // 判断 如果当前的一行被勾选, 再次点击的时候就会取消选中 | ||
346 | if (item == row) { | ||
347 | this.$nextTick(() => { this.$refs[refs].toggleRowSelection(row, false); }) | ||
348 | } | ||
349 | // 不然就让当前的一行勾选 | ||
350 | else { | ||
351 | this.$refs[refs].toggleRowSelection(row, true); | ||
352 | } | ||
353 | }) | ||
354 | } | ||
355 | else { | ||
356 | this.$refs[refs].toggleRowSelection(row, true); | ||
357 | } | ||
358 | }, | ||
359 | /** | ||
360 | * @description: openBook | ||
361 | * @param {*} row | ||
362 | * @author: miaofang | ||
363 | */ | ||
364 | openBook (row) { | ||
365 | var param = { | ||
366 | bdcdyid: row.bdcdyid, | ||
367 | qllx: row.qllx, | ||
368 | bdcdyh: row.bdcdyh, | ||
369 | bsmQlxx: row.bsmQlxx, | ||
370 | }; | ||
371 | this.$popup("登记簿详情", "registerBook/djbFrame", { | ||
372 | formData: param | ||
373 | }) | ||
374 | }, | ||
375 | dzlist (row) { | ||
376 | var param = { | ||
377 | bdcdyid: row.bdcdyid, | ||
378 | qllx: row.qllx, | ||
379 | bdcdyh: row.bdcdyh, | ||
380 | bsmQlxx: row.bsmQlxx, | ||
381 | }; | ||
382 | this.$popup("自然幢列表", "registerBook/dzlist", { | ||
383 | formData: param | ||
384 | }) | ||
385 | }, | ||
386 | } | ||
387 | } | ||
388 | </script> | ||
389 | <style scoped lang="scss"> | ||
390 | @import "~@/styles/mixin.scss"; | ||
391 | @import "~@/styles/public.scss"; | ||
392 | </style> |
... | @@ -10,45 +10,37 @@ | ... | @@ -10,45 +10,37 @@ |
10 | <div class="from-clues-header"> | 10 | <div class="from-clues-header"> |
11 | <el-form :model="queryForm" ref="queryForm" label-width="100px"> | 11 | <el-form :model="queryForm" ref="queryForm" label-width="100px"> |
12 | <el-row> | 12 | <el-row> |
13 | <el-col :span="6"> | 13 | <el-col :span="8"> |
14 | <el-form-item label="权利类型"> | 14 | <el-form-item label="业务号"> |
15 | <el-select v-model="queryForm.qllx" class="width100" filterable clearable placeholder="请选择权利类型"> | 15 | <el-input placeholder="请输入业务号" v-model="queryForm.ywh" clearable> |
16 | <el-option v-for="item in qllxList" :key="item.dcode" :label="item.dname" :value="item.dcode"> | 16 | </el-input> |
17 | </el-option> | ||
18 | </el-select> | ||
19 | </el-form-item> | 17 | </el-form-item> |
20 | </el-col> | 18 | </el-col> |
21 | <el-col :span="6"> | 19 | <el-col :span="8"> |
22 | <el-form-item label="不动产单元号"> | 20 | <el-form-item label="不动产单元号"> |
23 | <el-input placeholder="请输入不动产单元号" maxlength="28" v-model="queryForm.bdcdyh" clearable> | 21 | <el-input placeholder="请输入不动产单元号" maxlength="28" v-model="queryForm.bdcdyh" clearable> |
24 | </el-input> | 22 | </el-input> |
25 | </el-form-item> | 23 | </el-form-item> |
26 | </el-col> | 24 | </el-col> |
27 | <el-col :span="6"> | 25 | <el-col :span="8"> |
28 | <el-form-item label="业务号"> | ||
29 | <el-input placeholder="请输入业务号" v-model="queryForm.ywh" clearable> | ||
30 | </el-input> | ||
31 | </el-form-item> | ||
32 | </el-col> | ||
33 | <el-col :span="6"> | ||
34 | <el-form-item label="不动产权证号"> | 26 | <el-form-item label="不动产权证号"> |
35 | <el-input placeholder="请输入不动产权证号" v-model="queryForm.bdcqzh" clearable> | 27 | <el-input placeholder="请输入不动产权证号全部数字" v-model="queryForm.bdcqzh" clearable> |
36 | </el-input> | 28 | </el-input> |
37 | </el-form-item> | 29 | </el-form-item> |
38 | </el-col> | 30 | </el-col> |
39 | <el-col :span="6"> | 31 | <el-col :span="8"> |
40 | <el-form-item label="权利人"> | 32 | <el-form-item label="权利人"> |
41 | <el-input placeholder="请输入权利人" v-model.trim="queryForm.qlr" clearable class="width100"> | 33 | <el-input placeholder="请输入权利人" v-model.trim="queryForm.qlr" clearable class="width100"> |
42 | </el-input> | 34 | </el-input> |
43 | </el-form-item> | 35 | </el-form-item> |
44 | </el-col> | 36 | </el-col> |
45 | <el-col :span="6"> | 37 | <el-col :span="8"> |
46 | <el-form-item label="证件号"> | 38 | <el-form-item label="证件号"> |
47 | <el-input placeholder="请输入证件号" v-model.trim="queryForm.zjh" clearable class="width100"> | 39 | <el-input placeholder="请输入证件号" v-model.trim="queryForm.zjh" clearable class="width100"> |
48 | </el-input> | 40 | </el-input> |
49 | </el-form-item> | 41 | </el-form-item> |
50 | </el-col> | 42 | </el-col> |
51 | <el-col :span="12" class="btnColRight"> | 43 | <el-col :span="8" class="btnColRight"> |
52 | <el-form-item> | 44 | <el-form-item> |
53 | <el-button type="primary" @click="handleSearch">查询</el-button> | 45 | <el-button type="primary" @click="handleSearch">查询</el-button> |
54 | <el-button type="primary" @click="resetForm(true)">重置</el-button> | 46 | <el-button type="primary" @click="resetForm(true)">重置</el-button> | ... | ... |
... | @@ -9,7 +9,7 @@ | ... | @@ -9,7 +9,7 @@ |
9 | <div class="from-clues-header"> | 9 | <div class="from-clues-header"> |
10 | <el-form :model="queryForm" ref="queryForm" label-width="100px"> | 10 | <el-form :model="queryForm" ref="queryForm" label-width="100px"> |
11 | <el-row style="margin-bottom:10px"> | 11 | <el-row style="margin-bottom:10px"> |
12 | <el-col :span="6"> | 12 | <el-col :span="8"> |
13 | <el-form-item label="不动产单元号"> | 13 | <el-form-item label="不动产单元号"> |
14 | <el-input | 14 | <el-input |
15 | placeholder="请输入不动产单元号" | 15 | placeholder="请输入不动产单元号" |
... | @@ -19,38 +19,32 @@ | ... | @@ -19,38 +19,32 @@ |
19 | class="width100"></el-input> | 19 | class="width100"></el-input> |
20 | </el-form-item> | 20 | </el-form-item> |
21 | </el-col> | 21 | </el-col> |
22 | <el-col :span="6"> | 22 | <el-col :span="8"> |
23 | <el-form-item label="查封机关"> | 23 | <el-form-item label="查封机关"> |
24 | <el-input placeholder="请输入查封机关" v-model="queryForm.cfjg" clearable class="width100"></el-input> | 24 | <el-input placeholder="支持模糊查询" v-model="queryForm.cfjg" clearable class="width100"></el-input> |
25 | </el-form-item> | 25 | </el-form-item> |
26 | </el-col> | 26 | </el-col> |
27 | <el-col :span="6"> | 27 | <el-col :span="8"> |
28 | <el-form-item label="查封文号"> | 28 | <el-form-item label="查封文号"> |
29 | <el-input | 29 | <el-input |
30 | placeholder="请输入查封文号" | 30 | placeholder="支持模糊查询" |
31 | v-model="queryForm.cfwh" | 31 | v-model="queryForm.cfwh" |
32 | clearable | 32 | clearable |
33 | class="width100"></el-input> | 33 | class="width100"></el-input> |
34 | </el-form-item> | 34 | </el-form-item> |
35 | </el-col> | 35 | </el-col> |
36 | <el-col :span="6"> | 36 | <el-col :span="8"> |
37 | <el-form-item label="坐落"> | 37 | <el-form-item label="业务号"> |
38 | <el-input placeholder="请输入坐落" v-model="queryForm.zl" clearable class="width100"></el-input> | 38 | <el-input placeholder="请输入业务号" v-model="queryForm.ywh" clearable> |
39 | </el-form-item> | ||
40 | </el-col> | ||
41 | <el-col :span="6"> | ||
42 | <el-form-item label="权利人"> | ||
43 | <el-input placeholder="请输入权利人" v-model.trim="queryForm.qlr" clearable class="width100"> | ||
44 | </el-input> | 39 | </el-input> |
45 | </el-form-item> | 40 | </el-form-item> |
46 | </el-col> | 41 | </el-col> |
47 | <el-col :span="6"> | 42 | <el-col :span="8"> |
48 | <el-form-item label="证件号"> | 43 | <el-form-item label="坐落"> |
49 | <el-input placeholder="请输入证件号" v-model.trim="queryForm.zjh" clearable class="width100"> | 44 | <el-input placeholder="支持模糊查询" v-model="queryForm.zl" clearable class="width100"></el-input> |
50 | </el-input> | ||
51 | </el-form-item> | 45 | </el-form-item> |
52 | </el-col> | 46 | </el-col> |
53 | <el-col :span="12" class="btnColRight"> | 47 | <el-col :span="8" class="btnColRight"> |
54 | <el-form-item> | 48 | <el-form-item> |
55 | <el-button type="primary" @click="queryClick">查询</el-button> | 49 | <el-button type="primary" @click="queryClick">查询</el-button> |
56 | <el-button type="primary" @click="resetForm(true)">重置</el-button> | 50 | <el-button type="primary" @click="resetForm(true)">重置</el-button> |
... | @@ -85,7 +79,7 @@ | ... | @@ -85,7 +79,7 @@ |
85 | //查封登记 | 79 | //查封登记 |
86 | import store from "@/store/index.js"; | 80 | import store from "@/store/index.js"; |
87 | import ywsqTable from "@/utils/mixin/ywsqTable"; | 81 | import ywsqTable from "@/utils/mixin/ywsqTable"; |
88 | import jump from "../components/mixin/jump"; | 82 | import jump from "./mixin/jump"; |
89 | import { ywPopupDialog } from "@/utils/popup.js"; | 83 | import { ywPopupDialog } from "@/utils/popup.js"; |
90 | import { datas, sendThis } from "../javascript/cfdj.js"; | 84 | import { datas, sendThis } from "../javascript/cfdj.js"; |
91 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 85 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | ... | ... |
... | @@ -9,46 +9,38 @@ | ... | @@ -9,46 +9,38 @@ |
9 | <!-- 表单部分 --> | 9 | <!-- 表单部分 --> |
10 | <div class="from-clues-header"> | 10 | <div class="from-clues-header"> |
11 | <el-form :model="queryForm" ref="queryForm" label-width="100px"> | 11 | <el-form :model="queryForm" ref="queryForm" label-width="100px"> |
12 | <el-row> | 12 | <el-row> |
13 | <el-col :span="6"> | 13 | <el-col :span="8"> |
14 | <el-form-item label="权利类型"> | ||
15 | <el-select v-model="queryForm.qllx" filterable clearable placeholder="请选择权利类型" class="width100"> | ||
16 | <el-option v-for="item in qllxs" :key="item.value" :label="item.label" :value="item.value"> | ||
17 | </el-option> | ||
18 | </el-select> | ||
19 | </el-form-item> | ||
20 | </el-col> | ||
21 | <el-col :span="6"> | ||
22 | <el-form-item label="不动产单元号"> | 14 | <el-form-item label="不动产单元号"> |
23 | <el-input placeholder="请输入不动产单元号" maxlength="28" v-model="queryForm.bdcdyh" clearable> | 15 | <el-input placeholder="请输入不动产单元号" maxlength="28" v-model="queryForm.bdcdyh" clearable> |
24 | </el-input> | 16 | </el-input> |
25 | </el-form-item> | 17 | </el-form-item> |
26 | </el-col> | 18 | </el-col> |
27 | <el-col :span="6"> | 19 | <el-col :span="8"> |
28 | <el-form-item label="业务号"> | 20 | <el-form-item label="不动产权证号"> |
29 | <el-input placeholder="请输入业务号" v-model="queryForm.ywh" clearable> | 21 | <el-input placeholder="请输入不动产权证号全部数字" v-model="queryForm.bdcqzh" clearable class="width100"> |
30 | </el-input> | 22 | </el-input> |
31 | </el-form-item> | 23 | </el-form-item> |
32 | </el-col> | 24 | </el-col> |
33 | <el-col :span="6"> | 25 | <el-col :span="8"> |
34 | <el-form-item label="不动产权证号"> | 26 | <el-form-item label="坐落"> |
35 | <el-input placeholder="请输入不动产权证号" v-model="queryForm.bdcqzh" clearable> | 27 | <el-input placeholder="支持模糊查询" v-model.trim="queryForm.zl" clearable class="width100"> |
36 | </el-input> | 28 | </el-input> |
37 | </el-form-item> | 29 | </el-form-item> |
38 | </el-col> | 30 | </el-col> |
39 | <el-col :span="6"> | 31 | <el-col :span="8"> |
40 | <el-form-item label="权利人"> | 32 | <el-form-item label="权利人"> |
41 | <el-input placeholder="请输入权利人" v-model="queryForm.qlr" clearable> | 33 | <el-input placeholder="请输入权利人" v-model="queryForm.qlr" clearable> |
42 | </el-input> | 34 | </el-input> |
43 | </el-form-item> | 35 | </el-form-item> |
44 | </el-col> | 36 | </el-col> |
45 | <el-col :span="6"> | 37 | <el-col :span="8"> |
46 | <el-form-item label="证件号"> | 38 | <el-form-item label="证件号"> |
47 | <el-input placeholder="请输入证件号" v-model="queryForm.zjh" clearable> | 39 | <el-input placeholder="请输入证件号" v-model="queryForm.zjh" clearable> |
48 | </el-input> | 40 | </el-input> |
49 | </el-form-item> | 41 | </el-form-item> |
50 | </el-col> | 42 | </el-col> |
51 | <el-col :span="12" class="btnColRight"> | 43 | <el-col :span="8" class="btnColRight"> |
52 | <el-form-item> | 44 | <el-form-item> |
53 | <el-button type="primary" @click="handleSearch" :loading="loading">查询</el-button> | 45 | <el-button type="primary" @click="handleSearch" :loading="loading">查询</el-button> |
54 | <el-button type="primary" @click="resetForm(true)">重置</el-button> | 46 | <el-button type="primary" @click="resetForm(true)">重置</el-button> |
... | @@ -75,7 +67,7 @@ | ... | @@ -75,7 +67,7 @@ |
75 | <script> | 67 | <script> |
76 | import store from '@/store/index.js' | 68 | import store from '@/store/index.js' |
77 | import ywsqTable from "@/utils/mixin/ywsqTable"; | 69 | import ywsqTable from "@/utils/mixin/ywsqTable"; |
78 | import jump from "../components/mixin/jump"; | 70 | import jump from "./mixin/jump"; |
79 | import { ywPopupDialog } from "@/utils/popup.js"; | 71 | import { ywPopupDialog } from "@/utils/popup.js"; |
80 | import { datas, sendThis } from "../javascript/diyaq.js"; | 72 | import { datas, sendThis } from "../javascript/diyaq.js"; |
81 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 73 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | ... | ... |
... | @@ -9,38 +9,26 @@ | ... | @@ -9,38 +9,26 @@ |
9 | <!-- 表单部分 --> | 9 | <!-- 表单部分 --> |
10 | <div class="from-clues-header"> | 10 | <div class="from-clues-header"> |
11 | <el-form :model="queryForm" ref="queryForm" label-width="100px"> | 11 | <el-form :model="queryForm" ref="queryForm" label-width="100px"> |
12 | <el-row> | 12 | <el-row> |
13 | <!-- <el-col :span="6"> | 13 | <el-col :span="6"> |
14 | <el-form-item label="不动产权证号"> | 14 | <el-form-item label="项目名称"> |
15 | <el-input placeholder="请输入不动产权证号" v-model="queryForm.bdcqzh" clearable class="width100"> | 15 | <el-input placeholder="支持模糊查询" v-model.trim="queryForm.xmmc" clearable class="width100"> |
16 | </el-input> | 16 | </el-input> |
17 | </el-form-item> | 17 | </el-form-item> |
18 | </el-col> --> | 18 | </el-col> |
19 | <el-col :span="6"> | 19 | <el-col :span="6"> |
20 | <el-form-item label="不动产单元号"> | 20 | <el-form-item label="不动产单元号"> |
21 | <el-input placeholder="请输入不动产单元号" maxlength="28" v-model="queryForm.bdcdyh" clearable class="width100"> | 21 | <el-input placeholder="请输入不动产单元号" maxlength="28" v-model="queryForm.bdcdyh" clearable class="width100"> |
22 | </el-input> | 22 | </el-input> |
23 | </el-form-item> | 23 | </el-form-item> |
24 | </el-col> | 24 | </el-col> |
25 | <el-col :span="6"> | 25 | <el-col :span="8"> |
26 | <el-form-item label="坐落" label-width="60px"> | 26 | <el-form-item label="坐落"> |
27 | <el-input placeholder="坐落" v-model.trim="queryForm.zl" clearable class="width100"> | 27 | <el-input placeholder="支持模糊查询" v-model.trim="queryForm.zl" clearable class="width100"> |
28 | </el-input> | ||
29 | </el-form-item> | ||
30 | </el-col> | ||
31 | <el-col :span="6"> | ||
32 | <el-form-item label="权利人" label-width="60px"> | ||
33 | <el-input placeholder="权利人" v-model.trim="queryForm.qlr" clearable class="width100"> | ||
34 | </el-input> | 28 | </el-input> |
35 | </el-form-item> | 29 | </el-form-item> |
36 | </el-col> | 30 | </el-col> |
37 | <el-col :span="6"> | 31 | <el-col :span="4" class="btnColRight"> |
38 | <el-form-item label="证件号" label-width="60px"> | ||
39 | <el-input placeholder="权利人" v-model.trim="queryForm.zjh" clearable class="width100"> | ||
40 | </el-input> | ||
41 | </el-form-item> | ||
42 | </el-col> | ||
43 | <el-col :span="24" class="btnColRight"> | ||
44 | <el-form-item> | 32 | <el-form-item> |
45 | <el-button type="primary" @click="handleSearch">查询</el-button> | 33 | <el-button type="primary" @click="handleSearch">查询</el-button> |
46 | <el-button type="primary" @click="resetForm(true)">重置</el-button> | 34 | <el-button type="primary" @click="resetForm(true)">重置</el-button> | ... | ... |
... | @@ -23,7 +23,7 @@ | ... | @@ -23,7 +23,7 @@ |
23 | </el-col> | 23 | </el-col> |
24 | <el-col :span="8"> | 24 | <el-col :span="8"> |
25 | <el-form-item label="坐落"> | 25 | <el-form-item label="坐落"> |
26 | <el-input placeholder="请输入坐落" v-model.trim="queryForm.zl" clearable class="width100"> | 26 | <el-input placeholder="支持模糊查询" v-model.trim="queryForm.zl" clearable class="width100"> |
27 | </el-input> | 27 | </el-input> |
28 | </el-form-item> | 28 | </el-form-item> |
29 | </el-col> | 29 | </el-col> |
... | @@ -39,7 +39,7 @@ | ... | @@ -39,7 +39,7 @@ |
39 | </el-input> | 39 | </el-input> |
40 | </el-form-item> | 40 | </el-form-item> |
41 | </el-col> | 41 | </el-col> |
42 | <el-col :span="6" class="btnColRight"> | 42 | <el-col :span="8" class="btnColRight"> |
43 | <el-form-item> | 43 | <el-form-item> |
44 | <!-- <el-button type="primary" @click="resetForm(true)">重置</el-button> --> | 44 | <!-- <el-button type="primary" @click="resetForm(true)">重置</el-button> --> |
45 | <el-button type="primary" @click="handleSearch">查询</el-button> | 45 | <el-button type="primary" @click="handleSearch">查询</el-button> | ... | ... |
File moved
... | @@ -9,25 +9,37 @@ | ... | @@ -9,25 +9,37 @@ |
9 | <div class="from-clues-header"> | 9 | <div class="from-clues-header"> |
10 | <el-form :model="queryForm" ref="queryForm"> | 10 | <el-form :model="queryForm" ref="queryForm"> |
11 | <el-row :gutter="20"> | 11 | <el-row :gutter="20"> |
12 | <el-col :span="6"> | 12 | <el-col :span="8"> |
13 | <el-form-item label="宗地代码"> | 13 | <el-form-item label="不动产单元号"> |
14 | <el-input placeholder="请输入宗地代码" maxlength="19" v-model="queryForm.zddm" clearable class="width100"> | 14 | <el-input placeholder="请输入不动产单元号" maxlength="28" v-model="queryForm.bdcdyh" clearable class="width100"> |
15 | </el-input> | 15 | </el-input> |
16 | </el-form-item> | 16 | </el-form-item> |
17 | </el-col> | 17 | </el-col> |
18 | <el-col :span="6"> | 18 | <el-col :span="8"> |
19 | <el-form-item label="不动产单元号"> | 19 | <el-form-item label="不动产权证号"> |
20 | <el-input placeholder="请输入不动产单元号" maxlength="28" v-model="queryForm.bdcdyh" clearable class="width100"> | 20 | <el-input placeholder="请输入不动产权证号全部数字" v-model="queryForm.bdcqzh" clearable class="width100"> |
21 | </el-input> | 21 | </el-input> |
22 | </el-form-item> | 22 | </el-form-item> |
23 | </el-col> | 23 | </el-col> |
24 | <el-col :span="6"> | 24 | <el-col :span="8"> |
25 | <el-form-item label="坐落"> | 25 | <el-form-item label="坐落"> |
26 | <el-input placeholder="请输入坐落" v-model.trim="queryForm.zl" clearable class="width100"> | 26 | <el-input placeholder="支持模糊查询" v-model.trim="queryForm.zl" clearable class="width100"> |
27 | </el-input> | ||
28 | </el-form-item> | ||
29 | </el-col> | ||
30 | <el-col :span="8"> | ||
31 | <el-form-item label="权利人"> | ||
32 | <el-input placeholder="请输入权利人" v-model="queryForm.qlr" clearable class="width100"> | ||
33 | </el-input> | ||
34 | </el-form-item> | ||
35 | </el-col> | ||
36 | <el-col :span="8"> | ||
37 | <el-form-item label="证件号码"> | ||
38 | <el-input placeholder="请输入证件号码" v-model="queryForm.zjh" clearable class="width100"> | ||
27 | </el-input> | 39 | </el-input> |
28 | </el-form-item> | 40 | </el-form-item> |
29 | </el-col> | 41 | </el-col> |
30 | <el-col :span="6" class="btnColRight"> | 42 | <el-col :span="8" class="btnColRight"> |
31 | <el-form-item> | 43 | <el-form-item> |
32 | <!-- <el-button type="primary" @click="resetForm(true)">重置</el-button> --> | 44 | <!-- <el-button type="primary" @click="resetForm(true)">重置</el-button> --> |
33 | <el-button type="primary" @click="handleSearch">查询</el-button> | 45 | <el-button type="primary" @click="handleSearch">查询</el-button> | ... | ... |
... | @@ -23,23 +23,11 @@ | ... | @@ -23,23 +23,11 @@ |
23 | </el-col> | 23 | </el-col> |
24 | <el-col :span="6"> | 24 | <el-col :span="6"> |
25 | <el-form-item label="坐落"> | 25 | <el-form-item label="坐落"> |
26 | <el-input placeholder="请输入坐落" v-model.trim="queryForm.zl" clearable class="width100"> | 26 | <el-input placeholder="支持模糊查询" v-model.trim="queryForm.zl" clearable class="width100"> |
27 | </el-input> | 27 | </el-input> |
28 | </el-form-item> | 28 | </el-form-item> |
29 | </el-col> | 29 | </el-col> |
30 | <el-col :span="6"> | 30 | <el-col :span="6" class="btnColRight"> |
31 | <el-form-item label="权利人"> | ||
32 | <el-input placeholder="请输入权利人" v-model.trim="queryForm.qlr" clearable class="width100"> | ||
33 | </el-input> | ||
34 | </el-form-item> | ||
35 | </el-col> | ||
36 | <el-col :span="6"> | ||
37 | <el-form-item label="证件号"> | ||
38 | <el-input placeholder="请输入证件号" v-model.trim="queryForm.zjh" clearable class="width100"> | ||
39 | </el-input> | ||
40 | </el-form-item> | ||
41 | </el-col> | ||
42 | <el-col :span="18" class="btnColRight"> | ||
43 | <el-form-item> | 31 | <el-form-item> |
44 | <el-button type="primary" @click="handleSearch">查询</el-button> | 32 | <el-button type="primary" @click="handleSearch">查询</el-button> |
45 | <el-button type="primary" @click="resetForm(true)">重置</el-button> | 33 | <el-button type="primary" @click="resetForm(true)">重置</el-button> | ... | ... |
... | @@ -10,37 +10,37 @@ | ... | @@ -10,37 +10,37 @@ |
10 | <div class="from-clues-header"> | 10 | <div class="from-clues-header"> |
11 | <el-form :model="queryForm" ref="queryForm" label-width="100px"> | 11 | <el-form :model="queryForm" ref="queryForm" label-width="100px"> |
12 | <el-row> | 12 | <el-row> |
13 | <el-col :span="6"> | 13 | <el-col :span="8"> |
14 | <el-form-item label="不动产权证号"> | 14 | <el-form-item label="不动产登记证明号" label-width="130px"> |
15 | <el-input placeholder="请输入不动产权证号" v-model="queryForm.bdcqzh" clearable class="width100"> | 15 | <el-input placeholder="请输入证号全部数字" v-model="queryForm.bdcqzh" clearable class="width100"> |
16 | </el-input> | 16 | </el-input> |
17 | </el-form-item> | 17 | </el-form-item> |
18 | </el-col> | 18 | </el-col> |
19 | <el-col :span="6"> | 19 | <el-col :span="8"> |
20 | <el-form-item label="不动产单元号"> | 20 | <el-form-item label="不动产单元号"> |
21 | <el-input placeholder="请输入不动产单元号" maxlength="28" v-model="queryForm.bdcdyh" clearable class="width100"> | 21 | <el-input placeholder="请输入不动产单元号" maxlength="28" v-model="queryForm.bdcdyh" clearable class="width100"> |
22 | </el-input> | 22 | </el-input> |
23 | </el-form-item> | 23 | </el-form-item> |
24 | </el-col> | 24 | </el-col> |
25 | <el-col :span="6"> | 25 | <el-col :span="8"> |
26 | <el-form-item label="坐落"> | 26 | <el-form-item label="坐落"> |
27 | <el-input placeholder="坐落" v-model.trim="queryForm.zl" clearable class="width100"> | 27 | <el-input placeholder="支持模糊查询" v-model.trim="queryForm.zl" clearable class="width100"> |
28 | </el-input> | 28 | </el-input> |
29 | </el-form-item> | 29 | </el-form-item> |
30 | </el-col> | 30 | </el-col> |
31 | <el-col :span="6"> | 31 | <el-col :span="8"> |
32 | <el-form-item label="权利人"> | 32 | <el-form-item label="权利人"> |
33 | <el-input placeholder="请输入权利人" v-model.trim="queryForm.qlr" clearable class="width100"> | 33 | <el-input placeholder="请输入权利人" v-model.trim="queryForm.qlr" clearable class="width100"> |
34 | </el-input> | 34 | </el-input> |
35 | </el-form-item> | 35 | </el-form-item> |
36 | </el-col> | 36 | </el-col> |
37 | <el-col :span="6"> | 37 | <el-col :span="8"> |
38 | <el-form-item label="证件号"> | 38 | <el-form-item label="证件号"> |
39 | <el-input placeholder="请输入证件号" v-model.trim="queryForm.zjh" clearable class="width100"> | 39 | <el-input placeholder="请输入证件号" v-model.trim="queryForm.zjh" clearable class="width100"> |
40 | </el-input> | 40 | </el-input> |
41 | </el-form-item> | 41 | </el-form-item> |
42 | </el-col> | 42 | </el-col> |
43 | <el-col :span="18" class="btnColRight"> | 43 | <el-col :span="8" class="btnColRight"> |
44 | <el-form-item> | 44 | <el-form-item> |
45 | <el-button type="primary" @click="handleSearch">查询</el-button> | 45 | <el-button type="primary" @click="handleSearch">查询</el-button> |
46 | <el-button type="primary" @click="resetForm(true)">重置</el-button> | 46 | <el-button type="primary" @click="resetForm(true)">重置</el-button> | ... | ... |
... | @@ -10,37 +10,37 @@ | ... | @@ -10,37 +10,37 @@ |
10 | <div class="from-clues-header"> | 10 | <div class="from-clues-header"> |
11 | <el-form :model="queryForm" ref="queryForm" label-width="100px"> | 11 | <el-form :model="queryForm" ref="queryForm" label-width="100px"> |
12 | <el-row> | 12 | <el-row> |
13 | <el-col :span="6"> | 13 | <el-col :span="8"> |
14 | <el-form-item label="不动产权证号"> | 14 | <el-form-item label="不动产登记证明号" label-width="130px"> |
15 | <el-input placeholder="请输入不动产权证号" v-model="queryForm.bdcqzh" clearable class="width100"> | 15 | <el-input placeholder="请输入证号全部数字" v-model="queryForm.bdcqzh" clearable class="width100"> |
16 | </el-input> | 16 | </el-input> |
17 | </el-form-item> | 17 | </el-form-item> |
18 | </el-col> | 18 | </el-col> |
19 | <el-col :span="6"> | 19 | <el-col :span="8"> |
20 | <el-form-item label="不动产单元号"> | 20 | <el-form-item label="不动产单元号"> |
21 | <el-input placeholder="请输入不动产单元号" maxlength="28" v-model="queryForm.bdcdyh" clearable class="width100"> | 21 | <el-input placeholder="请输入不动产单元号" maxlength="28" v-model="queryForm.bdcdyh" clearable class="width100"> |
22 | </el-input> | 22 | </el-input> |
23 | </el-form-item> | 23 | </el-form-item> |
24 | </el-col> | 24 | </el-col> |
25 | <el-col :span="6"> | 25 | <el-col :span="8"> |
26 | <el-form-item label="坐落"> | 26 | <el-form-item label="坐落"> |
27 | <el-input placeholder="坐落" v-model.trim="queryForm.zl" clearable class="width100"> | 27 | <el-input placeholder="支持模糊查询" v-model.trim="queryForm.zl" clearable class="width100"> |
28 | </el-input> | 28 | </el-input> |
29 | </el-form-item> | 29 | </el-form-item> |
30 | </el-col> | 30 | </el-col> |
31 | <el-col :span="6"> | 31 | <el-col :span="8"> |
32 | <el-form-item label="权利人"> | 32 | <el-form-item label="权利人"> |
33 | <el-input placeholder="请输入权利人" v-model.trim="queryForm.qlr" clearable class="width100"> | 33 | <el-input placeholder="请输入权利人" v-model.trim="queryForm.qlr" clearable class="width100"> |
34 | </el-input> | 34 | </el-input> |
35 | </el-form-item> | 35 | </el-form-item> |
36 | </el-col> | 36 | </el-col> |
37 | <el-col :span="6"> | 37 | <el-col :span="8"> |
38 | <el-form-item label="证件号"> | 38 | <el-form-item label="证件号"> |
39 | <el-input placeholder="请输入证件号" v-model.trim="queryForm.zjh" clearable class="width100"> | 39 | <el-input placeholder="请输入证件号" v-model.trim="queryForm.zjh" clearable class="width100"> |
40 | </el-input> | 40 | </el-input> |
41 | </el-form-item> | 41 | </el-form-item> |
42 | </el-col> | 42 | </el-col> |
43 | <el-col :span="18" class="btnColRight"> | 43 | <el-col :span="8" class="btnColRight"> |
44 | <el-form-item> | 44 | <el-form-item> |
45 | <el-button type="primary" @click="handleSearch">查询</el-button> | 45 | <el-button type="primary" @click="handleSearch">查询</el-button> |
46 | <el-button type="primary" @click="resetForm(true)">重置</el-button> | 46 | <el-button type="primary" @click="resetForm(true)">重置</el-button> | ... | ... |
... | @@ -49,7 +49,7 @@ export function queueDjywmc (djywbm, djqxbm) { | ... | @@ -49,7 +49,7 @@ export function queueDjywmc (djywbm, djqxbm) { |
49 | break; | 49 | break; |
50 | case "A04100"://国有建设用地使用权/房屋所有权(首次登记) | 50 | case "A04100"://国有建设用地使用权/房屋所有权(首次登记) |
51 | case "B37100": // 在建工程抵押权 || 首次登记 | 51 | case "B37100": // 在建工程抵押权 || 首次登记 |
52 | vm = "fwsyq"; | 52 | vm = "selectQjZrzDz"; |
53 | break; | 53 | break; |
54 | // 房屋分割 | 54 | // 房屋分割 |
55 | case "A04200": //国有建设用地使用权/房屋所有权 || 转移登记 | 55 | case "A04200": //国有建设用地使用权/房屋所有权 || 转移登记 |
... | @@ -85,11 +85,11 @@ export function queueDjywmc (djywbm, djqxbm) { | ... | @@ -85,11 +85,11 @@ export function queueDjywmc (djywbm, djqxbm) { |
85 | case "B37200"://抵押权转移 | 85 | case "B37200"://抵押权转移 |
86 | case "B37300"://抵押权变更 | 86 | case "B37300"://抵押权变更 |
87 | case "B37400"://抵押权注销 | 87 | case "B37400"://抵押权注销 |
88 | vm = "diyaq"; | 88 | vm = "selectDiyaq"; |
89 | break; | 89 | break; |
90 | case "B39300"://续封 | 90 | case "B39300"://续封 |
91 | case "B39400"://解封 | 91 | case "B39400"://解封 |
92 | vm = "cfdj"; | 92 | vm = "selectCfdj"; |
93 | break; | 93 | break; |
94 | case "B40100"://预告首次 | 94 | case "B40100"://预告首次 |
95 | vm = "selectH"; | 95 | vm = "selectH"; | ... | ... |
-
Please register or sign in to post a comment