24 lines
337 B
Vue
24 lines
337 B
Vue
<script>
|
|
export default {
|
|
onLaunch: function() {},
|
|
onShow: function() {},
|
|
onHide: function() {}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
/*每个页面公共css */
|
|
@import "uview-ui/index.scss";
|
|
|
|
page {
|
|
background-color: #F4F5F7;
|
|
}
|
|
|
|
.app {
|
|
width: 100%;
|
|
height: 100%;
|
|
color: #000000;
|
|
padding: 30rpx 0 150rpx 0;
|
|
}
|
|
</style>
|