089a348b by 杨威

每次切换房屋状态,将之前高亮的户边框颜色重置为默认

1 parent 0c9a1806
...@@ -610,7 +610,7 @@ export default { ...@@ -610,7 +610,7 @@ export default {
610 //每次切换房屋状态,将之前高亮的户边框颜色重置为默认 610 //每次切换房屋状态,将之前高亮的户边框颜色重置为默认
611 this.$refs.lpbContent.choosedList = []; 611 this.$refs.lpbContent.choosedList = [];
612 this.$refs.lpbContent.$refs.hBsm.forEach((item) => { 612 this.$refs.lpbContent.$refs.hBsm.forEach((item) => {
613 item.style.borderColor = '#E6E6E6'; 613 item.style.border = '';
614 }); 614 });
615 // console.log(bsms,'bsms'); 615 // console.log(bsms,'bsms');
616 // console.log(color,'color'); 616 // console.log(color,'color');
......