铝交易,微信公众号
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.

25 lines
390 B

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