推广小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

33 lines
672 B

export const globalMixin = {
data() {
return {
bgColor:'transparent',
fontColor:'#fff',
leftIconColor: '#fff'
};
},
computed: {
customStyle() {
return {
height: '88rpx',
color: '#FF4546',
}
}
},
created() {
},
onPageScroll(e) {
if(e.scrollTop > 30) {
this.bgColor ='#fff'
this.fontColor ="#000",
this.leftIconColor ="#000"
}else{
this.bgColor ='transparent'
this.fontColor ="#fff",
this.leftIconColor ="#fff"
}
},
methods: {
}
};