App.vue 852 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <script>
  2. export default {
  3. onLaunch: function() {
  4. //条件编译 解决plus为undefind的问题
  5. // #ifdef APP-PLUS
  6. plus.screen.lockOrientation('landscape-primary');//锁定横屏
  7. // #endif
  8. },
  9. onShow: function() {
  10. // console.log('App Show')
  11. },
  12. onHide: function() {
  13. // console.log('App Hide')
  14. },
  15. }
  16. </script>
  17. <style lang="scss">
  18. /* 注意要写在第一行,同时给style标签加入lang="scss"属性 */
  19. @import "@/uni_modules/uview-ui/index.scss";
  20. /*每个页面公共css */
  21. /* 隐藏所有页面的 navigationBar */
  22. .uni-app--showtopwindow uni-page-head {
  23. display: none;
  24. }
  25. page{
  26. background: #0A101C;
  27. }
  28. ::v-deep .uni-app--maxwidth{
  29. uni-toast{
  30. .uni-toast{
  31. transform: translate(calc(-50% + 100px),calc(-50% + 13px)) !important;
  32. }
  33. }
  34. }
  35. </style>