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.
21 lines
487 B
21 lines
487 B
const App = getApp();
|
|
Component({
|
|
properties: {},
|
|
|
|
data: {
|
|
statusHeight: 0,
|
|
navigationHeight: 0,
|
|
agencyName: '',
|
|
},
|
|
lifetimes: {
|
|
ready: function () {
|
|
this.setData({
|
|
statusHeight: App.globalData.deviceInfo.statusHeight,
|
|
navigationHeight: App.globalData.deviceInfo.navigationHeight,
|
|
agencyName: App.globalData.user.agencyName,
|
|
})
|
|
},
|
|
},
|
|
|
|
methods: {}
|
|
});
|
|
|