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

40 lines
741 B

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