This article example shares the specific code for implementing drop-down filtering in the element UI table for your reference. The specific content is as follows 1. In default-sort, prop passes in the field to be sorted (data returned by the interface or defined by yourself), and order represents the sorting, and descending order is used here <template> <el-table :data="tableData" style="width: 100%" empty-text="No data yet" ref="filterTable" > <el-table-column prop="deviceType" label="Device Type" show-overflow-tooltip column-key="deviceType" :filters="[ { text: 'Weather equipment', value: 1 }, { text: 'Emotional equipment', value: 0 }, ]" :filter-method="filterHandler" :filter-multiple="true" > <template slot-scope="scope"> <span v-if="scope.row.deviceType == 1">Weather monitoring equipment</span> <span v-if="scope.row.deviceType == 0">Collapse monitoring equipment</span> <span></span> </template> </el-table-column> </el-table> </template> methods: { // Header filtering event filterHandler(value, row, column) { const property = column["property"]; return row[property] === value; } } Data Types Page Effects The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: A permanent solution to MYSQL's inability to recognize Chinese
>>: Add ico mirror code to html (favicon.ico is placed in the root directory)
First of all, we need to make it clear why we use...
Table of contents 1 Introduction to user variable...
Preface I'm currently working on the data ana...
This article mainly explains the style of buttons...
This article introduces how to monitor the ogg pr...
Table of contents 1. Database Operation 1.1 Displ...
This is a test of the interviewee's basic kno...
Table of contents 1. Page Layout 2. Image upload ...
1. Image formats supported on the WEB: GIF: can s...
1 Get the installation resource package mysql-8.0...
Table of contents 1. Software and system image 2....
Install First you need to install Java and Scala,...
MySql always pops up a MySQLInstallerConsole.exe ...
MySQL 8.0 for Windows v8.0.11 official free versi...
Preface: Due to my work, I am involved in the fie...