b2d2e64b by 杨威
2 parents cc7d9484 a1edea74
...@@ -11,6 +11,17 @@ export function getSearchList(data) { ...@@ -11,6 +11,17 @@ export function getSearchList(data) {
11 } 11 }
12 12
13 /** 13 /**
14 * 综合查询
15 */
16 export function getHfghbSearchList(data) {
17 return request({
18 url: '/system/basiccommon/queryWithHfghb',
19 method: 'post',
20 data : data,
21 })
22 }
23
24 /**
14 * 宗地分割选择宗地列表 25 * 宗地分割选择宗地列表
15 * @param data 26 * @param data
16 */ 27 */
......
...@@ -212,7 +212,7 @@ ...@@ -212,7 +212,7 @@
212 <script> 212 <script>
213 import lpbContent from "../../../zrz/lpb/bjlp/lpbContent/index"; 213 import lpbContent from "../../../zrz/lpb/bjlp/lpbContent/index";
214 import { getLpbMenuTree, batchScYcChange, getLpbTj,batchGeneratorBdcdyh,getLpbFwytAndQlxz ,batchCommit} from "@api/lpb"; 214 import { getLpbMenuTree, batchScYcChange, getLpbTj,batchGeneratorBdcdyh,getLpbFwytAndQlxz ,batchCommit} from "@api/lpb";
215 import {getSearchList} from "@api/search"; 215 import {getHfghbSearchList} from "@api/search";
216 import {getQjHDetailByBsm} from "@api/h"; 216 import {getQjHDetailByBsm} from "@api/h";
217 export default { 217 export default {
218 name:"", 218 name:"",
...@@ -321,7 +321,7 @@ export default { ...@@ -321,7 +321,7 @@ export default {
321 methods:{ 321 methods:{
322 //查询 322 //查询
323 search(){ 323 search(){
324 getSearchList(this.queryData).then(res => { 324 getHfghbSearchList(this.queryData).then(res => {
325 this.tableData = res.result.records 325 this.tableData = res.result.records
326 this.total = res.result.total 326 this.total = res.result.total
327 }) 327 })
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
22 <!-- todo 此处暂时存放的是不动产单元号标识码,而不是不动产单元号--> 22 <!-- todo 此处暂时存放的是不动产单元号标识码,而不是不动产单元号-->
23 <td colspan="4" class="psr"> 23 <td colspan="4" class="psr">
24 <el-input v-model="form.bdcdyh" class="percent80" :disabled="disableFlag" ref="bdcdyh"></el-input> 24 <el-input v-model="form.bdcdyh" class="percent80" :disabled="disableFlag" ref="bdcdyh"></el-input>
25 <el-button @click.prevent="generatorCode" size="mini" class="createBtn" type="warning">生成</el-button> 25 <el-button @click.prevent="generatorCode" size="mini" class="createBtn" type="warning" :disabled="disableFlag">生成</el-button>
26 </td> 26 </td>
27 <!-- <td colspan="2" align="center" >原不动产单元</td>--> 27 <!-- <td colspan="2" align="center" >原不动产单元</td>-->
28 <!-- <td colspan="4" >--> 28 <!-- <td colspan="4" >-->
...@@ -900,6 +900,8 @@ ...@@ -900,6 +900,8 @@
900 submit(data).then((res)=>{ 900 submit(data).then((res)=>{
901 if(res.code===200){ 901 if(res.code===200){
902 this.$message.success("提交完成!"); 902 this.$message.success("提交完成!");
903 }else {
904 this.$message.warning(res.message)
903 } 905 }
904 }) 906 })
905 }, 907 },
......