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.
22 lines
487 B
22 lines
487 B
2 years ago
|
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: {}
|
||
|
});
|