| 1234567891011121314151617181920212223242526272829303132333435 |
- import { getStatusBarHeight } from '../../stores/index'
- Component({
- externalClasses: ['custom-class'],
- properties: {
- // 状态栏背景颜色
- backgroundColor: {
- type: String,
- value: '#ffffff',
- },
- dark: {
- type: Boolean,
- value: false,
- },
- },
- data: {
- styles: ''
- },
- attached() {
- const styles = []
- styles.push('padding-top:' + getStatusBarHeight() + 'px')
- styles.push('background-color:' + this.data.backgroundColor)
- this.setData({
- styles: styles.join(';')
- })
- if (this.data.dark) {
- wx.setNavigationBarColor({
- frontColor: '#000000',
- backgroundColor: '#ffffff',
- })
- }
- }
- })
|