e7aa1c44 by yuanbo

抽取lpcx.js,修改所有引用文件

1 parent f984c1f4
1 /* 1 /*
2 * @Description: 2 * @Description: 不动产权证
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-05-16 14:04:18 4 * @LastEditTime: 2023-05-16 14:04:18
5 */ 5 */
......
1 /* 1 /*
2 * @Description: 2 * @Description: 材料信息
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-05-16 14:04:42 4 * @LastEditTime: 2023-05-16 14:04:42
5 */ 5 */
......
1 /* 1 /*
2 * @Description: 2 * @Description: 楼盘表查询
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-07-12 13:26:37 4 * @LastEditTime: 2023-07-12 13:26:37
5 */ 5 */
...@@ -71,16 +71,3 @@ export function getLpbTj(zrzbsm) { ...@@ -71,16 +71,3 @@ export function getLpbTj(zrzbsm) {
71 method: "get", 71 method: "get",
72 }); 72 });
73 } 73 }
74
75 /**
76 * @description:楼盘查询- 根据bsmSlsq查询自然幢标识码
77 * @param {*} data
78 * @author: renchao
79 */
80 export function getZrzbsm(bsm) {
81 return request({
82 url: SERVER.SERVERAPI + "/rest/zhcx/search/getZrzbsmList?bsmSlsq=" + bsm,
83 method: "post",
84 data: bsm,
85 });
86 }
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -58,5 +58,18 @@ export function getZjgcdyList (data) { ...@@ -58,5 +58,18 @@ export function getZjgcdyList (data) {
58 }) 58 })
59 } 59 }
60 60
61 /**
62 * @description:楼盘查询- 根据bsmSlsq查询自然幢标识码
63 * @param {*} data
64 * @author: renchao
65 */
66 export function getZrzbsmList(bsm) {
67 return request({
68 url: SERVER.SERVERAPI + "/rest/zhcx/search/getZrzbsmList?bsmSlsq=" + bsm,
69 method: "post",
70 data: bsm,
71 });
72 }
73
61 74
62 75
......
...@@ -89,7 +89,7 @@ import lineItem from "./lineItem.vue"; ...@@ -89,7 +89,7 @@ import lineItem from "./lineItem.vue";
89 import ImportGeo from './tx/importGeo' 89 import ImportGeo from './tx/importGeo'
90 port geoUtils from "@/components/lineTree/tx/js/geoUtils"; 90 port geoUtils from "@/components/lineTree/tx/js/geoUtils";
91 rt featureUpdate from "@/libs/map/featureUpdate"; 91 rt featureUpdate from "@/libs/map/featureUpdate";
92 ort { deleteLjz, deleteZdy } from "@api/lpb" 92 ort { deleteLjz, deleteZdy } from "@api/lpcx.js"
93 exportTemJson from '@/api/json/exportTemplate.json' 93 exportTemJson from '@/api/json/exportTemplate.json'
94 mport sxdr from '@/components/sxdr/sxdr' 94 mport sxdr from '@/components/sxdr/sxdr'
95 port default { 95 port default {
......
...@@ -194,7 +194,7 @@ ...@@ -194,7 +194,7 @@
194 <script> 194 <script>
195 import lpbContent from "./lpbContent/index"; 195 import lpbContent from "./lpbContent/index";
196 import selectZrzH from "../ywbl/ywsq/components/selectZrzH"; 196 import selectZrzH from "../ywbl/ywsq/components/selectZrzH";
197 import { getLpbFwytAndQlxz, getLpbQsxtj, getLpbTj } from "@/api/lpb"; 197 import { getLpbFwytAndQlxz, getLpbQsxtj, getLpbTj } from "@/api/lpcx.js";
198 export default { 198 export default {
199 name: "lpb", 199 name: "lpb",
200 props: { 200 props: {
......
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
30 </div> 30 </div>
31 </template> 31 </template>
32 <script> 32 <script>
33 import { getLpb } from "@/api/lpb"; 33 import { getLpb } from "@/api/lpcx.js";
34 import chCpn from "./ch.vue"; 34 import chCpn from "./ch.vue";
35 import zdyCpn from "./zdys.vue"; 35 import zdyCpn from "./zdys.vue";
36 import ljzsCpn from "./ljzs.vue"; 36 import ljzsCpn from "./ljzs.vue";
......
...@@ -17,7 +17,7 @@ import { ...@@ -17,7 +17,7 @@ import {
17 unClaimTask 17 unClaimTask
18 } from "@/api/workFlow.js"; 18 } from "@/api/workFlow.js";
19 import { mapGetters } from 'vuex' 19 import { mapGetters } from 'vuex'
20 import { getZrzbsm } from "@/api/lpb"; 20 import { getZrzbsmList } from "@/api/search.js";
21 import { ywPopupDialog } from "@/utils/popup.js"; 21 import { ywPopupDialog } from "@/utils/popup.js";
22 export default { 22 export default {
23 data () { 23 data () {
...@@ -140,7 +140,7 @@ export default { ...@@ -140,7 +140,7 @@ export default {
140 ) 140 )
141 break; 141 break;
142 case "B8": 142 case "B8":
143 getZrzbsm(this.bsmSlsq).then((res) => { 143 getZrzbsmList(this.bsmSlsq).then((res) => {
144 if (res.code === 200) { 144 if (res.code === 200) {
145 this.$popupDialog('楼盘表', 'lpb/index', { 145 this.$popupDialog('楼盘表', 'lpb/index', {
146 bsm: res.result[0] 146 bsm: res.result[0]
......
...@@ -50,7 +50,7 @@ ...@@ -50,7 +50,7 @@
50 <script> 50 <script>
51 import table from "@/utils/mixin/table"; 51 import table from "@/utils/mixin/table";
52 import { datas, sendThis } from "./lpcxdata"; 52 import { datas, sendThis } from "./lpcxdata";
53 import { getLpZrz } from "@/api/lpb.js"; 53 import { getLpZrz } from "@/api/lpcx.js";
54 export default { 54 export default {
55 name: "lpcx", 55 name: "lpcx",
56 components: {}, 56 components: {},
......