25 lines
433 B
Vue
25 lines
433 B
Vue
|
<template>
|
||
|
<s-layout title="法律声明">
|
||
|
<view style="padding: 30rpx;">
|
||
|
<rich-text style="text-align: justify;" :nodes="Negotiate"></rich-text>
|
||
|
</view>
|
||
|
</s-layout>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
import { ref,reactive } from 'vue'
|
||
|
import {
|
||
|
onLoad,
|
||
|
onShow,
|
||
|
onPageScroll,
|
||
|
onPullDownRefresh,
|
||
|
onReachBottom
|
||
|
} from '@dcloudio/uni-app';
|
||
|
import sheep from '@/sheep';
|
||
|
|
||
|
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
</style>
|