mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
102 lines
4.4 KiB
Vue
102 lines
4.4 KiB
Vue
<template>
|
||
<div>
|
||
<p class="tip">
|
||
设置 <table-column-api-link prop="type"/>=<table-column-api-link prop="html"/> 显示为 HTML 标签,不支持和其他功能列共存<br>
|
||
<span class="red">(动态渲染任意 HTML 是非常危险的,很容易导致 <a class="link" href="https://zh.wikipedia.org/wiki/%E8%B7%A8%E7%B6%B2%E7%AB%99%E6%8C%87%E4%BB%A4%E7%A2%BC">XSS</a> 攻击,请确保内容是可信的)</span>
|
||
</p>
|
||
|
||
<vxe-table
|
||
border
|
||
:data="tableData">
|
||
<vxe-column type="seq" width="60"></vxe-column>
|
||
<vxe-column field="name" title="Name" sortable></vxe-column>
|
||
<vxe-column
|
||
field="describeHtml"
|
||
title="<span class=red>HTML 标签与筛选</span>"
|
||
type="html"
|
||
sort-by="describe"
|
||
sortable
|
||
:filters="[{label:'包含 aa', value: 'aa'}, {label:'包含 bb', value: 'bb'}]"
|
||
:filter-method="filterDescribeMethod">
|
||
</vxe-column>
|
||
<vxe-column field="role" type="html" title="<span class=green>HTML 标签与格式化</span>" :formatter="formatRole"></vxe-column>
|
||
</vxe-table>
|
||
|
||
<p class="demo-code">{{ $t('app.body.button.showCode') }}</p>
|
||
|
||
<pre>
|
||
<pre-code class="xml">{{ demoCodes[0] }}</pre-code>
|
||
<pre-code class="javascript">{{ demoCodes[1] }}</pre-code>
|
||
</pre>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import XEUtils from 'xe-utils'
|
||
|
||
export default {
|
||
data () {
|
||
return {
|
||
tableData: [
|
||
{ name: 'xx1', describe: '字母 aa -1', describeHtml: '<span style="color: red">字母 <span style="color: blue">aa</span> -1</span>', role: 'oo1' },
|
||
{ name: 'xx2', describe: '字母 bb -2', describeHtml: '<span style="color: blue">字母 <span style="color: green">bb</span> -2</span>', role: 'oo2' },
|
||
{ name: 'xx3', describe: '字母 cc -3', describeHtml: '<span style="color: green">字母 <span style="color: red">cc</span> -3</span>', role: 'oo3' },
|
||
{ name: 'xx4', describe: '字母 dd -4', describeHtml: '<span style="color: blue">字母 <span style="color: green">dd</span> -4</span>', role: 'oo4' }
|
||
],
|
||
demoCodes: [
|
||
`
|
||
<vxe-table
|
||
border
|
||
:data="tableData">
|
||
<vxe-column type="seq" width="60"></vxe-column>
|
||
<vxe-column field="name" title="Name" sortable></vxe-column>
|
||
<vxe-column
|
||
field="describeHtml"
|
||
title="<span class=red>HTML 标签与筛选</span>"
|
||
type="html"
|
||
sort-by="describe"
|
||
sortable
|
||
:filters="[{label:'包含 aa', value: 'aa'}, {label:'包含 bb', value: 'bb'}]"
|
||
:filter-method="filterDescribeMethod">
|
||
</vxe-column>
|
||
<vxe-column field="role" type="html" title="<span class=green>HTML 标签与格式化</span>" :formatter="formatRole"></vxe-column>
|
||
</vxe-table>
|
||
`,
|
||
`
|
||
import XEUtils from 'xe-utils'
|
||
|
||
export default {
|
||
data () {
|
||
return {
|
||
tableData: [
|
||
{ name: 'xx1', describe: '字母 aa -1', describeHtml: '<span style="color: red">字母 <span style="color: blue">aa</span> -1</span>', role: 'oo1' },
|
||
{ name: 'xx2', describe: '字母 bb -2', describeHtml: '<span style="color: blue">字母 <span style="color: green">bb</span> -2</span>', role: 'oo2' },
|
||
{ name: 'xx3', describe: '字母 cc -3', describeHtml: '<span style="color: green">字母 <span style="color: red">cc</span> -3</span>', role: 'oo3' },
|
||
{ name: 'xx4', describe: '字母 dd -4', describeHtml: '<span style="color: blue">字母 <span style="color: green">dd</span> -4</span>', role: 'oo4' }
|
||
]
|
||
}
|
||
},
|
||
methods: {
|
||
formatRole ({ cellValue }) {
|
||
return \`<a href="https://github.com/x-extends/vxe-table" class="link" target="_black" style="color: orange">链接 \${cellValue}</a>\`
|
||
},
|
||
filterDescribeMethod ({ value, row, column }) {
|
||
return XEUtils.toValueString(row.html1).indexOf(value) > -1
|
||
}
|
||
}
|
||
}
|
||
`
|
||
]
|
||
}
|
||
},
|
||
methods: {
|
||
formatRole ({ cellValue }) {
|
||
return `<a href="https://github.com/x-extends/vxe-table" class="link" target="_black" style="color: orange">链接 ${cellValue}</a>`
|
||
},
|
||
filterDescribeMethod ({ value, row }) {
|
||
return XEUtils.toValueString(row.html1).indexOf(value) > -1
|
||
}
|
||
}
|
||
}
|
||
</script>
|