App.vue 485 B

1234567891011121314151617181920212223242526272829
  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-checkbox .uni-checkbox-input {
  17. width: 25rpx;
  18. height: 25rpx;
  19. }
  20. .title-circ {
  21. margin-right: 20rpx;
  22. width: 30rpx;
  23. height: 30rpx;
  24. background-color: #49A992;
  25. border-radius: 15rpx;
  26. }
  27. </style>