1234567891011121314151617181920212223242526272829303132333435363738 |
- <template>
- <view class="user">
-
- <!--页面加载动画-->
- <rf-loading v-if="loading"></rf-loading>
- </view>
- </template>
- <script>
-
- export default {
- components: {
- },
- data() {
- return {
-
- }
- },
- // 小程序分享
- onShareAppMessage() {
- return {
- title: '',
- path: '/pages/index/index'
- }
- },
- async onShow() {
-
- },
-
- methods: {
-
-
- }
- }
- </script>
- <style lang='scss' scoped>
-
- </style>
|