App.vue 643 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <script>
  2. export default {
  3. onLaunch: function() {
  4. },
  5. onShow: function() {
  6. //this.getAuth();
  7. },
  8. onHide: function() {
  9. },
  10. methods:{
  11. }
  12. }
  13. </script>
  14. <style lang="scss">
  15. /*每个页面公共css */
  16. /* uView基础样式 */
  17. @import "uview-ui/index.scss";
  18. //全局页面背景色
  19. page{
  20. background-color: #f7f7f7;
  21. }
  22. // 点击时背景灰色
  23. .hover-class{
  24. background-color: #f7f7f7!important;
  25. }
  26. //底部安全距离
  27. .bottom-safety{
  28. padding-bottom: constant(safe-area-inset-bottom);
  29. padding-bottom: env(safe-area-inset-bottom);
  30. }
  31. //全局白色背景
  32. .bgc-f{
  33. background-color: #ffffff;
  34. }
  35. </style>