瑶都万能墙
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.

46 lines
830 B

8 months ago
7 months ago
7 months ago
6 months ago
8 months ago
7 months ago
8 months ago
7 months ago
7 months ago
7 months ago
8 months ago
7 months ago
7 months ago
8 months ago
6 months ago
6 months ago
6 months ago
6 months ago
8 months ago
  1. <script>
  2. export default {
  3. onLaunch: function() {
  4. },
  5. onShow: function() {
  6. this.$store.commit('initConfig')
  7. this.$store.commit('getCityList')
  8. if(uni.getStorageSync('token')){
  9. this.$store.commit('getMemberInfo')
  10. }
  11. },
  12. onHide: function() {
  13. }
  14. }
  15. </script>
  16. <style lang="scss">
  17. /*每个页面公共css */
  18. @import url("uni.css");
  19. @import url("common.scss");
  20. body,page{
  21. background-color: #f3f3f3;
  22. font-size: 30rpx;
  23. }
  24. .page{
  25. padding-top: var(--window-top);
  26. padding-bottom: env(safe-area-inset-bottom);
  27. }
  28. .pageList{
  29. /deep/ .uv-search__content__input{
  30. padding: 10rpx !important;
  31. }
  32. }
  33. .uv-drop-down{
  34. background: transparent !important;
  35. border: none !important;
  36. justify-content: space-around !important;
  37. // .uv-text__value{
  38. // color: #fff !important;
  39. // }
  40. }
  41. </style>