珠宝小程序前端代码
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
485 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. this.$store.commit('initConfig')
  5. this.$store.commit('getCategoryList')
  6. },
  7. onShow: function() {
  8. },
  9. onHide: function() {
  10. }
  11. }
  12. </script>
  13. <style lang="scss">
  14. // 公共css
  15. @import url("common.scss");
  16. body{
  17. background-color: #f7f7f7;
  18. font-size: 30rpx;
  19. }
  20. .page{
  21. padding-top: var(--window-top);
  22. }
  23. .redact-address {
  24. .uv-input__content__field-wrapper__field{
  25. padding: 10rpx !important;
  26. }
  27. }
  28. </style>