裂变星小程序-25.03.04
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
380 B

5 months ago
5 months ago
5 months ago
  1. <script>
  2. export default {
  3. onLaunch: function() {
  4. this.$store.commit('login')
  5. },
  6. onShow: function() {
  7. this.$store.commit('initConfig')
  8. },
  9. onHide: function() {
  10. }
  11. }
  12. </script>
  13. <style>
  14. @import url("common.scss");
  15. /*每个页面公共css */
  16. body{
  17. background-color: #f7f7f7;
  18. font-size: 30rpx;
  19. }
  20. .page{
  21. padding-top: var(--window-top);
  22. }
  23. </style>