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

31 lines
480 B

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