翼度科技»论坛 编程开发 JavaScript 查看内容

VUE el-table列表搜索功能纯前端实现方法

7

主题

7

帖子

21

积分

新手上路

Rank: 1

积分
21
背景:

对el-table数据进行搜索筛选,但是不想调取接口,纯前端实现


直接看代码:
  1. <template>
  2.   <div class="project-container">
  3.     <SearchInputVue :keyword.sync="keyword" :placeholder="placeholderWords" style="margin-bottom: 20px" />
  4.     <div class="table">
  5.       <DefectList :defect-list="keyword ? filterDefectList : defectList" :total="fetchListPageData.total" :on-page-change="pageChange" />
  6.     </div>
  7.   </div>
  8. </template>

  9. <script lang="ts">
  10. import Vue from 'vue'

  11. import SearchInputVue from '@/components/Input/SearchInput.vue'
  12. import DefectList from './components/DefectList.vue'
  13. // import Info from '@/mock.json'
  14. import API from '@/api'
  15. import { warn } from '@/utils/common'

  16. export default Vue.extend({
  17.   name: 'Index',
  18.   components: {
  19.     SearchInputVue,
  20.     DefectList
  21.     // TypeIcon
  22.   },
  23.   data() {
  24.     return {
  25.       defectList: [],
  26.       filterDefectList: [],
  27.       placeholderWords: '搜索缺陷',
  28.       keyword: '',
  29.       fetchListPageData: {
  30.         total: 0,
  31.         page: 1,
  32.         pageSize: 10
  33.       }
  34.     }
  35.   },
  36.   watch: {
  37.     keyword(newVal) {
  38.       const keyVal = newVal.replace(' ', '')
  39.       this.filterDefectList = keyVal ? this.defectList.filter(item => item.title.includes(keyVal)) : this.defectList
  40.     }
  41.   },
  42.   created() {
  43.     this.getDefectList()
  44.   },
  45.   methods: {
  46.     async getDefectList() {
  47.       try {
  48.         const res = await API.Defect.defectListData({
  49.           keyword: '',
  50.           page: this.fetchListPageData.page,
  51.           pageSize: this.fetchListPageData.pageSize
  52.         })
  53.         this.defectList = res.data.list
  54.         this.fetchListPageData.total = res.data.total
  55.       } catch (error) {
  56.         warn(error, true)
  57.       }
  58.     },
  59.     pageChange(current: number) {
  60.       this.fetchListPageData.page = current
  61.       this.getDefectList()
  62.     }
  63.   }
  64. })
  65. </script>

  66. <style lang="stylus" scoped>
  67. .project-container {
  68.   .project-name {
  69.     img {
  70.       position: relative;
  71.       top: 3px;
  72.     }
  73.   }
  74. }
  75. </style>
复制代码
searchInput.vue
  1. <template>
  2.   <el-input v-model="_keyword" :placeholder="placeholder" class="search" @change="$emit('trigger-event', _keyword)">
  3.     <img slot="prefix" class="search-icon" src="@/image/search.svg" alt="search" />
  4.   </el-input>
  5. </template>

  6. <script>
  7. export default {
  8.   name: 'SearchInput',
  9.   props: {
  10.     placeholder: {
  11.       type: String,
  12.       default: '请输入要搜索的内容'
  13.     },
  14.     keyword: {
  15.       type: String,
  16.       default: ''
  17.     }
  18.   },
  19.   computed: {
  20.     _keyword: {
  21.       set: function (val) {
  22.         this.$emit('update:keyword', val)
  23.       },
  24.       get: function () {
  25.         return this.keyword
  26.       }
  27.     }
  28.   }
  29. }
  30. </script>

  31. <style scoped lang="stylus">
  32. .search {
  33.   width: auto;

  34.   /deep/ .el-input__prefix {
  35.     margin-left: 10px;
  36.     line-height: 40px;
  37.   }

  38.   /deep/ .el-input__inner {
  39.     padding-left: 54px;
  40.     width: 305px;
  41.     // height: 56px;
  42.     border-radius: 5px;
  43.     background-color: rgba(34, 37, 41, 1);
  44.     border: 0.5px solid rgba(255, 255, 255, 0.1);
  45.     font-weight: normal;
  46.     font-size: 16px;
  47.     line-height: 32px;
  48.     color: #fff;
  49.   }

  50.   /deep/ .el-input__suffix {
  51.     .el-input__suffix-inner {
  52.       border-color: none;
  53.       position: relative;

  54.       .el-icon-circle-close:before {
  55.         content: '\e6db' !important;
  56.         font-size: 24px;
  57.         color: #387DFF;
  58.         right: 20px;
  59.         top: -7px;
  60.         position: absolute;
  61.       }
  62.     }
  63.   }
  64. }

  65. .search-icon {
  66.   vertical-align: middle;
  67.   line-height: 40px;
  68. }
  69. </style>
复制代码
总结

到此这篇关于VUE el-table列表搜索功能纯前端实现的文章就介绍到这了,更多相关VUE el-table列表搜索内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

来源:https://www.jb51.net/javascript/3268082mr.htm
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x

举报 回复 使用道具