当前位置:   article > 正文

el-table 排序

el-table 排序

在项目中使用el-table的默认排序功能产生问题,如按照数字排序,当数字有多位时,只按照第一位数字排序问题,
问题复现:
在这里插入图片描述
添加代码修改:
主要是这一行sort-method,传递的item.prop就是el-table-column 中的prop字段

:sort-method="(a, b) => sortMethod(item.prop, a, b)"
  • 1
<el-table :data="tableData" style="width: 100%;background:transparent;" :height="tableMaxHeight"
				:header-cell-style='headerCellStyle' :header-row-style='headerRowStyle' :row-style='rowStyle'
				:cell-style="rowCellStyle" class="dealljtable projecttable tableindexstyle"
				@cell-mouse-enter="handlerTableOver" @cell-mouse-leave="handlerTableOut" >
				<el-table-column label="" type="index" width="60">
				</el-table-column>
				<el-table-column :min-width="item.width || 80" v-for="item in headerKeys" :key="item.label"
					align="center" :fixed="item.fixed" :prop="item.prop" :minWidth="item.minWidth"
					:sortable="item.label === '成交套数' ? true : false"
					:sort-method="(a, b) => sortMethod(item.prop, a, b)"
					:sort-orders="['ascending', 'descending']">
					<template slot="header">
						<div class="header-wrap">
							<span class="label">{{ item.label }}</span>
							<div class="unit" v-if="item.unit">({{ item.unit }})</div>
						</div>
					</template>
					<template slot-scope="scope">
						<div class="handle-icon palterow" v-if="scope.column.property === 'caption'">
							{{ scope.row[scope.column.property] != null ? scope.row[scope.column.property] : '-' }}---

						</div>
						<div v-else class="handle-icon">
							{{ scope.row[scope.column.property] != null ? scope.row[scope.column.property] : '-' }}
						</div>

					</template>
				</el-table-column>
				<template slot="empty">
					<NoData></NoData>
				</template>
			</el-table>

data(){
	return{
		headerKeys: [
				{
					label: '项目名称',
					key: '',
					unit: '',
					prop: "caption",
					minWidth: '100',
				},
				{
					label: '建筑年代',
					key: '',
					unit: '',
					prop: "buildingYear",
					minWidth: '80',
				},
				{
					label: '成交套数',
					key: '',
					unit: '套',
					prop: "tradeCount",
					minWidth: '90',
					sortable: true,
				},
				{
					label: '成交均价',
					key: '',
					unit: '元/m²',
					prop: "tradePrice",
					minWidth: '100',
				}, {
					label: '成交金额',
					key: '',
					unit: '万元',
					prop: "tradeMoney",
					minWidth: '100',
				},

			],
	}
}			
methods: {
//sortMethod方法
		sortMethod(key, a, b) {
			let _a = a[key] ?? 0;
			let _b = b[key] ?? 0;
			return _a - _b;
		},		
}	
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/118010
推荐阅读
相关标签
  

闽ICP备14008679号