1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| const themeChangeBehavior = Behavior({
| data: {
| theme: 'light',
| },
| attached() {
| this._initTheme();
| },
| methods: {
| _initTheme() {
| const that = this;
| wx.getSystemInfo({
| success(res) {
| that.setData({
| theme: res.theme,
| });
| },
| });
| wx.onThemeChange((res) => {
| that.setData({
| theme: res.theme,
| });
| });
| },
| },
| });
| export default themeChangeBehavior;
|
|