34 lines
504 B
Vue
34 lines
504 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">
|
|
@import "@/uni_modules/uv-ui-tools/index.scss";
|
|
|
|
page {
|
|
background: #f4faff;
|
|
color: #1f2329;
|
|
font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
|
|
}
|
|
|
|
view,
|
|
scroll-view,
|
|
swiper,
|
|
swiper-item,
|
|
button,
|
|
input,
|
|
textarea {
|
|
box-sizing: border-box;
|
|
}
|
|
</style>
|