3b430fe8 by weimo934

Merge remote-tracking branch 'origin/master'

2 parents 9acbfe0d c6db7701
......@@ -186,11 +186,11 @@
created() {
},
methods: {
currentChange: function (val) {
currentChange(val) {
this.queryData.pageNo = val;
this.getData(this.queryData);
},
reset: function () {
reset(){
this.queryData = {
bdcdyh: "",
bdcqzh: "",
......@@ -204,23 +204,23 @@
};
this.getData(this.queryData)
},
getData: function (data) {
getData(data){
data['dylxs'] = this.dylxs;
getSearchList(data).then(res => {
this.Data = res.result.records
this.total = res.result.total;
})
},
search: function () {
search(){
this.getData(this.queryData)
},
addData: function (val) {
addData(val){
this.$emit("getData", val)
if (this.isZdClose) {
this.close();
}
},
close: function () {
close(){
this.$emit('close')
this.reset();
}
......
......@@ -756,4 +756,7 @@
color: blue;
text-decoration: underline;
}
/deep/ .el-select {
width: 100%;
}
</style>
......
......@@ -34,9 +34,25 @@
label="房屋结构">
</el-table-column>
<el-table-column
prop="mj"
prop="jzmj"
label="面积">
</el-table-column>
<el-table-column
prop="tnjzmj"
label="套内建筑面积">
</el-table-column>
<el-table-column
prop="ftjzmj"
label="分摊建筑面积">
</el-table-column>
<el-table-column
prop="dxbfjzmj"
label="地下部分建筑面积">
</el-table-column>
<el-table-column
prop="qtjzmj"
label="其它建筑面积">
</el-table-column>
</el-table>
</div>
</template>
......