App.vue 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. ::v-deep .uni-modal{
  36. background-color: #263042 !important;
  37. .uni-modal__title{
  38. color: white;
  39. }
  40. .uni-modal__ft:after {
  41. border-top: #fff solid 1px;
  42. }
  43. .uni-modal__btn_default{
  44. color: #54647A !important;
  45. }
  46. .uni-modal__btn_primary{
  47. color: #91FDB9 !important;
  48. }
  49. }
  50. </style>