Browse Source

清除富文本中的样式

dev
long 2 years ago
parent
commit
b81d9e38b0
  1. 17
      src/views/activiti/doneManage.vue
  2. 18
      src/views/activiti/historicDetail.vue

17
src/views/activiti/doneManage.vue

@ -85,7 +85,8 @@
</a-table-column>
<a-table-column title="审批意见" dataIndex="comment" :width="100" align="center">
<template slot-scope="t">
<j-ellipsis :value="t" :length="10"/>
<!--<j-ellipsis :value="t" :length="10"/>-->
<span>{{removeHtmlStyle(t)}}</span>
</template>
</a-table-column>
<a-table-column title="耗时" dataIndex="duration" :width="100" align="center"
@ -199,6 +200,20 @@ export default {
}
});
},
removeHtmlStyle(str) {
str = str.replace(/<\/?[^>]*>/g, ''); //html
str = str.replace(/<p[^>]*>/g, '<p class="tag-class">'); //
str = str.replace(/(\n)/g, '') //
str = str.replace(/\s+style="[^"]*"/g, '') //style
str = str.replace(/&nbsp;/gi, '') //
str = str.replace(/\<img/gi, '<img class="img_class"'); //
return str;
},
handleSearch() {
this.searchForm.pageNumber = 1;
this.searchForm.pageSize = 10;

18
src/views/activiti/historicDetail.vue

@ -39,8 +39,8 @@
</template>
</a-table-column>
<a-table-column title="审批意见" dataIndex="comment" width="150" align="center">
<template slot-scope="t">
<span>{{t}}</span>
<template slot-scope="t" >
<span >{{removeHtmlStyle(t)}}</span>
</template>
</a-table-column>
<a-table-column title="耗时" dataIndex="duration" width="150" align="center">
@ -152,6 +152,20 @@ export default {
this.imgUrl =this.url.getHighlightImg + this.id + "?time=" + new Date();
this.getDataList();
},
removeHtmlStyle(str) {
str = str.replace(/<\/?[^>]*>/g, ''); //html
str = str.replace(/<p[^>]*>/g, '<p class="tag-class">'); //
str = str.replace(/(\n)/g, '') //
str = str.replace(/\s+style="[^"]*"/g, '') //style
str = str.replace(/&nbsp;/gi, '') //
str = str.replace(/\<img/gi, '<img class="img_class"'); //
return str;
},
getDataList() {
this.loading = true;
this.getAction(this.url.historicFlow+this.id).then(res => {

Loading…
Cancel
Save