Files
huangjingfen/pro_v3.5.1/view/uniapp_v2/pages/index/components/richText.vue
apple 8e17762510 feat(uniapp_v2): 二开功能迁移与小程序主包优化
- 从 uniapp 迁移 HJF 页面、API、组件及用户/订单相关改动
- queue、assets 使用独立分包以降低主包体积
- 修复首页单根节点与支付结果页 v-if 链
- 关闭 HjfDemoPanel 全局注册;uniNoticeBar 注释 $getAppWebview 避免 __webviewId__ 报错
- 配置域名与 manifest 应用名称;cache/store 防御性处理

Made-with: Cursor
2026-03-26 12:16:01 +08:00

102 lines
2.4 KiB
Vue

<template>
<!-- 富文本 -->
<view v-if="!dataConfig.isHide" :style="[richTextWrapStyle]">
<view class="richText" v-if="description" :style="[richTextStyle]">
<!-- #ifdef MP-WEIXIN -->
<!-- <rich-text :nodes="description"></rich-text> -->
<jyf-parser :html="description" :tag-style="tagStyle" ref="article"></jyf-parser>
<!-- #endif -->
<!-- #ifdef H5 || APP-PLUS -->
<view v-html="description"></view>
<!-- #endif -->
</view>
</view>
</template>
<script>
import parser from '@/components/jyf-parser/jyf-parser';
export default {
name: 'richText',
props: {
dataConfig: {
type: Object,
default: () => {}
},
isSortType: {
type: String | Number,
default: 0
}
},
components: { 'jyf-parser': parser },
data() {
return {
bgColor: '',
lrConfig: 0,
udConfig: 0,
tagStyle: {
img: 'width:100%;display:block;',
table: 'width:100%',
video: 'width:100%;float:left;'
},
};
},
computed: {
description() {
let description = this.dataConfig.richText.val;
if (description) {
description = description.replace(
/<img/gi,
'<img style="max-width:100%;height:auto;float:left;display:block" '
);
description = description.replace(
/<video/gi,
'<video style="width:100%;height:auto;display:block" '
);
}
return description;
},
richTextStyle() {
let borderRadius = `${this.dataConfig.fillet.val * 2}rpx`;
if (this.dataConfig.fillet.type) {
borderRadius =
`${this.dataConfig.fillet.valList[0].val * 2}rpx ${this.dataConfig.fillet.valList[1].val * 2}rpx ${this.dataConfig.fillet.valList[2].val * 2}rpx ${this.dataConfig.fillet.valList[3].val * 2}rpx`;
}
return {
'border-radius': borderRadius,
'background': this.dataConfig.bgColor.color[0].item,
};
},
richTextWrapStyle() {
return {
'padding': `${this.dataConfig.topConfig.val * 2}rpx ${this.dataConfig.lrConfig.val * 2}rpx ${this.dataConfig.bottomConfig.val * 2}rpx`,
'margin-top': `${this.dataConfig.udConfig.val * 2}rpx`,
'background': this.dataConfig.bottomBgColor.color[0].item,
};
},
},
}
</script>
<style lang="scss">
.richText {
padding: 30rpx;
background-color: #fff;
// margin: 0 20rpx;
// border-radius: 24rpx;
&::after {
content: "";
display: table;
clear: both;
}
}
/deep/uni-video {
width: 100% !important;
}
/deep/video {
width: 100% !important;
}
</style>