mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
136 lines
4.4 KiB
Vue
136 lines
4.4 KiB
Vue
<template>
|
||
<div>
|
||
<p class="tip">
|
||
行的动态样色、单元格动态样式,表头的动态样式、表尾的动态样式、可以通过设置 <table-api-link prop="cell-style"/>、<table-api-link prop="header-cell-style"/>、<table-api-link prop="row-style"/> ...等参数<br>
|
||
<span class="red">(注:当自定义样式之后可能会覆盖表格的样式,比如选中行..等,记得自行处理好相关样式)</span>
|
||
</p>
|
||
|
||
<vxe-table
|
||
border
|
||
:header-cell-style="headerCellStyle"
|
||
:cell-style="cellStyle"
|
||
:data="tableData">
|
||
<vxe-column type="seq" width="60"></vxe-column>
|
||
<vxe-column field="name" title="Name"></vxe-column>
|
||
<vxe-column field="sex" title="Sex"></vxe-column>
|
||
<vxe-column field="age" title="Age"></vxe-column>
|
||
<vxe-column field="attr1" title="Attr1"></vxe-column>
|
||
<vxe-column field="address" title="Address" show-overflow></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>
|
||
export default {
|
||
data () {
|
||
return {
|
||
tableData: [
|
||
{ id: 10001, name: 'Test1', role: 'Develop', sex: 'Man', age: 28, address: 'test abc' },
|
||
{ id: 10002, name: 'Test2', role: 'Test', sex: 'Women', age: 22, address: 'Guangzhou' },
|
||
{ id: 10003, name: 'Test3', role: 'PM', sex: 'Man', age: 32, address: 'Shanghai' },
|
||
{ id: 10004, name: 'Test4', role: 'Designer', sex: 'Women', age: 24, address: 'Shanghai' }
|
||
],
|
||
demoCodes: [
|
||
`
|
||
<vxe-table
|
||
border
|
||
:header-cell-style="headerCellStyle"
|
||
:cell-style="cellStyle"
|
||
:data="tableData">
|
||
<vxe-column type="seq" width="60"></vxe-column>
|
||
<vxe-column field="name" title="Name"></vxe-column>
|
||
<vxe-column field="sex" title="Sex"></vxe-column>
|
||
<vxe-column field="age" title="Age"></vxe-column>
|
||
<vxe-column field="attr1" title="Attr1"></vxe-column>
|
||
<vxe-column field="address" title="Address" show-overflow></vxe-column>
|
||
</vxe-table>
|
||
`,
|
||
`
|
||
export default {
|
||
data () {
|
||
return {
|
||
tableData: [
|
||
{ id: 10001, name: 'Test1', role: 'Develop', sex: 'Man', age: 28, address: 'test abc' },
|
||
{ id: 10002, name: 'Test2', role: 'Test', sex: 'Women', age: 22, address: 'Guangzhou' },
|
||
{ id: 10003, name: 'Test3', role: 'PM', sex: 'Man', age: 32, address: 'Shanghai' },
|
||
{ id: 10004, name: 'Test4', role: 'Designer', sex: 'Women', age: 24, address: 'Shanghai' }
|
||
]
|
||
}
|
||
},
|
||
methods: {
|
||
headerCellStyle ({ column, columnIndex }) {
|
||
if (column.property === 'name') {
|
||
return {
|
||
backgroundColor: '#f60',
|
||
color: '#ffffff'
|
||
}
|
||
}
|
||
},
|
||
cellStyle ({ row, rowIndex, column }) {
|
||
if (column.property === 'sex') {
|
||
if (row.sex === 'Women') {
|
||
return {
|
||
backgroundColor: '#187',
|
||
color: '#ffffff'
|
||
}
|
||
} else if (row.age === 24) {
|
||
return {
|
||
backgroundColor: '#2db7f5',
|
||
color: '#000'
|
||
}
|
||
}
|
||
}
|
||
if ([2, 3, 5].includes(rowIndex)) {
|
||
return {
|
||
backgroundColor: 'red',
|
||
color: '#ffffff'
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
`
|
||
]
|
||
}
|
||
},
|
||
methods: {
|
||
headerCellStyle ({ column }) {
|
||
if (column.property === 'name') {
|
||
return {
|
||
backgroundColor: '#f60',
|
||
color: '#ffffff'
|
||
}
|
||
}
|
||
},
|
||
cellStyle ({ row, rowIndex, column }) {
|
||
if (column.property === 'sex') {
|
||
if (row.sex === 'Women') {
|
||
return {
|
||
backgroundColor: '#187',
|
||
color: '#ffffff'
|
||
}
|
||
} else if (row.age === 24) {
|
||
return {
|
||
backgroundColor: '#2db7f5',
|
||
color: '#000'
|
||
}
|
||
}
|
||
}
|
||
if ([2, 3, 5].includes(rowIndex)) {
|
||
return {
|
||
backgroundColor: 'red',
|
||
color: '#ffffff'
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
</script>
|