30 lines
470 B
Vue
30 lines
470 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 "uview-ui/index.scss";
|
|
.title{
|
|
text-align: center;
|
|
font-size: 20px;
|
|
margin-bottom: 20rpx;
|
|
font-weight: bold;
|
|
}
|
|
.charts-box {
|
|
width: 100%;
|
|
height: 250px;
|
|
margin-bottom: 50rpx;
|
|
}
|
|
</style>
|