bb8594f7 by 任超

feat:综合查询

1 parent d8bb2f52
......@@ -16,7 +16,7 @@ export default {
return {
key: 0,
editItem: '',
myValue: this.value,
myValue: this.value
}
},
watch: {
......
......@@ -118,7 +118,7 @@ export default {
handleLpbClick (item) {
this.$popup('楼盘表', 'components/bjlp/index', {
width: '90%',
height: "90%",
height: "92%",
formData: {
bsm: ''
}
......
......@@ -99,36 +99,23 @@ export default {
//打开楼盘表
openlpbClick (scope) {
debugger;
var zrzbsm = scope.row.bsm;
let that = this;
this.$popup({
title: "楼盘表",
width: "50%",
btnShow: true,
editItem: "xxxxxxxxxx",
height: "600px",
// var zrzbsm = scope.row.bsm;
this.$popup('楼盘表', 'components/bjlp/index', {
width: '90%',
height: "92%",
formData: {
bsmSlsq: this.bsmSlsq,
dataList: this.unitData,
},
cancel: function () { }, //取消事件的回调
confirm: function () {
that.loadBdcdylist();
}, //确认事件的回调
});
getLpb({ zrzbsm: zrzbsm })
.then((res) => {
if (res.code == 200) {
var lpbdata = res.result;
}
})
.catch((error) => {
console.log(error);
});
bsm: ''
}
})
// getLpb({ zrzbsm: zrzbsm })
// .then((res) => {
// if (res.code == 200) {
// var lpbdata = res.result;
// }
// })
// .catch((error) => {
// console.log(error);
// });
},
},
};
......