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 @@
},
]);
if (that.tableDataList.length > 0) {
console.log("that.tableDataList", that.tableDataList);
this.tdyt = that.tableDataList[0].yt ? that.tableDataList[0].yt : null
} else {
this.tdyt = null
......@@ -143,7 +142,6 @@
} else {
that.tableDataList = _.cloneDeep(val);
if (that.tableDataList.length > 0) {
console.log("that.tableDataList", that.tableDataList);
this.tdyt = that.tableDataList[0].yt ? that.tableDataList[0].yt : null
} else {
this.tdyt = null
......
/*
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-07-05 09:58:31
* @LastEditTime: 2023-07-11 13:59:14
*/
import { getForm } from "../flowform";
import { getHomeNoticeList } from "@/api/home.js"
......@@ -43,7 +43,6 @@ export default {
}
}
this.componentTag = getForm(tabname, this.$route.query.sqywbm);
console.log(tabname);
}
}
}
......
......@@ -3,14 +3,14 @@
<!-- 表单部分 国有建设用地使用权 -->
<div class="from-clues-header">
<el-form :model="queryForm" ref="queryForm">
<el-row>
<el-col :span="7">
<el-row :gutter="20">
<el-col :span="6">
<el-form-item label="宗地代码">
<el-input placeholder="请输入宗地代码" maxlength="19" v-model="queryForm.zddm" clearable class="width100">
</el-input>
</el-form-item>
</el-col>
<el-col :span="7">
<el-col :span="6">
<el-form-item label="不动产单元号">
<el-input placeholder="请输入不动产单元号" maxlength="28" v-model="queryForm.bdcdyh" clearable class="width100">
</el-input>
......@@ -22,7 +22,7 @@
</el-input>
</el-form-item>
</el-col>
<el-col :span="4" class="btnColRight">
<el-col :span="6" class="btnColRight">
<el-form-item>
<el-button type="primary" @click="resetForm(true)">重置</el-button>
<el-button type="primary" @click="handleSearch">查询</el-button>
......