12345678910111213141516171819202122 |
- <template>
- <view class="privacy">
- <!-- header -->
- <cu-custom bgColor="bg-gradual-blue" isBack><view slot="content">隐私声明</view></cu-custom>
- <!-- section -->
- <rich-text style="width: 100vw;" :nodes="describe"></rich-text>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- describe:""
- };
- },
- onLoad() {},
- methods: {}
- };
- </script>
- <style lang="scss" scoped></style>
|