table example add sort
This commit is contained in:
parent
f1c807ab12
commit
7225333018
|
@ -21,14 +21,19 @@ for (let i = 0; i < count; i++) {
|
|||
|
||||
export default {
|
||||
getList: config => {
|
||||
const { importance, type, title, page, limit } = config.params;
|
||||
const mockList = List.filter(item => {
|
||||
const { importance, type, title, page, limit, sort } = config.params;
|
||||
let mockList = List.filter(item => {
|
||||
if (importance && item.importance !== importance) return false;
|
||||
if (type && item.type !== type) return false;
|
||||
if (title && item.title.indexOf(title) < 0) return false;
|
||||
return true;
|
||||
});
|
||||
if (sort === '-id') {
|
||||
mockList = mockList.reverse()
|
||||
}
|
||||
|
||||
const pageList = mockList.filter((item, index) => index < limit * page && index >= limit * (page - 1));
|
||||
|
||||
return new Promise(resolve => {
|
||||
setTimeout(() => {
|
||||
resolve([200, {
|
||||
|
|
|
@ -14,6 +14,11 @@
|
|||
</el-option>
|
||||
</el-select>
|
||||
|
||||
<el-select @change='handleFilter' style="width: 120px" class="filter-item" v-model="listQuery.sort" placeholder="排序">
|
||||
<el-option v-for="item in sortOptions" :key="item.key" :label="item.label" :value="item.key">
|
||||
</el-option>
|
||||
</el-select>
|
||||
|
||||
<el-button class="filter-item" type="primary" v-waves icon="search" @click="handleFilter">搜索</el-button>
|
||||
<el-button class="filter-item" style="margin-left: 10px;" @click="handleCreate" type="primary" icon="edit">添加</el-button>
|
||||
<el-button class="filter-item" type="primary" icon="document" @click="handleDownload">导出</el-button>
|
||||
|
@ -174,7 +179,8 @@
|
|||
limit: 20,
|
||||
importance: undefined,
|
||||
title: undefined,
|
||||
type: undefined
|
||||
type: undefined,
|
||||
sort: '+id'
|
||||
},
|
||||
temp: {
|
||||
id: undefined,
|
||||
|
@ -187,6 +193,7 @@
|
|||
},
|
||||
importanceOptions: [1, 2, 3],
|
||||
calendarTypeOptions,
|
||||
sortOptions: [{ label: '按ID升序列', key: '+id' }, { label: '按ID降序', key: '-id' }],
|
||||
statusOptions: ['published', 'draft', 'deleted'],
|
||||
dialogFormVisible: false,
|
||||
dialogStatus: '',
|
||||
|
|
Loading…
Reference in New Issue