建材商城系统20241014
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.

26 lines
417 B

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