| 12345678910111213141516171819202122232425262728 |
- <script>
- export default {
- onLaunch: function() {
- console.log('App Launch')
- },
- onShow: function() {
- console.log('App Show')
- },
- onHide: function() {
- console.log('App Hide')
- }
- }
- </script>
- <style>
- ::-webkit-scrollbar {
- width: 0;
- background: transparent;
- }
- page {
- background-color: #e4ebf5;
- }
-
- .demo-swiper{
- padding-bottom: 16rpx;
- }
- </style>
|