7af57188 by xiaomiao

Merge branch 'dev' of http://yun.pashanhoo.com:9090/bdc/bdcdj-web into dev

2 parents 3de587f4 7a1f759a
...@@ -135,7 +135,6 @@ ...@@ -135,7 +135,6 @@
135 }, 135 },
136 ]); 136 ]);
137 if (that.tableDataList.length > 0) { 137 if (that.tableDataList.length > 0) {
138 console.log("that.tableDataList", that.tableDataList);
139 this.tdyt = that.tableDataList[0].yt ? that.tableDataList[0].yt : null 138 this.tdyt = that.tableDataList[0].yt ? that.tableDataList[0].yt : null
140 } else { 139 } else {
141 this.tdyt = null 140 this.tdyt = null
...@@ -143,7 +142,6 @@ ...@@ -143,7 +142,6 @@
143 } else { 142 } else {
144 that.tableDataList = _.cloneDeep(val); 143 that.tableDataList = _.cloneDeep(val);
145 if (that.tableDataList.length > 0) { 144 if (that.tableDataList.length > 0) {
146 console.log("that.tableDataList", that.tableDataList);
147 this.tdyt = that.tableDataList[0].yt ? that.tableDataList[0].yt : null 145 this.tdyt = that.tableDataList[0].yt ? that.tableDataList[0].yt : null
148 } else { 146 } else {
149 this.tdyt = null 147 this.tdyt = null
......
1 /* 1 /*
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-07-05 09:58:31 4 * @LastEditTime: 2023-07-11 13:59:14
5 */ 5 */
6 import { getForm } from "../flowform"; 6 import { getForm } from "../flowform";
7 import { getHomeNoticeList } from "@/api/home.js" 7 import { getHomeNoticeList } from "@/api/home.js"
...@@ -43,7 +43,6 @@ export default { ...@@ -43,7 +43,6 @@ export default {
43 } 43 }
44 } 44 }
45 this.componentTag = getForm(tabname, this.$route.query.sqywbm); 45 this.componentTag = getForm(tabname, this.$route.query.sqywbm);
46 console.log(tabname);
47 } 46 }
48 } 47 }
49 } 48 }
......
...@@ -3,14 +3,14 @@ ...@@ -3,14 +3,14 @@
3 <!-- 表单部分 国有建设用地使用权 --> 3 <!-- 表单部分 国有建设用地使用权 -->
4 <div class="from-clues-header"> 4 <div class="from-clues-header">
5 <el-form :model="queryForm" ref="queryForm"> 5 <el-form :model="queryForm" ref="queryForm">
6 <el-row> 6 <el-row :gutter="20">
7 <el-col :span="7"> 7 <el-col :span="6">
8 <el-form-item label="宗地代码"> 8 <el-form-item label="宗地代码">
9 <el-input placeholder="请输入宗地代码" maxlength="19" v-model="queryForm.zddm" clearable class="width100"> 9 <el-input placeholder="请输入宗地代码" maxlength="19" v-model="queryForm.zddm" clearable class="width100">
10 </el-input> 10 </el-input>
11 </el-form-item> 11 </el-form-item>
12 </el-col> 12 </el-col>
13 <el-col :span="7"> 13 <el-col :span="6">
14 <el-form-item label="不动产单元号"> 14 <el-form-item label="不动产单元号">
15 <el-input placeholder="请输入不动产单元号" maxlength="28" v-model="queryForm.bdcdyh" clearable class="width100"> 15 <el-input placeholder="请输入不动产单元号" maxlength="28" v-model="queryForm.bdcdyh" clearable class="width100">
16 </el-input> 16 </el-input>
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
22 </el-input> 22 </el-input>
23 </el-form-item> 23 </el-form-item>
24 </el-col> 24 </el-col>
25 <el-col :span="4" class="btnColRight"> 25 <el-col :span="6" class="btnColRight">
26 <el-form-item> 26 <el-form-item>
27 <el-button type="primary" @click="resetForm(true)">重置</el-button> 27 <el-button type="primary" @click="resetForm(true)">重置</el-button>
28 <el-button type="primary" @click="handleSearch">查询</el-button> 28 <el-button type="primary" @click="handleSearch">查询</el-button>
......