base.js
2.6 KB
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
// 判断城市名字是否有市
function changename(value) {
let name = "";
if (value == "天津市") {
name = value.split("市")[0];
} else if (value == "北京市") {
name = value.split("市")[0];
} else if (value == "上海市") {
name = value.split("市")[0];
} else if (value == "重庆市") {
name = value.split("市")[0];
}
return name;
}
// 格式富文本图片
var text = function(details) {
var texts = ""; //待拼接的内容
while (details.indexOf("<img") != -1) {
//寻找img 循环
texts += details.substring("0", details.indexOf("<img") + 4); //截取到<img前面的内容
details = details.substring(details.indexOf("<img") + 4); //<img 后面的内容
if (
details.indexOf("style=") != -1 &&
details.indexOf("style=") < details.indexOf(">")
) {
texts +=
details.substring(0, details.indexOf('style="') + 7) +
"max-width:100%;height:auto!important;margin:0 auto;"; //从 <img 后面的内容 截取到style= 加上自己要加的内容
details = details.substring(details.indexOf('style="') + 7); //style后面的内容拼接
} else {
texts += ' style="max-width:100%;height:auto!important;margin:0 auto;" ';
}
}
while (details.indexOf("<td") != -1) {
//寻找img 循环
texts += details.substring("0", details.indexOf("<td") + 4); //截取到<img前面的内容
details = details.substring(details.indexOf("<td") + 4); //<img 后面的内容
if (
details.indexOf("style=") != -1 &&
details.indexOf("style=") < details.indexOf(">")
) {
texts +=
details.substring(0, details.indexOf('style="') + 7) +
"max-width:74!important;height:auto!important;margin:0 auto;"; //从 <img 后面的内容 截取到style= 加上自己要加的内容
details = details.substring(details.indexOf('style="') + 7); //style后面的内容拼接
} else {
texts += ' style="max-width:100%;height:auto!important;margin:0 auto;" ';
}
}
texts += details; //最后拼接的内容
return texts;
};
// 富文本转化
var richTextFormat = function(value) {
// value = value.replace(/<\/?[^>]*>/g,'')
value = value.replace(/<\/?.+?>/g, '')
value = value.replace(/\s+/g, '')
if (value.length > 90) {
return value.slice(0, 90) + "...";
}
return value;
}
export { changename, text, richTextFormat };