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

35 lines
563 B

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