App.vue 871 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <script>
  2. export default {
  3. globalData:{
  4. isAdmin:false
  5. },
  6. onLaunch: function() {
  7. console.log('App Launch')
  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. /*每个页面公共css */
  19. @import "uview-ui/index.scss";
  20. .content{
  21. background-color: #F8F8F8;
  22. min-height: 100vh;
  23. .mine-icon{
  24. height: 50rpx;
  25. width: 50rpx;
  26. }
  27. }
  28. .row{
  29. width: 100%;
  30. display: flex;
  31. flex-direction: row;
  32. align-items: center;
  33. justify-content: space-between;
  34. }
  35. .noOrder{
  36. width: 100vw;
  37. height: 30vh;
  38. display: flex;
  39. flex-direction: column;
  40. align-items: center;
  41. justify-content: center;
  42. font-size: 40rpx;
  43. color: #999999;
  44. }
  45. .feedbackconent-input::-webkit-input-placeholder {
  46. color: red;
  47. font-size: 30rpx;
  48. }
  49. </style>