a6701ec4 by yuanbo

删除selectQlxx.js

1 parent 750598ad
1 /*
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-05-16 13:49:57
5 */
6 import request from '@/utils/request'
7 let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
8 /**
9 * @description: 获取自然幢下其他户
10 * @param {*} data
11 * @author: renchao
12 */
13 export function selectOtherH (data) {
14 return request({
15 url: 'ywbl/ywsq/selectOtherH',
16 method: 'post',
17 data
18 })
19 }
20 /**
21 * @description: 业务办理-选择抵押权信息-根据条件进行列表查询
22 * @param {*} data
23 * @author: renchao
24 */
25 export function selectDiyaq (data) {
26 return request({
27 url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectDiyaq',
28 method: 'post',
29 data
30 })
31 }
32 /**
33 * @description: 业务办理-选择查封信息-根据条件进行列表查询
34 * @param {*} data
35 * @author: renchao
36 */
37 export function selectCfdj (data) {
38 return request({
39 url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectCfdj',
40 method: 'post',
41 data
42 })
43 }
44
45 /**
46 * @description: 选择补录权利信息
47 * @param {*} data
48 * @author: renchao
49 */
50 export function selectRepairQlxx (data) {
51 return request({
52 url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectRepairQlxx',
53 method: 'post',
54 data
55 })
56 }
...@@ -242,3 +242,15 @@ export function selectHQjdc (data) { ...@@ -242,3 +242,15 @@ export function selectHQjdc (data) {
242 data 242 data
243 }) 243 })
244 } 244 }
245 /**
246 * @description: 选择补录权利信息
247 * @param {*} data
248 * @author: renchao
249 */
250 export function selectRepairQlxx (data) {
251 return request({
252 url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectRepairQlxx',
253 method: 'post',
254 data
255 })
256 }
......
...@@ -62,7 +62,7 @@ ...@@ -62,7 +62,7 @@
62 import { ywPopupDialog } from "@/utils/popup.js"; 62 import { ywPopupDialog } from "@/utils/popup.js";
63 import { startRepairFlow } from "@/api/workFlow.js"; 63 import { startRepairFlow } from "@/api/workFlow.js";
64 import { datas, sendThis } from "../javascript/selectDjbbl.js"; 64 import { datas, sendThis } from "../javascript/selectDjbbl.js";
65 import { selectRepairQlxx } from "@/api/selectQlxx.js"; 65 import { selectRepairQlxx } from "@/api/ywsq.js";
66 import jump from "../components/mixin/djbbljump"; 66 import jump from "../components/mixin/djbbljump";
67 export default { 67 export default {
68 name: "djbcx", 68 name: "djbcx",
......