mirror of
https://github.com/zwpro/coupons.git
synced 2025-12-10 16:52:48 +00:00
29 lines
527 B
Vue
29 lines
527 B
Vue
<script>
|
|
export default {
|
|
onLaunch: function() {
|
|
console.log('App Launch');
|
|
},
|
|
onShow: function() {
|
|
console.log('App Show');
|
|
},
|
|
onHide: function() {
|
|
console.log('App Hide');
|
|
},
|
|
globalData: {
|
|
api: {
|
|
home: 'https://88d58ce0-c72d-4ad5-9ad5-5196f032ef71.bspapp.com/http/api/home',
|
|
openid: 'https://88d58ce0-c72d-4ad5-9ad5-5196f032ef71.bspapp.com/http/api/openid',
|
|
},
|
|
subscribe: 'https://88d58ce0-c72d-4ad5-9ad5-5196f032ef71.bspapp.com/http/subscribe',
|
|
openid: '',
|
|
},
|
|
|
|
|
|
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style>
|