推广小程序前端代码
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.

32 lines
516 B

2 months ago
1 month ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
  1. <script>
  2. export default {
  3. onLaunch: function() {
  4. this.$store.commit('initConfig')
  5. },
  6. onShow: function() {
  7. },
  8. onHide: function() {
  9. },
  10. onLoad() {
  11. }
  12. }
  13. </script>
  14. <style lang="scss">
  15. @import '/common.scss';
  16. /*每个页面公共css */
  17. body{
  18. background-color: $uni-color-background;
  19. // background-color: '#f40';
  20. font-size: 28rpx;
  21. }
  22. .page{
  23. padding-top: var(--window-top);
  24. }
  25. .redact-address {
  26. .uv-input__content__field-wrapper__field{
  27. padding: 10rpx !important;
  28. }
  29. }
  30. </style>