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.
35 lines
525 B
35 lines
525 B
<template>
|
|
<view class="common_richtext_page padding-30 bg-ff" style="min-height: 100vh;width: 100vw;">
|
|
<ty-text-rich-text :html="html"></ty-text-rich-text>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
id:'',
|
|
html:''
|
|
}
|
|
},
|
|
onLoad(options) {
|
|
this.id = options.id;
|
|
this.rq.getData('fire/api/Fire/getCarouselText',{
|
|
id : this.id
|
|
}).then(res=>{
|
|
this.html = res.data.text;
|
|
})
|
|
},
|
|
onReady() {
|
|
|
|
},
|
|
methods: {
|
|
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|