mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
163 lines
7.4 KiB
Vue
163 lines
7.4 KiB
Vue
<template>
|
|
<div>
|
|
<p class="tip">完整示例</p>
|
|
|
|
<vxe-table
|
|
border
|
|
stripe
|
|
resizable
|
|
highlight-hover-row
|
|
height="400"
|
|
:loading="loading"
|
|
:checkbox-config="{labelField: 'id', highlight: true, range: true}"
|
|
:data="tableData">
|
|
<vxe-column type="seq" width="60"></vxe-column>
|
|
<vxe-column type="checkbox" title="ID" width="140"></vxe-column>
|
|
<vxe-column field="name" title="Name" sortable></vxe-column>
|
|
<vxe-column field="sex" title="Sex" :filters="sexList" :filter-multiple="false" :formatter="formatterSex"></vxe-column>
|
|
<vxe-column
|
|
field="age"
|
|
title="Age"
|
|
sortable
|
|
:filters="[{label: '大于16岁', value: 16}, {label: '大于26岁', value: 26}, {label: '大于30岁', value: 30}]"
|
|
:filter-method="filterAgeMethod"></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 {
|
|
loading: false,
|
|
tableData: [],
|
|
sexList: [
|
|
{ label: '女', value: '0' },
|
|
{ label: '男', value: '1' }
|
|
],
|
|
demoCodes: [
|
|
`
|
|
<vxe-table
|
|
border
|
|
stripe
|
|
resizable
|
|
highlight-hover-row
|
|
height="400"
|
|
:loading="loading"
|
|
:checkbox-config="{labelField: 'id', highlight: true, range: true}"
|
|
:data="tableData">
|
|
<vxe-column type="seq" width="60"></vxe-column>
|
|
<vxe-column type="checkbox" title="ID" width="140"></vxe-column>
|
|
<vxe-column field="name" title="Name" sortable></vxe-column>
|
|
<vxe-column field="sex" title="Sex" :filters="sexList" :filter-multiple="false" :formatter="formatterSex"></vxe-column>
|
|
<vxe-column
|
|
field="age"
|
|
title="Age"
|
|
sortable
|
|
:filters="[{label: '大于16岁', value: 16}, {label: '大于26岁', value: 26}, {label: '大于30岁', value: 30}]"
|
|
:filter-method="filterAgeMethod"></vxe-column>
|
|
<vxe-column field="address" title="Address" show-overflow></vxe-column>
|
|
</vxe-table>
|
|
`,
|
|
`
|
|
export default {
|
|
data () {
|
|
return {
|
|
loading: false,
|
|
tableData: [],
|
|
sexList: [
|
|
{ label: '女', value: '0' },
|
|
{ label: '男', value: '1' }
|
|
]
|
|
}
|
|
},
|
|
created () {
|
|
this.loading = true
|
|
setTimeout(() => {
|
|
this.tableData = [
|
|
{ id: 10001, name: 'Test1', role: 'Develop', sex: '0', age: 28, address: 'test abc' },
|
|
{ id: 10002, name: 'Test2', role: 'Test', sex: '1', age: 22, address: 'Guangzhou' },
|
|
{ id: 10003, name: 'Test3', role: 'PM', sex: '0', age: 32, address: 'Shanghai' },
|
|
{ id: 10004, name: 'Test4', role: 'Designer', sex: '1', age: 23, address: 'test abc' },
|
|
{ id: 10005, name: 'Test5', role: 'Develop', sex: '1', age: 30, address: 'Shanghai' },
|
|
{ id: 10006, name: 'Test6', role: 'Designer', sex: '1', age: 21, address: 'test abc' },
|
|
{ id: 10007, name: 'Test7', role: 'Test', sex: '0', age: 29, address: 'test abc' },
|
|
{ id: 10008, name: 'Test8', role: 'Develop', sex: '0', age: 35, address: 'test abc' },
|
|
{ id: 10009, name: 'Test9', role: 'Test', sex: '1', age: 21, address: 'test abc' },
|
|
{ id: 10010, name: 'Test10', role: 'Develop', sex: '0', age: 28, address: 'test abc' },
|
|
{ id: 10011, name: 'Test11', role: 'Test', sex: '0', age: 29, address: 'test abc' },
|
|
{ id: 10012, name: 'Test12', role: 'Develop', sex: '1', age: 27, address: 'test abc' },
|
|
{ id: 10013, name: 'Test13', role: 'Test', sex: '0', age: 24, address: 'test abc' },
|
|
{ id: 10014, name: 'Test14', role: 'Develop', sex: '1', age: 34, address: 'test abc' },
|
|
{ id: 10015, name: 'Test15', role: 'Test', sex: '1', age: 21, address: 'test abc' },
|
|
{ id: 10016, name: 'Test16', role: 'Develop', sex: '0', age: 20, address: 'test abc' },
|
|
{ id: 10017, name: 'Test17', role: 'Test', sex: '1', age: 31, address: 'test abc' },
|
|
{ id: 10018, name: 'Test18', role: 'Develop', sex: '0', age: 32, address: 'test abc' },
|
|
{ id: 10019, name: 'Test19', role: 'Test', sex: '1', age: 37, address: 'test abc' },
|
|
{ id: 10020, name: 'Test20', role: 'Develop', sex: '1', age: 41, address: 'test abc' }
|
|
]
|
|
this.loading = false
|
|
}, 500)
|
|
},
|
|
methods: {
|
|
formatterSex ({ cellValue }) {
|
|
let item = this.sexList.find(item => item.value === cellValue)
|
|
return item ? item.label : ''
|
|
},
|
|
filterAgeMethod ({ value, row, column }) {
|
|
return row.age >= value
|
|
}
|
|
}
|
|
}
|
|
`
|
|
]
|
|
}
|
|
},
|
|
created () {
|
|
this.loading = true
|
|
setTimeout(() => {
|
|
this.tableData = [
|
|
{ id: 10001, name: 'Test1', role: 'Develop', sex: '0', age: 28, address: 'test abc' },
|
|
{ id: 10002, name: 'Test2', role: 'Test', sex: '1', age: 22, address: 'Guangzhou' },
|
|
{ id: 10003, name: 'Test3', role: 'PM', sex: '0', age: 32, address: 'Shanghai' },
|
|
{ id: 10004, name: 'Test4', role: 'Designer', sex: '1', age: 23, address: 'test abc' },
|
|
{ id: 10005, name: 'Test5', role: 'Develop', sex: '1', age: 30, address: 'Shanghai' },
|
|
{ id: 10006, name: 'Test6', role: 'Designer', sex: '1', age: 21, address: 'test abc' },
|
|
{ id: 10007, name: 'Test7', role: 'Test', sex: '0', age: 29, address: 'test abc' },
|
|
{ id: 10008, name: 'Test8', role: 'Develop', sex: '0', age: 35, address: 'test abc' },
|
|
{ id: 10009, name: 'Test9', role: 'Test', sex: '1', age: 21, address: 'test abc' },
|
|
{ id: 10010, name: 'Test10', role: 'Develop', sex: '0', age: 28, address: 'test abc' },
|
|
{ id: 10011, name: 'Test11', role: 'Test', sex: '0', age: 29, address: 'test abc' },
|
|
{ id: 10012, name: 'Test12', role: 'Develop', sex: '1', age: 27, address: 'test abc' },
|
|
{ id: 10013, name: 'Test13', role: 'Test', sex: '0', age: 24, address: 'test abc' },
|
|
{ id: 10014, name: 'Test14', role: 'Develop', sex: '1', age: 34, address: 'test abc' },
|
|
{ id: 10015, name: 'Test15', role: 'Test', sex: '1', age: 21, address: 'test abc' },
|
|
{ id: 10016, name: 'Test16', role: 'Develop', sex: '0', age: 20, address: 'test abc' },
|
|
{ id: 10017, name: 'Test17', role: 'Test', sex: '1', age: 31, address: 'test abc' },
|
|
{ id: 10018, name: 'Test18', role: 'Develop', sex: '0', age: 32, address: 'test abc' },
|
|
{ id: 10019, name: 'Test19', role: 'Test', sex: '1', age: 37, address: 'test abc' },
|
|
{ id: 10020, name: 'Test20', role: 'Develop', sex: '1', age: 41, address: 'test abc' }
|
|
]
|
|
this.loading = false
|
|
}, 500)
|
|
},
|
|
methods: {
|
|
formatterSex ({ cellValue }) {
|
|
const item = this.sexList.find(item => item.value === cellValue)
|
|
return item ? item.label : ''
|
|
},
|
|
filterAgeMethod ({ value, row }) {
|
|
return row.age >= value
|
|
}
|
|
}
|
|
}
|
|
</script>
|