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

47 lines
868 B

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