12345678910111213141516171819202122232425262728293031323334 |
- Page({
- onShareAppMessage() {
- return {
- title: '获取手机系统信息',
- path: 'packageAPI/pages/device/get-system-info/get-system-info'
- }
- },
- data: {
- theme: 'light',
- systemInfo: {}
- },
- getSystemInfo() {
- const that = this
- wx.getSystemInfo({
- success(res) {
- that.setData({
- systemInfo: res
- })
- }
- })
- },
- onLoad() {
- this.setData({
- theme: wx.getSystemInfoSync().theme || 'light'
- })
- if (wx.onThemeChange) {
- wx.onThemeChange(({theme}) => {
- this.setData({theme})
- })
- }
- }
- })
|