每次切换房屋状态,将之前高亮的户边框颜色重置为默认
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -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'); | ... | ... |
-
Please register or sign in to post a comment