9d5dac71 by jiaozeping@pashanhoo.com

楼盘表

1 parent 4565bd2a
......@@ -130,15 +130,33 @@ export default {
debugger;
var zrzbsm = scope.row.bsm;
getLpb({ zrzbsm: zrzbsm })
.then((res) => {
if (res.code == 200) {
var lpbdata = res.result;
}
})
.catch((error) => {
console.log(error);
});
let that = this;
this.$popup({
title: "楼盘表",
width: "100%",
btnShow: true,
editItem: "xxxxxxxxxx",
height: "1200px",
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);
// });
},
},
};
......