酒店桌布为微信小程序
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
430 B

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