ant-design-vue/components/table/demo/head.md

101 lines
2.3 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<cn>
#### ē­›é€‰å’ŒęŽ’åŗ
åÆ¹ęŸäø€åˆ—ę•°ę®čæ›č”Œē­›é€‰ļ¼Œä½æē”Ø列ēš„ `filters` å±žę€§ę„ęŒ‡å®šéœ€č¦ē­›é€‰čœå•ēš„列ļ¼Œ`onFilter` ē”ØäŗŽē­›é€‰å½“å‰ę•°ę®ļ¼Œ`filterMultiple` ē”ØäŗŽęŒ‡å®šå¤šé€‰å’Œå•é€‰ć€‚
åÆ¹ęŸäø€åˆ—ę•°ę®čæ›č”ŒęŽ’åŗļ¼Œé€ščæ‡ęŒ‡å®šåˆ—ēš„ `sorter` å‡½ę•°å³åÆåÆåŠØꎒåŗęŒ‰é’®ć€‚`sorter: function(a, b) { ... }`ļ¼Œ a态b äøŗęÆ”č¾ƒēš„äø¤äøŖåˆ—ę•°ę®ć€‚
</cn>
<us>
#### Filter and sorter
Use `filters` to generate filter menu in columns, `onFilter` to determine filtered result, and `filterMultiple` to indicate whether it's multiple or single selection.
Use `sorter` to make a column sortable. `sorter` can be a function `function(a, b) { ... }` for sorting data locally.
</us>
```html
<template>
<a-table :columns="columns" :dataSource="data" @change="onChange"/>
</template>
<script>
const columns = [{
title: 'Name',
dataIndex: 'name',
filters: [{
text: 'Joe',
value: 'Joe',
}, {
text: 'Jim',
value: 'Jim',
}, {
text: 'Submenu',
value: 'Submenu',
children: [{
text: 'Green',
value: 'Green',
}, {
text: 'Black',
value: 'Black',
}],
}],
// specify the condition of filtering result
// here is that finding the name started with `value`
onFilter: (value, record) => record.name.indexOf(value) === 0,
sorter: (a, b) => a.name.length - b.name.length,
}, {
title: 'Age',
dataIndex: 'age',
sorter: (a, b) => a.age - b.age,
}, {
title: 'Address',
dataIndex: 'address',
filters: [{
text: 'London',
value: 'London',
}, {
text: 'New York',
value: 'New York',
}],
filterMultiple: false,
onFilter: (value, record) => record.address.indexOf(value) === 0,
sorter: (a, b) => a.address.length - b.address.length,
}];
const data = [{
key: '1',
name: 'John Brown',
age: 32,
address: 'New York No. 1 Lake Park',
}, {
key: '2',
name: 'Jim Green',
age: 42,
address: 'London No. 1 Lake Park',
}, {
key: '3',
name: 'Joe Black',
age: 32,
address: 'Sidney No. 1 Lake Park',
}, {
key: '4',
name: 'Jim Red',
age: 32,
address: 'London No. 2 Lake Park',
}];
function onChange(pagination, filters, sorter) {
console.log('params', pagination, filters, sorter);
}
export default {
data() {
return {
data,
columns,
}
},
methods: {
onChange,
}
}
</script>
```