rk
昨天 4f4538356403d620b9bd510fd45729a251291942
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<template>
    <view class="box">
        <u-parse :content="content"></u-parse>
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                content: ''
            };
        },
        onLoad() {
            this.refresh()
        },
        methods: {
            // 刷新首页信息
            refresh(type) {
                this.$u.api.home()
                    .then(res => {
                        if (res.code === 200) {
                            this.content = res.data.douyinExchangeTips
                        }
                    })
            },
        }
    }
</script>
 
<style lang="scss" scoped>
    .box {
        padding: 30rpx;
        box-sizing: border-box;
    }
</style>