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.
32 lines
594 B
32 lines
594 B
<template> |
|
<view class="ysxy ql-editor" v-html="node"> |
|
|
|
</view> |
|
</template> |
|
|
|
<script> |
|
import {progressionPrivacy} from '@/api/user.js' |
|
import { ref } from 'vue' |
|
export default { |
|
setup() { |
|
let node=ref('') |
|
progressionPrivacy({}).then(res=>{ |
|
console.log(res); |
|
node.value=res.data[0].content |
|
let richtext = node.value |
|
let regex = new RegExp('<img', 'gi'); |
|
richtext = richtext.replace(regex, '<img style="max-width: 100%;"'); |
|
node.value = richtext |
|
}) |
|
return { |
|
node |
|
} |
|
} |
|
} |
|
</script> |
|
|
|
<style lang="scss"> |
|
.ysxy{ |
|
padding: 20upx 30upx; |
|
} |
|
</style>
|
|
|