0ad6e0d4 by renchao@pashanhoo.com

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

2 parents e1e11317 c0c9db4f
...@@ -165,7 +165,12 @@ export default class filter { ...@@ -165,7 +165,12 @@ export default class filter {
165 console.log("row[key]22",row[key]); 165 console.log("row[key]22",row[key]);
166 keys++; 166 keys++;
167 if (keys == 1) { 167 if (keys == 1) {
168 text += strategies[key]; 168 if(text){
169 text += ',' +strategies[key];
170 }else{
171 text += strategies[key];
172 }
173
169 } else { 174 } else {
170 text += ',' + strategies[key]; 175 text += ',' + strategies[key];
171 } 176 }
......
...@@ -188,15 +188,13 @@ ...@@ -188,15 +188,13 @@
188 * @author: renchao 188 * @author: renchao
189 */ 189 */
190 handleLpbClick (item) { 190 handleLpbClick (item) {
191 this.$popup('楼盘表', 'lpb/index', { 191 console.log("zrzbsm",item,item.zrzbsm);
192 width: '85%', 192 this.$popupDialog('楼盘表', 'lpb/index', {
193 formData: { 193 bsm: item.zrzbsm,
194 bsm: item.zrzbsm,
195 zrzbsm: item.zrzbsm, 194 zrzbsm: item.zrzbsm,
196 zdbsm: item.zrzbsm, 195 zdbsm: item.zrzbsm,
197 onlyShow: true 196 onlyShow: true
198 } 197 }, '90%', true)
199 })
200 } 198 }
201 } 199 }
202 } 200 }
......