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: {
|
|
}
|
|
};
|
|
|