Merge remote-tracking branch 'origin/master'
| | |
| | | background: #17507c; |
| | | border-color: #17507c; |
| | | } |
| | | .zt.light .el-button--primary.is-disabled{ |
| | | background-color: #8bd9d1; |
| | | border-color: #8bd9d1; |
| | | } |
| | | .zt.light .el-tabs__item.is-active{ |
| | | color:#4877e8; |
| | | } |
| | |
| | | }, |
| | | created() { |
| | | let scrollView = this.$refs['scrollView'] |
| | | window.addEventListener('scroll', this.handleScroll,true); |
| | | window.addEventListener('scroll', this.handleScroll,{passive:false}); |
| | | }, |
| | | destroyed() { |
| | | let scrollView = this.$refs['scrollView'] |
| | | window.removeEventListener('scroll', this.handleScroll,true); |
| | | window.removeEventListener('scroll', this.handleScroll); |
| | | }, |
| | | mounted() { |
| | | this.getProductList() |