37 lines
624 B
Vue
37 lines
624 B
Vue
<script>
|
|
export default {
|
|
onLaunch: function () {
|
|
console.log('App Launch');
|
|
},
|
|
onShow: function () {
|
|
console.log('App Show');
|
|
},
|
|
onHide: function () {
|
|
console.log('App Hide');
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
/*每个页面公共css */
|
|
@import '@/uni_modules/uview-plus/index.scss';
|
|
.index-page {
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
|
|
/* #ifdef H5 */
|
|
padding-top: 20rpx;
|
|
/* #endif */
|
|
}
|
|
|
|
.page-navbar {
|
|
height: 88rpx;
|
|
line-height: 88rpx;
|
|
padding: 0 30rpx;
|
|
font-size: 34rpx;
|
|
font-weight: 700;
|
|
color: #000;
|
|
text-align: center;
|
|
}
|
|
</style>
|