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

50 lines
979 B

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