• 基于element-ui封装下拉表格组件


    当下拉数据很多时,我们需要封装成一个下拉表格的组件,可以分页,模糊搜索
    searchCostItem.vue

    <template>
      <div>
        <el-popover v-model="popVisible" width="700" trigger="click" placement="bottom">
          <div>
            <FBATable
              ref="countryTableRef"
              :data="tableData"
              height="300"
              :rowHeader="countryColumns"
              @rowClick="handleRowClick"
            >FBATable>
            <div class="demo-footer">
              <el-pagination
                @size-change="handleSizeChange"
                @current-change="handleCurrentChange"
                :current-page="pagination.PageIndex"
                :page-sizes="[5, 10, 20, 50, 100]"
                :page-size="pagination.PageSize"
                layout="total, sizes, prev, pager, next, jumper"
                :total="pagination.TotalCount"
              >
              el-pagination>
            div>
          div>
          <el-input v-model="keyWords" @input="changeKey" :placeholder="placeholder" slot="reference" :CatId="CatId"> el-input>
        el-popover>
      div>
    template>
    <script>
    import { delay } from '@/utils/index'
    import { wfinFeeItemGetPageList } from '@/api/OverseasWarehouse/Cost'
    import FBATable from '@/components/FBATable'
    export default {
      props: {
        name: {
          type: String,
          default: ''
        },
        index: {
          type: Number,
          default: () => 0
        },
        placeholder: {
          type: String,
          default: '请选择'
        },
        CatId: {
          type: Number
        }
      },
      components: {
        FBATable
      },
      data() {
          return {
          pagination: {
            TotalCount: 0,
            PageIndex: 1,
            PageSize: 10
          },
          tableData: [],
          countryColumns: [
            {
              prop: 'NameCn',
              label: '中文名',
              align: 'center'
            },
            {
              prop: 'NameEn',
              label: '英文名',
              align: 'center'
            },
            {
              prop: 'FeeItemCode',
              label: '费用项编码',
              align: 'center'
            },
            {
              prop: 'FeeItemTypeStr',
              label: '费用类型',
              align: 'center'
            }
          ],
          popVisible: false,
          selected: [],
          timer: null
        }
      },
      created() {},
      computed: {
        keyWords: {
          get() {
            return this.name
          },
          set(val) {
            this.$emit('update:name', val)
          }
        }
      },
      watch: {
        CatId: {
          handler(newVal, oldVal) {
            this.getList(newVal)
          },
          deep: true,
          immediate: true
        }
      },
      methods: {
        getList(CatId) {
          const { PageSize, PageIndex } = this.pagination
          wfinFeeItemGetPageList({
            PageSize,
            PageIndex,
            NameCn: this.keyWords,
            CatId: CatId ? CatId : 0
          })
            .then(res => {
              if (res.ErrorCode === 0) {
                this.tableData = res.Body.Items
                this.pagination.TotalCount = res.Body.TotalCount
              }
            })
            .catch(err => {
              console.log(err)
            })
        },
            handleSelectionChange(val) {
          if (val.length >= 2) {
            let arrays = val.splice(0, val.length - 1)
            arrays.forEach(row => {
              this.$refs.countryTableRef.$refs.FBATable.toggleRowSelection(row) //除了当前点击的,其他的全部取消选中
            })
          }
          this.$emit('selectedData', { list: val, index: this.index })
          this.timer = setTimeout(() => {
            this.popVisible = false
          }, 500)
        },
        handleRowClick(val) {
          this.$emit('selectedData', { list: val, index: this.index })
          this.timer = setTimeout(() => {
            this.popVisible = false
          }, 200)
        },
        // 搜索
        changeKey() {
          delay(() => {
            this.pagination.PageIndex = 1
            this.getList()
          }, 200)
        },
        handleSizeChange(val) {
          this.pagination.PageSize = val
          this.getList()
        },
        handleCurrentChange(val) {
          this.pagination.PageIndex = val
          this.getList()
        }
      },
      destroyed() {
        clearTimeout(this.timer)
      }
    }
    script>
    <style lang="scss" scoped>
    .demo-form-inline {
      position: relative;
      margin: 15px 10px;
    }
    .demo-footer {
      display: flex;
      justify-content: flex-end;
    }
    .country-footer {
      text-align: center;
      position: relative;
      margin: 10px auto;
    }
    style>
    
    • 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
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181

    delay.js

    export const delay = (function() {
      let timer = 0
      return function(callback, ms) {
        clearTimeout(timer)
        timer = setTimeout(callback, ms)
      }
    })()
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    FBATable.vue

    <template>
      <div>
        <el-table
          ref="FBATable"
          border
          :data="data"
          :span-method="spanMethod"
          :max-height="height"
          :header-cell-style="
            showHeaderStyle
              ? { background: '#f1f2f7', color: '#333' }
              : { background: 'none' }
          "
          @selection-change="handleSelectionChange"
          @row-click="handleRowClick"
        >
          <el-table-column
            type="selection"
            v-if="showCheckBox"
            width="55"
          >el-table-column>
          <el-table-column type="index" v-if="showIndex" width="55" label="序号">
          el-table-column>
          <el-table-column
            v-for="(col, index) in rowHeader"
            :key="index"
            :prop="col.prop"
            :label="col.label"
            :width="col.width"
            :fixed="col.fixed"
            :align="col.align"
          >
            <template slot-scope="scope">
              <ex-slot
                v-if="col.render"
                :render="col.render"
                :row="scope.row"
                :index="scope.$index"
                :column="col"
              >
              ex-slot>
              <span v-else>
                {{ scope.row[col.prop] }}
              span>
            template>
          el-table-column>
        el-table>
        <div class="pagination-end" v-if="isPagination">
          <el-pagination
            :hide-on-single-page="false"
            @size-change="handleSizeChange"
            @current-change="handleCurrentChange"
            :current-page="PaginationData.currentPage"
            :page-sizes="[10, 20, 50, 100]"
            :page-size="PaginationData.pageSize"
            layout="total, sizes, prev, pager, next, jumper"
            :total="PaginationData.total"
          >
          el-pagination>
        div>
      div>
    template>
    <script>
    // 自定义内容的组件
    var exSlot = {
      functional: true,
      props: {
        row: Object,
        render: Function,
        index: Number,
        column: {
          type: Object,
          default: null
        }
      },
    
      render: (h, data) => {
        const params = {
          row: data.props.row,
          index: data.props.index
        }
    
        if (data.props.column) params.column = data.props.column
        return data.props.render(h, params)
      }
    }
    export default {
      name: 'FBATable',
      components: {
        'ex-slot': exSlot
      },
      props: {
        // 表格数据
        data: {
          type: Array,
          default: () => {
            return []
          }
        },
        // 表头数据
        rowHeader: {
          type: Array,
          default: () => {
            return []
          }
        },
        showCheckBox: {
          type: Boolean,
          default: () => {
            return false
          }
        },
        showIndex: {
          type: Boolean,
          default: () => {
            return false
          }
        },
        height: {
          type: String,
          default: () => {
            return 'auto'
          }
        },
         spanMethod: {
          type: Function,
          default: () => {
            return ''
          }
        },
        PaginationData: {
          type: Object,
          default: () => ({
            currentPage: 1,
            pageSize: 10,
            total: 0
          })
        },
        isPagination: {
          type: Boolean,
          default: () => {
            return false
          }
        },
        showHeaderStyle: {
          type: Boolean,
          default: () => {
            return true
          }
        }
      },
     methods: {
        handleSelectionChange(val) {
          this.$emit('getSelection', val)
        },
        handleRowClick(row) {
          this.$emit('rowClick', row)
        },
        // 	pageSize 改变时会触发
        handleSizeChange(val) {
          this.$emit('pageSizeChange', val)
        },
        // currentPage 改变时会触发
        handleCurrentChange(val) {
          this.$emit('pageCurrentChange', val)
        }
      }
    }
    script>
    <style lang="scss" scoped>
    	.tableHeader {
    	  background: #1890ff;
    	}
    	.pagination-end {
    	  width: 100%;
    	  margin-top: 20px;
    	  display: flex;
    	  justify-content: flex-end;
    	}
    style>
    
    • 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
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180

    在页面中引用

                <SearchCostItem
                  v-model="form.FeeItemName"
                  :name.sync="form.FeeItemName"
                  @selectedData="selectedFeeItem"
                  :CatId="form.CatId"
                  placeholder="选择费用项"
                />
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    展示效果
    在这里插入图片描述

  • 相关阅读:
    C++项目中mysql的环境配置与连接
    微服务介绍以及远程调用
    揭秘报表新玩法!标配插件不再单调,如何用柱形图插件让你的报表瞬间高大上!
    gzip 压缩优化大 XML 响应的处理方法
    关于pwn题的栈平衡中ret的作用
    概率论_加法公式(基本+推广)(Addition Rule Of Probability)
    练习:注册页面
    【21天python打卡】第13天 网络爬虫(4)
    IF:9.0+期刊被踢除,11月SCI/SSCI期刊目录已更新!
    Linux服务器常用命令
  • 原文地址:https://blog.csdn.net/weixin_46060121/article/details/125906864