7b54091d by renchao@pashanhoo.com

style:集体建设用地使用权/房屋所有权受理申请判断

1 parent 72e6e83d
1 <!-- 1 <!--
2 * @Description: 房屋多幢受理信息 2 * @Description: 房屋多幢受理信息
3 * @Autor: ssq 3 * @Autor: ssq
4 * @LastEditTime: 2023-09-20 13:39:05 4 * @LastEditTime: 2023-09-25 15:11:12
5 --> 5 -->
6 <template> 6 <template>
7 <div class="slxx"> 7 <div class="slxx">
...@@ -428,6 +428,18 @@ ...@@ -428,6 +428,18 @@
428 onSubmit () { 428 onSubmit () {
429 let that = this; 429 let that = this;
430 let arr = this.ruleForm.tdytqxList.filter((item) => !item.yt); 430 let arr = this.ruleForm.tdytqxList.filter((item) => !item.yt);
431
432 let jzmjArr = this.ruleForm.fdcqxm.filter((item) => {
433 return item.jzmj && item.jzmj !== '';
434 });
435 if (jzmjArr.length < this.ruleForm.fdcqxm.length) {
436 this.$message({
437 showClose: true,
438 message: "请检查房屋多幢明细建筑面积",
439 type: "error",
440 });
441 return false;
442 }
431 if (arr.length > 0) { 443 if (arr.length > 0) {
432 this.$message({ 444 this.$message({
433 showClose: true, 445 showClose: true,
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-09-21 08:56:07 4 * @LastEditTime: 2023-09-25 14:49:14
5 --> 5 -->
6 <template> 6 <template>
7 <div class="from-clues"> 7 <div class="from-clues">
...@@ -90,7 +90,7 @@ ...@@ -90,7 +90,7 @@
90 </el-col> 90 </el-col>
91 <el-col :span="10" class="btnColRight"> 91 <el-col :span="10" class="btnColRight">
92 <el-form-item> 92 <el-form-item>
93 <el-button type="primary" @click="resetForm(true)">重置</el-button> 93 <!-- <el-button type="primary" @click="resetForm(true)">重置</el-button> -->
94 <el-button type="primary" @click="handleSearch">查询</el-button> 94 <el-button type="primary" @click="handleSearch">查询</el-button>
95 </el-form-item> 95 </el-form-item>
96 </el-col> 96 </el-col>
...@@ -99,7 +99,7 @@ ...@@ -99,7 +99,7 @@
99 </el-form> 99 </el-form>
100 </div> 100 </div>
101 <div class="from-clues-content loadingtext"> 101 <div class="from-clues-content loadingtext">
102 <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :calcHeight="300" 102 <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :calcHeight="262"
103 :current-page.sync="pageData.currentPage" :total="dztableData.total" @size-change="handleSizeChange" @select="select" 103 :current-page.sync="pageData.currentPage" :total="dztableData.total" @size-change="handleSizeChange" @select="select"
104 @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="dztableData.columns" 104 @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="dztableData.columns"
105 :data="dztableData.data"> 105 :data="dztableData.data">
...@@ -372,8 +372,8 @@ ...@@ -372,8 +372,8 @@
372 formData: param 372 formData: param
373 }) 373 })
374 }, 374 },
375 dzlist (row) { 375 dzlist (row) {
376 var param = { 376 var param = {
377 bdcdyid: row.bdcdyid, 377 bdcdyid: row.bdcdyid,
378 qllx: row.qllx, 378 qllx: row.qllx,
379 bdcdyh: row.bdcdyh, 379 bdcdyh: row.bdcdyh,
......