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

27 lines
465 B

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