12345678910111213141516171819202122232425262728293031323334 |
- <template>
- <view class="userinfo">
-
- <!--加载动画-->
- <rfLoading isFullScreen :active="loading"></rfLoading>
- <!--进度条加载-->
- <rf-load-progress
- :height="CustomBar"
- :progress="loadProgress"
- ></rf-load-progress>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- };
- },
- onLoad() {
-
- },
- methods: {
-
- }
- };
- </script>
- <style lang="scss" scoped>
- </style>
|