1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
| <!--**
| * forked from:https://github.com/F-loat/mpvue-wxParse
| *
| * github地址: https://github.com/dcloudio/uParse
| *
| * for: uni-app框架下 富文本解析
| */-->
|
| <template>
| <!--基础元素-->
| <div class="wxParse" :class="className" v-if="!loading">
| <block v-for="(node,index) of nodes" :key="index">
| <wxParseTemplate :node="node" />
| </block>
| </div>
| </template>
|
| <script>
| import HtmlToJson from './libs/html2json';
| import wxParseTemplate from './components/wxParseTemplate0';
|
| export default {
| name: 'wxParse',
| props: {
| loading: {
| type: Boolean,
| default: false,
| },
| className: {
| type: String,
| default: '',
| },
| content: {
| type: String,
| default: '',
| },
| noData: {
| type: String,
| default: '<div style="color: red;">数据不能为空</div>',
| },
| startHandler: {
| type: Function,
| default() {
| return (node) => {
| node.attr.class = null;
| node.attr.style = null;
| };
| },
| },
| endHandler: {
| type: Function,
| default: null,
| },
| charsHandler: {
| type: Function,
| default: null,
| },
| imageProp: {
| type: Object,
| default() {
| return {
| mode: 'aspectFit',
| padding: 0,
| lazyLoad: false,
| domain: '',
| };
| },
| },
| },
| components: {
| wxParseTemplate,
| },
| data() {
| return {
| imageUrls: [],
| };
| },
| computed: {
| nodes() {
| const {
| content,
| noData,
| imageProp,
| startHandler,
| endHandler,
| charsHandler,
| } = this;
| const parseData = content || noData;
| const customHandler = {
| start: startHandler,
| end: endHandler,
| chars: charsHandler,
| };
| const results = HtmlToJson(parseData, customHandler, imageProp, this);
| this.imageUrls = results.imageUrls;
| console.log(results)
| return results.nodes;
| },
| },
| methods: {
| navigate(href, $event) {
| this.$emit('navigate', href, $event);
| },
| preview(src, $event) {
| if (!this.imageUrls.length) return;
| wx.previewImage({
| current: src,
| urls: this.imageUrls,
| });
| this.$emit('preview', src, $event);
| },
| removeImageUrl(src) {
| const { imageUrls } = this;
| imageUrls.splice(imageUrls.indexOf(src), 1);
| },
| },
| };
| </script>
|
|