敢为人鲜小程序前端代码仓库
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.

40 lines
689 B

5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
  1. <script>
  2. export default {
  3. onLaunch: function() {
  4. this.$store.commit('initConfig')
  5. // 注释掉token检查,允许未登录用户访问所有页面
  6. // if(uni.getStorageSync('token')){
  7. // this.$store.commit('getQrCode')
  8. // }
  9. // 无需token,直接获取二维码
  10. this.$store.commit('getQrCode')
  11. },
  12. onShow: function() {
  13. },
  14. onHide: function() {
  15. }
  16. }
  17. </script>
  18. <style lang="scss">
  19. // 公共css
  20. @import url("common.scss");
  21. body {
  22. background-color: #f7f7f7;
  23. font-size: 30rpx;
  24. }
  25. .page{
  26. padding-top: var(--window-top);
  27. }
  28. .redact-address {
  29. .uv-input__content__field-wrapper__field{
  30. padding: 10rpx !important;
  31. }
  32. }
  33. </style>