123456789101112131415161718192021222324252627282930313233343536 |
- Page({
- onShareAppMessage() {
- return {
- title: '收货地址',
- path: 'packageAPI/pages/api/choose-address/choose-address'
- }
- },
- data: {
- theme: 'light',
- addressInfo: null
- },
- chooseAddress() {
- wx.chooseAddress({
- success: (res) => {
- this.setData({
- addressInfo: res
- })
- },
- fail(err) {
- console.log(err)
- }
- })
- },
- onLoad() {
- this.setData({
- theme: wx.getSystemInfoSync().theme || 'light'
- })
- if (wx.onThemeChange) {
- wx.onThemeChange(({theme}) => {
- this.setData({theme})
- })
- }
- }
- })
|