bkzl.vue 920 Bytes
<template>
	<view style="padding:20rpx;">
		<view class="content" style="width:100%;overflow:hidden;">
				<rich-text class="rich-val" v-html="model.info"></rich-text>
		</view>
	</view>

</template>

<script>
	import BASE_URL from '../../common/config.js'
	export default {
		data() {
			return {
				
				BASE_URL,
				model: undefined
			}
		},
		onLoad() {
			this.ShowExam()
		},
		methods: {
			ShowExam() {
				let data = {
					currentPage: 1,
					pageSize: 1,
					sidx: '',
					sort: 'desc'
				}
				this.API.GetExaminfo(data).then(res => {
					console.log('这是备考资料', res)
					this.model = res.data.list[0]
					var regx=new RegExp('img','g')
					this.model.info=this.model.info.replace(regx,'img style="width:100%;height:auto"')
					console.log('这是复制', this.model)
				})
			}
		}
	}
</script>

<style>
.rich-val {

    word-break: break-all;

    white-space: pre-line;

}
</style>