12345678910111213141516171819202122232425262728293031323334353637 |
- <script>
- export default {
- data(){
- return{
- }
- },
- onLaunch: function() {
- console.log('App Launch')
- },
- onShow: function() {
- console.log('App Show')
- },
- onHide: function() {
- console.log('App Hide')
- }
- }
- </script>
- <style lang="scss">
- @import 'uview-ui/theme.scss';
- /*每个页面公共css */
- // uni-page-head{
- // display: none;
- // }
- html {
- overflow-x: hidden;
- }
- body{
- height: 100vh;
- }
- body::-webkit-scrollbar {
- display: none;
- }
- uni-page-body{
- height: 100%;
- }
- </style>
|