userinfo.vue 409 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <view class="userinfo">
  3. <!--加载动画-->
  4. <rfLoading isFullScreen :active="loading"></rfLoading>
  5. <!--进度条加载-->
  6. <rf-load-progress
  7. :height="CustomBar"
  8. :progress="loadProgress"
  9. ></rf-load-progress>
  10. </view>
  11. </template>
  12. <script>
  13. export default {
  14. data() {
  15. return {
  16. };
  17. },
  18. onLoad() {
  19. },
  20. methods: {
  21. }
  22. };
  23. </script>
  24. <style lang="scss" scoped>
  25. </style>