楼盘表
Showing
1 changed file
with
27 additions
and
9 deletions
| ... | @@ -130,15 +130,33 @@ export default { | ... | @@ -130,15 +130,33 @@ export default { |
| 130 | debugger; | 130 | debugger; |
| 131 | var zrzbsm = scope.row.bsm; | 131 | var zrzbsm = scope.row.bsm; |
| 132 | 132 | ||
| 133 | getLpb({ zrzbsm: zrzbsm }) | 133 | let that = this; |
| 134 | .then((res) => { | 134 | this.$popup({ |
| 135 | if (res.code == 200) { | 135 | title: "楼盘表", |
| 136 | var lpbdata = res.result; | 136 | width: "100%", |
| 137 | } | 137 | btnShow: true, |
| 138 | }) | 138 | editItem: "xxxxxxxxxx", |
| 139 | .catch((error) => { | 139 | height: "1200px", |
| 140 | console.log(error); | 140 | formData: { |
| 141 | }); | 141 | bsmSlsq: this.bsmSlsq, |
| 142 | dataList: this.unitData, | ||
| 143 | }, | ||
| 144 | cancel: function () { }, //取消事件的回调 | ||
| 145 | confirm: function () { | ||
| 146 | that.loadBdcdylist(); | ||
| 147 | }, //确认事件的回调 | ||
| 148 | }); | ||
| 149 | |||
| 150 | |||
| 151 | // getLpb({ zrzbsm: zrzbsm }) | ||
| 152 | // .then((res) => { | ||
| 153 | // if (res.code == 200) { | ||
| 154 | // var lpbdata = res.result; | ||
| 155 | // } | ||
| 156 | // }) | ||
| 157 | // .catch((error) => { | ||
| 158 | // console.log(error); | ||
| 159 | // }); | ||
| 142 | }, | 160 | }, |
| 143 | }, | 161 | }, |
| 144 | }; | 162 | }; | ... | ... |
-
Please register or sign in to post a comment