数组排序方法sort---案例
<template>
<div class="Leading">
<h2>人员列表</h2>
<input type="text" placeholder="请输入名字" v-model="keyword"><br>
<!-- {{ keyword }}-->
<button @click="sortType=2">年龄升序</button>
<button @click="sortType=1">年龄降序</button>
<button @click="sortType=0">原排序</button>
<!-- 计算属性-->
<ul>
<li v-for="(item,index) in filPerson" :key="index">{{ item.name }}--{{ item.age }}--{{ item.sex }}</li>
</ul>
</div>
</template>
<script>
export default {
name: "ListSort",
data() {
return {
persons: [
{id: '001', name: '马冬梅', age: 18, sex: '女'},
{id: '002', name: '周冬雨', age: 20, sex: '女'},
{id: '003', name: '周杰伦', age: 19, sex: '男'},
{id: '004', name: '温兆伦', age: 21, sex: '男'},
],
keyword: '',
filPersons: [],
sortType: 0,//0原顺序,1降序,2升序
}
},
computed: {
filPerson() {
const arr= this.persons.filter((p) => {
return p.name.indexOf(this.keyword) !== -1
})
// 判断一下是否需要排序
if(this.sortType){
arr.sort((a,b)=>{
return this.sortType===1?b.age-a.age:a.age-b.age
// 前减后升序,后减前降序
})
}
return arr
}
},
}
按照年龄排序,先过滤,后排序。
简易示例:


浙公网安备 33010602011771号