mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
337 lines
13 KiB
Vue
337 lines
13 KiB
Vue
<template>
|
||
<div>
|
||
<p class="tip">
|
||
行的样色、单元格样式,表头的样式、表尾的样式、全部都可以完全自定义,通过设置 <table-api-link prop="cell-class-name"/>、<table-api-link prop="header-cell-class-name"/>、<table-api-link prop="row-class-name"/> ...等参数<br>
|
||
<span class="red">(注:当自定义样式之后可能会覆盖表格的样式,比如选中行..等,记得自行处理好相关样式)</span>
|
||
</p>
|
||
|
||
<vxe-table
|
||
border
|
||
class="mytable-style"
|
||
:header-cell-class-name="headerCellClassName"
|
||
:row-class-name="rowClassName"
|
||
:cell-class-name="cellClassName"
|
||
:data="demo1.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="typescript">{{ demoCodes[1] }}</pre-code>
|
||
<pre-code class="scss">{{ demoCodes[2] }}</pre-code>
|
||
</pre>
|
||
|
||
<p class="tip">通过 <table-api-link prop="cell-click"/> 事件点击改变颜色</p>
|
||
|
||
<vxe-table
|
||
border
|
||
class="mytable-style"
|
||
:cell-class-name="cellClassName2"
|
||
:data="demo2.tableData"
|
||
@cell-click="cellClickEvent2">
|
||
<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[3] }}</pre-code>
|
||
<pre-code class="typescript">{{ demoCodes[4] }}</pre-code>
|
||
<pre-code class="scss">{{ demoCodes[5] }}</pre-code>
|
||
</pre>
|
||
</div>
|
||
</template>
|
||
|
||
<script lang="ts">
|
||
import { defineComponent, reactive } from 'vue'
|
||
import { VxeTablePropTypes, VxeTableEvents } from '../../../../types/index'
|
||
|
||
export default defineComponent({
|
||
setup () {
|
||
const demo1 = reactive({
|
||
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: 23, address: 'test abc' },
|
||
{ id: 10005, name: 'Test5', role: 'Develop', sex: 'Women', age: 30, address: 'Shanghai' },
|
||
{ id: 10006, name: 'Test6', role: 'Designer', sex: 'Women', age: 21, address: 'test abc' },
|
||
{ id: 10007, name: 'Test7', role: 'Test', sex: 'Man', age: 29, address: 'test abc' },
|
||
{ id: 10008, name: 'Test8', role: 'Develop', sex: 'Man', age: 35, address: 'test abc' }
|
||
]
|
||
})
|
||
|
||
const demo2 = reactive({
|
||
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: 23, address: 'test abc' },
|
||
{ id: 10005, name: 'Test5', role: 'Develop', sex: 'Women', age: 30, address: 'Shanghai' },
|
||
{ id: 10006, name: 'Test6', role: 'Designer', sex: 'Women', age: 21, address: 'test abc' },
|
||
{ id: 10007, name: 'Test7', role: 'Test', sex: 'Man', age: 29, address: 'test abc' },
|
||
{ id: 10008, name: 'Test8', role: 'Develop', sex: 'Man', age: 35, address: 'test abc' }
|
||
],
|
||
selectRow: null as any,
|
||
selectColumn: null as any
|
||
})
|
||
|
||
const headerCellClassName: VxeTablePropTypes.HeaderCellClassName = ({ column }) => {
|
||
if (column.property === 'name') {
|
||
return 'col-blue'
|
||
}
|
||
return null
|
||
}
|
||
|
||
const rowClassName: VxeTablePropTypes.RowClassName = ({ rowIndex }) => {
|
||
if ([2, 3, 5].includes(rowIndex)) {
|
||
return 'row-green'
|
||
}
|
||
return null
|
||
}
|
||
|
||
const cellClassName: VxeTablePropTypes.CellClassName = ({ row, column }) => {
|
||
if (column.property === 'sex') {
|
||
if (row.sex >= '1') {
|
||
return 'col-red'
|
||
} else if (row.age === 26) {
|
||
return 'col-orange'
|
||
}
|
||
}
|
||
return null
|
||
}
|
||
|
||
const cellClassName2: VxeTablePropTypes.CellClassName = ({ row, column }) => {
|
||
if (row === demo2.selectRow && column === demo2.selectColumn) {
|
||
return 'col-orange'
|
||
}
|
||
return null
|
||
}
|
||
|
||
const cellClickEvent2: VxeTableEvents.CellClick = ({ row, column }) => {
|
||
demo2.selectRow = row
|
||
demo2.selectColumn = column
|
||
}
|
||
|
||
return {
|
||
demo1,
|
||
demo2,
|
||
headerCellClassName,
|
||
rowClassName,
|
||
cellClassName,
|
||
cellClassName2,
|
||
cellClickEvent2,
|
||
demoCodes: [
|
||
`
|
||
<vxe-table
|
||
border
|
||
class="mytable-style"
|
||
:header-cell-class-name="headerCellClassName"
|
||
:row-class-name="rowClassName"
|
||
:cell-class-name="cellClassName"
|
||
:data="demo1.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>
|
||
`,
|
||
`
|
||
import { defineComponent, reactive } from 'vue'
|
||
import { VxeTablePropTypes } from 'vxe-table'
|
||
|
||
export default defineComponent({
|
||
setup () {
|
||
const demo1 = reactive({
|
||
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: 23, address: 'test abc' },
|
||
{ id: 10005, name: 'Test5', role: 'Develop', sex: 'Women', age: 30, address: 'Shanghai' },
|
||
{ id: 10006, name: 'Test6', role: 'Designer', sex: 'Women', age: 21, address: 'test abc' },
|
||
{ id: 10007, name: 'Test7', role: 'Test', sex: 'Man', age: 29, address: 'test abc' },
|
||
{ id: 10008, name: 'Test8', role: 'Develop', sex: 'Man', age: 35, address: 'test abc' }
|
||
]
|
||
})
|
||
|
||
const demo2 = reactive({
|
||
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: 23, address: 'test abc' },
|
||
{ id: 10005, name: 'Test5', role: 'Develop', sex: 'Women', age: 30, address: 'Shanghai' },
|
||
{ id: 10006, name: 'Test6', role: 'Designer', sex: 'Women', age: 21, address: 'test abc' },
|
||
{ id: 10007, name: 'Test7', role: 'Test', sex: 'Man', age: 29, address: 'test abc' },
|
||
{ id: 10008, name: 'Test8', role: 'Develop', sex: 'Man', age: 35, address: 'test abc' }
|
||
],
|
||
selectRow: null as any,
|
||
selectColumn: null as any
|
||
})
|
||
|
||
const headerCellClassName: VxeTablePropTypes.HeaderCellClassName = ({ column }) => {
|
||
if (column.property === 'name') {
|
||
return 'col-blue'
|
||
}
|
||
return null
|
||
}
|
||
|
||
const rowClassName: VxeTablePropTypes.RowClassName = ({ rowIndex }) => {
|
||
if ([2, 3, 5].includes(rowIndex)) {
|
||
return 'row-green'
|
||
}
|
||
return null
|
||
}
|
||
|
||
const cellClassName: VxeTablePropTypes.CellClassName = ({ row, column }) => {
|
||
if (column.property === 'sex') {
|
||
if (row.sex >= '1') {
|
||
return 'col-red'
|
||
} else if (row.age === 26) {
|
||
return 'col-orange'
|
||
}
|
||
}
|
||
return null
|
||
}
|
||
|
||
return {
|
||
demo1,
|
||
headerCellClassName,
|
||
rowClassName,
|
||
cellClassName
|
||
}
|
||
}
|
||
})
|
||
`,
|
||
`
|
||
.mytable-style .vxe-body--row.row-green {
|
||
background-color: #187;
|
||
color: #fff;
|
||
}
|
||
.mytable-style .vxe-header--column.col-blue {
|
||
background-color: #2db7f5;
|
||
color: #fff;
|
||
}
|
||
.mytable-style .vxe-body--column.col-red {
|
||
background-color: red;
|
||
color: #fff;
|
||
}
|
||
.mytable-style .vxe-body--column.col-orange {
|
||
background-color: #f60;
|
||
color: #fff;
|
||
}
|
||
`,
|
||
`
|
||
<vxe-table
|
||
border
|
||
class="mytable-style"
|
||
:cell-class-name="cellClassName2"
|
||
:data="demo2.tableData"
|
||
@cell-click="cellClickEvent2">
|
||
<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>
|
||
`,
|
||
`
|
||
import { defineComponent, reactive } from 'vue'
|
||
import { VxeTablePropTypes, VxeTableEvents } from 'vxe-table'
|
||
|
||
export default defineComponent({
|
||
setup () {
|
||
const demo2 = reactive({
|
||
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: 23, address: 'test abc' },
|
||
{ id: 10005, name: 'Test5', role: 'Develop', sex: 'Women', age: 30, address: 'Shanghai' },
|
||
{ id: 10006, name: 'Test6', role: 'Designer', sex: 'Women', age: 21, address: 'test abc' },
|
||
{ id: 10007, name: 'Test7', role: 'Test', sex: 'Man', age: 29, address: 'test abc' },
|
||
{ id: 10008, name: 'Test8', role: 'Develop', sex: 'Man', age: 35, address: 'test abc' }
|
||
],
|
||
selectRow: null as any,
|
||
selectColumn: null as any
|
||
})
|
||
|
||
const cellClassName2: VxeTablePropTypes.CellClassName = ({ row, column }) => {
|
||
if (row === demo2.selectRow && column === demo2.selectColumn) {
|
||
return 'col-orange'
|
||
}
|
||
return null
|
||
}
|
||
|
||
const cellClickEvent2: VxeTableEvents.CellClick = ({ row, column }) => {
|
||
demo2.selectRow = row
|
||
demo2.selectColumn = column
|
||
}
|
||
|
||
return {
|
||
demo2,
|
||
cellClassName2,
|
||
cellClickEvent2
|
||
}
|
||
}
|
||
})
|
||
`,
|
||
`
|
||
.mytable-style.vxe-table .vxe-body--row.row-green {
|
||
background-color: #187;
|
||
color: #fff;
|
||
}
|
||
.mytable-style.vxe-table .vxe-header--column.col-blue {
|
||
background-color: #2db7f5;
|
||
color: #fff;
|
||
}
|
||
.mytable-style.vxe-table .vxe-body--column.col-red {
|
||
background-color: red;
|
||
color: #fff;
|
||
}
|
||
.mytable-style.vxe-table .vxe-body--column.col-orange {
|
||
background-color: #f60;
|
||
color: #fff;
|
||
}
|
||
`
|
||
]
|
||
}
|
||
}
|
||
})
|
||
</script>
|
||
|
||
<style>
|
||
.mytable-style.vxe-table .vxe-body--row.row-green {
|
||
background-color: #187;
|
||
color: #fff;
|
||
}
|
||
.mytable-style.vxe-table .vxe-header--column.col-blue {
|
||
background-color: #2db7f5;
|
||
color: #fff;
|
||
}
|
||
.mytable-style.vxe-table .vxe-body--column.col-red {
|
||
background-color: red;
|
||
color: #fff;
|
||
}
|
||
.mytable-style.vxe-table .vxe-body--column.col-orange {
|
||
background-color: #f60;
|
||
color: #fff;
|
||
}
|
||
</style>
|