App.vue 485 B

12345678910111213141516171819202122232425262728
  1. <script>
  2. export default {
  3. onLaunch: function() {
  4. console.log('App Launch')
  5. },
  6. onShow: function() {
  7. console.log('App Show')
  8. },
  9. onHide: function() {
  10. console.log('App Hide')
  11. }
  12. }
  13. </script>
  14. <style>
  15. /*每个页面公共css */
  16. .uni-tabbar-bottom .uni-tabbar{
  17. /* border-radius: 19998rpx;
  18. box-shadow: 0rpx -6rpx 16rpx 0rpx rgba(47, 126, 243, 0.2);
  19. bottom: 20rpx;
  20. margin: 0 20rpx; */
  21. }
  22. .user-custom-btn{
  23. background: #DCE8F9;
  24. color: #2D74E7;
  25. }
  26. </style>