f5a8bd70 by renchao@pashanhoo.com

Merge branch 'dev' of http://yun.pashanhoo.com:9090/bdc/bdcdj-web into dev

2 parents 52385f8c 6570979f
...@@ -137,6 +137,11 @@ ...@@ -137,6 +137,11 @@
137 } 137 }
138 }, 138 },
139 // 左右移动 139 // 左右移动
140 /**
141 * @description: 左右移动
142 * @param {*} direction
143 * @author: renchao
144 */
140 handleMove (direction) { 145 handleMove (direction) {
141 move(this.previewImg.imgList[this.previewImg.index].bsmFile, direction).then(res => { 146 move(this.previewImg.imgList[this.previewImg.index].bsmFile, direction).then(res => {
142 this.$emit('updateList', { children: res.result, bsmMaterial: this.previewImg.bsmMaterial }) 147 this.$emit('updateList', { children: res.result, bsmMaterial: this.previewImg.bsmMaterial })
......
...@@ -297,6 +297,11 @@ ...@@ -297,6 +297,11 @@
297 this.bdcdysz = val; 297 this.bdcdysz = val;
298 } 298 }
299 }, 299 },
300 /**
301 * @description: handleLpbClick
302 * @param {*} item
303 * @author: renchao
304 */
300 handleLpbClick (item) { 305 handleLpbClick (item) {
301 this.$popup('楼盘表', 'lpb/index', { 306 this.$popup('楼盘表', 'lpb/index', {
302 width: '85%', 307 width: '85%',
...@@ -307,17 +312,6 @@ ...@@ -307,17 +312,6 @@
307 } 312 }
308 }) 313 })
309 }, 314 },
310 handleSelectionChange (val) {
311 if (this.sqywInfo.sqywdylx == "1") {
312 if (val.length > 1) {
313 this.bdcdysz = [...val[val.length - 1]];
314 } else {
315 this.bdcdysz = val;
316 }
317 } else {
318 this.bdcdysz = val;
319 }
320 },
321 /** 315 /**
322 * @description: select 316 * @description: select
323 * @param {*} selection 317 * @param {*} selection
......