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.
 
 
 
 
 
duomendian/mixins/color.js

29 lines
493 B

export default {
data() {
return {
colorStyle: '',
navigation: 0,
colorNum: 0
};
},
created() {
this.colorStyle = uni.getStorageSync('viewColor')
uni.$on('ok', data => {
this.colorStyle = data
})
this.navigation = uni.getStorageSync('navigation')
uni.$on('navOk', data => {
this.navigation = data
})
},
methods: {
colorData(){
this.colorNum = uni.getStorageSync('statusColor')
uni.$on('colorOk', data => {
this.colorNum = data
})
}
}
};