2024-07-09 15:49:34 +08:00
|
|
|
<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 '@/static/style.css';
|
|
|
|
@import "./uni_modules/uview-ui/index.scss";
|
2024-07-09 18:28:44 +08:00
|
|
|
body{
|
|
|
|
font-family: 'PingFang SC','Source Han Sans';
|
|
|
|
}
|
2024-07-09 15:49:34 +08:00
|
|
|
</style>
|