推拿小程序前端代码仓库
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
445 B

3 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. }
  11. </script>
  12. <style lang="scss">
  13. // 公共css
  14. @import url("common.scss");
  15. body {
  16. background-color: #f7f7f7;
  17. font-size: 30rpx;
  18. }
  19. .page{
  20. padding-top: var(--window-top);
  21. }
  22. .redact-address {
  23. .uv-input__content__field-wrapper__field{
  24. padding: 10rpx !important;
  25. }
  26. }
  27. </style>