uniapp-ZHSQ/App.vue
2025-09-20 10:41:56 +08:00

51 lines
863 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<style lang="scss">
/* 注意要写在第一行同时给style标签加入lang="scss"属性 */
@import "uni_modules/uview-ui/index.scss";
</style>
<script>
export default {
onLaunch: function() {
// 每次小程序初始加载时删除缓存地址信息
uni.removeStorageSync('location');
console.log('App Launch')
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style>
/*每个页面公共css */
image {
width: 100%;
height: 100%;
display: block;
}
.gray{
height: 20rpx;
background: #F9F9F9;
}
page{
font-size: 28rpx;
padding-bottom: 180rpx;
}
.uicon-volume {
font-size: 28rpx !important;
}
.u-grid-item {
margin-bottom: 43rpx;
}
.line {
height: 20rpx;
background: #F9F9F9;
border-radius: 0rpx 0rpx 0rpx 0rpx;
}
</style>