Files
dtx_store/pages/vip/growth.vue
2022-06-11 16:14:36 +08:00

33 lines
477 B
Vue

<template>
<view class="growth">
<rich-text :nodes="content"></rich-text>
</view>
</template>
<script>
import { growth } from '@/apis/interfaces/vip.js'
export default {
data() {
return {
content: ''
};
},
created() {
growth().then(res => {
this.content = res.content
}).catch(err => {
uni.showToast({
title: err.message,
icon : 'none'
})
})
}
}
</script>
<style lang="scss">
.growth{
padding: $padding;
}
</style>