You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<template> <view> <rich-text :nodes="content" v-if="$isRight(content)"></rich-text> <lf-nocontent v-else></lf-nocontent> <!-- 回到顶部 --> <u-back-top :scroll-top="pageScrollTop" :custom-style="{background: 'rgba(51, 51 51, 0.3)'}"></u-back-top> </view></template>
<script> export default { data(){ return { content: '' } }, onLoad(){ this.getData(); }, methods: { getData(){ this.$http(this.API.API_BUYAGREE).then(res => { this.content = res.data?.buy_protocol; }) } } }</script>
<style lang="scss" scoped="scoped"> </style>
|