3b430fe8 by weimo934

Merge remote-tracking branch 'origin/master'

2 parents 9acbfe0d c6db7701
...@@ -186,11 +186,11 @@ ...@@ -186,11 +186,11 @@
186 created() { 186 created() {
187 }, 187 },
188 methods: { 188 methods: {
189 currentChange: function (val) { 189 currentChange(val) {
190 this.queryData.pageNo = val; 190 this.queryData.pageNo = val;
191 this.getData(this.queryData); 191 this.getData(this.queryData);
192 }, 192 },
193 reset: function () { 193 reset(){
194 this.queryData = { 194 this.queryData = {
195 bdcdyh: "", 195 bdcdyh: "",
196 bdcqzh: "", 196 bdcqzh: "",
...@@ -204,23 +204,23 @@ ...@@ -204,23 +204,23 @@
204 }; 204 };
205 this.getData(this.queryData) 205 this.getData(this.queryData)
206 }, 206 },
207 getData: function (data) { 207 getData(data){
208 data['dylxs'] = this.dylxs; 208 data['dylxs'] = this.dylxs;
209 getSearchList(data).then(res => { 209 getSearchList(data).then(res => {
210 this.Data = res.result.records 210 this.Data = res.result.records
211 this.total = res.result.total; 211 this.total = res.result.total;
212 }) 212 })
213 }, 213 },
214 search: function () { 214 search(){
215 this.getData(this.queryData) 215 this.getData(this.queryData)
216 }, 216 },
217 addData: function (val) { 217 addData(val){
218 this.$emit("getData", val) 218 this.$emit("getData", val)
219 if (this.isZdClose) { 219 if (this.isZdClose) {
220 this.close(); 220 this.close();
221 } 221 }
222 }, 222 },
223 close: function () { 223 close(){
224 this.$emit('close') 224 this.$emit('close')
225 this.reset(); 225 this.reset();
226 } 226 }
......
...@@ -756,4 +756,7 @@ ...@@ -756,4 +756,7 @@
756 color: blue; 756 color: blue;
757 text-decoration: underline; 757 text-decoration: underline;
758 } 758 }
759 /deep/ .el-select {
760 width: 100%;
761 }
759 </style> 762 </style>
......
...@@ -34,9 +34,25 @@ ...@@ -34,9 +34,25 @@
34 label="房屋结构"> 34 label="房屋结构">
35 </el-table-column> 35 </el-table-column>
36 <el-table-column 36 <el-table-column
37 prop="mj" 37 prop="jzmj"
38 label="面积"> 38 label="面积">
39 </el-table-column> 39 </el-table-column>
40 <el-table-column
41 prop="tnjzmj"
42 label="套内建筑面积">
43 </el-table-column>
44 <el-table-column
45 prop="ftjzmj"
46 label="分摊建筑面积">
47 </el-table-column>
48 <el-table-column
49 prop="dxbfjzmj"
50 label="地下部分建筑面积">
51 </el-table-column>
52 <el-table-column
53 prop="qtjzmj"
54 label="其它建筑面积">
55 </el-table-column>
40 </el-table> 56 </el-table>
41 </div> 57 </div>
42 </template> 58 </template>
......