奇点
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.
 
 
 
 

34 lines
752 B

<template>
<view class="lxwm ql-editor" v-html="jiexi">
</view>
</template>
<script>
import {progressionslideshowDetails} from '@/api/user.js'
import {ref} from 'vue'
export default {
props:['id','state'],
setup(props) {
let jiexi=ref('<h2 style="color:#ffffff;text-align: center;">联系我们</h2>')
progressionslideshowDetails({id:props.id,state:props.state}).then(res=>{
jiexi.value=res.data.content
let richtext = jiexi.value
let regex = new RegExp('<img', 'gi');
richtext = richtext.replace(regex, '<img style="max-width: 100%;"');
jiexi.value = richtext
})
return {
jiexi
}
}
}
</script>
<style lang="scss">
.lxwm{
width: 100%;
padding: 20upx 30upx;
box-sizing: border-box;
}
</style>