当前位置:网站首页>El table table - sortable sorting & disordered sorting when decimal and% appear
El table table - sortable sorting & disordered sorting when decimal and% appear
2022-07-06 21:10:00 【viceen】
el-table form ——sortable Sort & Decimal number appears 、% When sorting out
The front end implements sorting
Just add a sortable Attribute is enough
<el-table-column prop="bookCount" label=" Total books " align="center" :show-overflow-tooltip="true" sortable ></el-table-column>
problem 1、 When decimals appear in the data , Result in disordered sorting
solve :
<el-table-column prop="intoRate" label=" Timely mobilization rate " align="center" :sort-method="(a,b)=>{return a.intoRate - b.intoRate}" :show-overflow-tooltip="true" sortable ></el-table-column>
problem 2、 When data needs to be used % To display , The directly returned data contains % Result in disordered sorting , You need to return the normal number , Splice here %
solve
<el-table-column prop="intoRate" label=" Timely mobilization rate " align="center" :sort-method="(a,b)=>{return a.intoRate - b.intoRate}" :show-overflow-tooltip="true" sortable>
<template slot-scope="scope">
{
{ scope.row.intoRate }}%
</template>
</el-table-column>
边栏推荐
- Is it profitable to host an Olympic Games?
- OSPF多区域配置
- js中,字符串和数组互转(一)——字符串转为数组的方法
- Reviewer dis's whole research direction is not just reviewing my manuscript. What should I do?
- Study notes of grain Mall - phase I: Project Introduction
- Variable star --- article module (1)
- js通过数组内容来获取数组下标
- 防火墙基础之外网服务器区部署和双机热备
- Opencv learning example code 3.2.3 image binarization
- 新型数据库、多维表格平台盘点 Notion、FlowUs、Airtable、SeaTable、维格表 Vika、飞书多维表格、黑帕云、织信 Informat、语雀
猜你喜欢
None of the strongest kings in the monitoring industry!
What key progress has been made in deep learning in 2021?
Opencv learning example code 3.2.3 image binarization
Infrared thermometer based on STM32 single chip microcomputer (with face detection)
The biggest pain point of traffic management - the resource utilization rate cannot go up
Aike AI frontier promotion (7.6)
C language operators
1_ Introduction to go language
Deployment of external server area and dual machine hot standby of firewall Foundation
968 edit distance
随机推荐
PG基础篇--逻辑结构管理(事务)
[asp.net core] set the format of Web API response data -- formatfilter feature
Yyds dry inventory run kubeedge official example_ Counter demo counter
C language games - three chess
Mtcnn face detection
OSPF多区域配置
The biggest pain point of traffic management - the resource utilization rate cannot go up
ICML 2022 | flowformer: task generic linear complexity transformer
【mysql】触发器
基于深度学习的参考帧生成
js之遍历数组、字符串
Nodejs tutorial let's create your first expressjs application with typescript
LLVM之父Chris Lattner:为什么我们要重建AI基础设施软件
Is it profitable to host an Olympic Games?
SAP UI5 框架的 manifest.json
强化学习-学习笔记5 | AlphaGo
document.write()的用法-写入文本——修改样式、位置控制
Common English vocabulary that every programmer must master (recommended Collection)
【微信小程序】運行機制和更新機制
面试官:Redis中有序集合的内部实现方式是什么?