wxc-rich-text
Weex 富文本的通用解决方案,支持 文字、图标、链接、标签 形式的混排
规则
- 使用统一规范,前后端约定相关字段
- wxc-rich-text用于支持一行通用图文混排情况
- wxc-special-rich-text用于支持两行特殊情况(一个 tag 或 icon 加两行文本情况)
Demo
使用方法
<template>
<div class="container">
<wxc-rich-text :config-list="configList"
@wxcRichTextLinkClick="wxcRichTextLinkClick"></wxc-rich-text>
<div class="special-rich">
<wxc-special-rich-text :config-list="specialConfigList"></wxc-special-rich-text>
</div>
</div>
</template>
<script>
import icon from './type.js';
import { WxcRichText,WxcSpecialRichText } from 'weex-ui';
export default {
components: { WxcRichText, WxcSpecialRichText },
data: () => ({
configList: [{
type: 'icon',
src: 'https//gw.alicdn.com/tfs/TB1RRVWQXXXXXasXpXXXXXXXXXX-24-22.png',
style: {
height: 22
}
}, {
type: 'text',
value: '黄色主题',
theme: 'yellow'
}, {
type: 'link',
value: '自定义颜色link',
href: '//h5.m.taobao.com',
style: {
color: '#546E7A'
}
}, {
type: 'icon',
src: icon.fliggy
}, {
type: 'tag',
value: '满100减20',
theme: 'red'
}, {
type: 'tag',
value: '自定义标签',
style: {
fontSize: 26,
color: '#ffffff',
borderColor: '#3d3d3d',
backgroundColor: '#546E7A',
height: 36
}
}],
specialConfigList: [
{
type: 'tag',
value: '自由行',
style: {
fontSize: 24,
color: '#3D3D3D',
borderColor: '#FFC900',
backgroundColor: '#FFC900',
borderRadius: 14,
}
},
{
type: 'text',
value: '春秋旅游广州-泰国曼谷6天往返单机票自由行自由春秋旅游广州-泰国曼谷6天往返单机票自由行自由行…',
theme: 'black',
style: {
fontSize: 28
}
}
],
}),
methods: {
wxcRichTextLinkClick () {}
}
};
</script>
更详细代码可以参考 demo
可配置参数
Prop | Type | Required | Default | Description |
---|---|---|---|---|
config-list | Array |
Y |
[] |
富文本配置 可参考 规则图 和 Demo |
has-text-margin | Boolean |
N |
'true' | 文字相互之间是否有 margin |
事件回调
@wxcRichTextLinkClick="wxcRichTextLinkClick"
Please feel free to use and contribute to the development.
原文: https://alibaba.github.io/weex-ui/#/cn/packages/wxc-rich-text/