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.
30 lines
426 B
30 lines
426 B
<template>
|
|
<view class="bg">
|
|
<view class="text" v-html="formateRichText(content)">
|
|
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
content:''
|
|
};
|
|
},
|
|
onLoad(option){
|
|
this.Post({
|
|
id:option.id
|
|
},'/api/pbservice/Other/getDictionary').then(res => {
|
|
this.content = res.data[0].content
|
|
})
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.text{
|
|
padding: 20rpx;
|
|
}
|
|
</style>
|
|
|