ホームページ > 記事 > ウェブフロントエンド > Vue2.5のTableコンポーネントとPaginationコンポーネントを介してページング機能を実装する方法
この記事は主に、Element UI の Table コンポーネントと Pagination コンポーネントを組み合わせた Vue2.5 のページング機能を紹介しています。非常に優れており、必要な友人は参考にしてください。2017 年の終わりです。フロントエンド ロードにおいて、Vue は始めから諦め、そして二度目に宮殿に入り、Vue1.0 から Vue2.5 まで追跡を続けました。会社のいくつかの実際のプロジェクトと組み合わせると、より実用的なコンポーネントもカプセル化されます。
現在の会社管理プラットフォームは主に Element UI を使用しているため、Table コンポーネントと Pagination コンポーネントを単純に組み合わせて、ページ切り替えをサポートする Table コンポーネントをカプセル化しました。冗長ではなく、コードを直接記述するだけです。
// Element UI import Element from 'element-ui' // 默认样式 import 'element-ui/lib/theme-chalk/index.css'2.2. iTable.vue コンポーネント (スケルトン) のパッケージ化を開始します。会社の以来、プロジェクトはすべて i で始まるため、コンポーネントとページを区別するために、コンポーネントにも i で始まる名前を付けるのが通例です。 まず、Table コンポーネントと Pagination コンポーネントを追加します
<template> <p class="table"> <!--region 表格--> <el-table id="iTable"></el-table> <!--endregion--> <!--region 分页--> <el-pagination></el-pagination> <!--endregion--> </p> <template>個人プロジェクトのコメント量は基本的に 30% を下回らないようにします
2.3 ページ内の iTable コンポーネントを参照し、値を渡します。 iTable コンポーネントへ
<template> <p class="table-page"> <i-table :list="list" :total="total" :otherHeight="otherHeight" @handleSizeChange="handleSizeChange" @handleIndexChange="handleIndexChange" @handleSelectionChange="handleSelectionChange" :options="options" :columns="columns" :operates="operates" @handleFilter="handleFilter" @handelAction="handelAction"> </i-table> </p> </template> <script> import iTable from '../../components/Table/Index' export default { components: {iTable}, data () { return { total: 0, // table数据总条数 list: [], // table数据 otherHeight: 208, // 除了table表格之外的高度,为了做table表格的高度自适应 page: 1, // 当前页码 limit: 20, // 每页数量 options: { stripe: true, // 是否为斑马纹 table loading: false, // 是否添加表格loading加载动画 highlightCurrentRow: true, // 是否支持当前行高亮显示 mutiSelect: true, // 是否支持列表项选中功能 filter: false, // 是否支持数据过滤功能 action: false // 是否支持 表格操作功能 }, // table 的参数 columns: [ { prop: 'id', label: '编号', align: 'center', width: 60 }, { prop: 'title', label: '标题', align: 'center', width: 400, formatter: (row, column, cellValue) => { return `<span style="white-space: nowrap;color: dodgerblue;">${row.title}</span>` } }, { prop: 'state', label: '状态', align: 'center', width: '160', render: (h, params) => { return h('el-tag', { props: {type: params.row.state === 0 ? 'success' : params.row.state === 1 ? 'info' : 'danger'} // 组件的props }, params.row.state === 0 ? '上架' : params.row.state === 1 ? '下架' : '审核中') } }, …… ], // 需要展示的列 operates: { width: 200, fixed: 'right', list: [ { label: '编辑', type: 'warning', show: true, icon: 'el-icon-edit', plain: true, disabled: true, method: (index, row) => { this.handleEdit(index, row) } }, { label: '删除', type: 'danger', icon: 'el-icon-delete', show: true, plain: false, disabled: false, method: (index, row) => { this.handleDel(index, row) } } ] } // 列操作按钮 } }, methods: { // 切换每页显示的数量 handleSizeChange (size) { this.limit = size console.log(' this.limit:', this.limit) }, // 切换页码 handleIndexChange (index) { this.page = index console.log(' this.page:', this.page) }, // 选中行 handleSelectionChange (val) { console.log('val:', val) }, // 编辑 handleEdit (index, row) { console.log(' index:', index) console.log(' row:', row) }, // 删除 handleDel (index, row) { console.log(' index:', index) console.log(' row:', row) } } } </script>columns パラメータとoperator パラメータに加えて、他のパラメータも理解しやすいはずです。次に、これら 2 つのパラメータを詳しく説明します。次に、コンポーネント iTable.vue を組み合わせる必要があります。次に、iTable.vue に筋肉と血管を追加するコードを掲載します。 さらに理解しにくいのは、列のレンダリング パラメーターです。これは、テーブルの列でさまざまな HTML タグや要素 UI のその他のコンポーネントを必要に応じて使用できるようにするために、Vue の仮想タグを使用します。 (直接書いて、テーブル コンポーネントが認識されるかどうかを確認することもできます。ハハハ!) これは、おそらく、始めたばかりの人にとっては理解しにくい場所です。詳細については、まず vue のレンダリングを確認すると、より明確になります。説明、理解できない友達がいる場合は、私に直接プライベートメッセージを送ってください~~~
<!--region 封装的分页 table--> <template> <p class="table"> <el-table id="iTable" v-loading.iTable="options.loading" :data="list" :max-height="height" :stripe="options.stripe" ref="mutipleTable" @selection-change="handleSelectionChange"> <!--region 选择框--> <el-table-column v-if="options.mutiSelect" type="selection" style="width: 55px;"> </el-table-column> <!--endregion--> <!--region 数据列--> <template v-for="(column, index) in columns"> <el-table-column :prop="column.prop" :label="column.label" :align="column.align" :width="column.width"> <template slot-scope="scope"> <template v-if="!column.render"> <template v-if="column.formatter"> <span v-html="column.formatter(scope.row, column)"></span> </template> <template v-else> <span>{{scope.row[column.prop]}}</span> </template> </template> <template v-else> <expand-dom :column="column" :row="scope.row" :render="column.render" :index="index"></expand-dom> </template> </template> </el-table-column> </template> <!--endregion--> <!--region 按钮操作组--> <el-table-column ref="fixedColumn" label="操作" align="center" :width="operates.width" :fixed="operates.fixed" v-if="operates.list.filter(_x=>_x.show === true).length > 0"> <template slot-scope="scope"> <p class="operate-group"> <template v-for="(btn, key) in operates.list"> <p class="item" v-if="btn.show"> <el-button :type="btn.type" size="mini" :icon="btn.icon" :disabled="btn.disabled" :plain="btn.plain" @click.native.prevent="btn.method(key,scope.row)">{{ btn.label }} </el-button> </p> </template> </p> </template> </el-table-column> <!--endregion--> </el-table> <p style="height:12px"></p> <!--region 分页--> <el-pagination @size-change="handleSizeChange" @current-change="handleIndexChange" :page-size="pageSize" :page-sizes="[10, 20, 50]" :current-page="pageIndex" layout="total,sizes, prev, pager, next,jumper" :total="total"></el-pagination> <!--endregion--> <!--region 数据筛选--> <p class="filter-data fix-right" v-show="options.filter" @click="showfilterDataDialog"> <span>筛选过滤</span> </p> <!--endregion--> <!--region 表格操作--> <p class="table-action fix-right" v-show="options.action" @click="showActionTableDialog"> <span>表格操作</span> </p> <!--endregion--> </p> </template> <!--endregion--> <script> export default { props: { list: { type: Array, default: [] }, // 数据列表 columns: { type: Array, default: [] }, // 需要展示的列 === prop:列数据对应的属性,label:列名,align:对齐方式,width:列宽 operates: { type: Array, default: [] }, // 操作按钮组 === label: 文本,type :类型(primary / success / warning / danger / info / text),show:是否显示,icon:按钮图标,plain:是否朴素按钮,disabled:是否禁用,method:回调方法 total: { type: Number, default: 0 }, // 总数 pageSize: { type: Number, default: 20 }, // 每页显示的数量 otherHeight: { type: Number, default: 160 }, // 用来计算表格的高度 options: { type: Object, default: { stripe: false, // 是否为斑马纹 table highlightCurrentRow: false // 是否要高亮当前行 }, filter: false, action: false } // table 表格的控制参数 }, components: { expandDom: { functional: true, props: { row: Object, render: Function, index: Number, column: { type: Object, default: null } }, render: (h, ctx) => { const params = { row: ctx.props.row, index: ctx.props.index } if (ctx.props.column) params.column = ctx.props.column return ctx.props.render(h, params) } } }, data () { return { pageIndex: 1, multipleSelection: [] // 多行选中 } }, mounted () { }, computed: { height () { return this.$utils.Common.getWidthHeight().height - this.otherHeight } }, methods: { // 切换每页显示的数量 handleSizeChange (size) { this.$emit('handleSizeChange', size) this.pageIndex = 1 }, // 切换页码 handleIndexChange (index) { this.$emit('handleIndexChange', index) this.pageIndex = index }, // 多行选中 handleSelectionChange (val) { this.multipleSelection = val this.$emit('handleSelectionChange', val) }, // 显示 筛选弹窗 showfilterDataDialog () { this.$emit('handleFilter') }, // 显示 表格操作弹窗 showActionTableDialog () { this.$emit('handelAction') } } } </script> <style lang="less" rel="stylesheet/less"> @import "../../assets/styles/mixins"; .table { height: 100%; .el-pagination { float: right; margin: 20px; } .el-table__header-wrapper, .el-table__fixed-header-wrapper { thead { tr { th { color: #333333; } } } } .el-table-column--selection .cell { padding: 0; text-align: center; } .el-table__fixed-right { bottom: 0 !important; right: 6px !important; z-index: 1004; } .operate-group { display: flex; flex-wrap: wrap; .item { margin-top: 4px; margin-bottom: 4px; display: block; flex: 0 0 50%; } } .filter-data { top: e("calc((100% - 100px) / 3)"); background-color: rgba(0, 0, 0, 0.7); } .table-action { top: e("calc((100% - 100px) / 2)"); background-color: rgba(0, 0, 0, 0.7); } .fix-right { position: absolute; right: 0; height: 100px; color: #ffffff; width: 30px; display: block; z-index: 1005; writing-mode: vertical-rl; text-align: center; line-height: 28px; border-bottom-left-radius: 6px; border-top-left-radius: 6px; cursor: pointer; } } </style>上記はあなたのためにまとめたものです、将来役立つことを願っています。
React NativeのNavigatorIOSコンポーネント(チュートリアルの詳細説明)
D3.jsで物流マップを作成する方法(チュートリアルの詳細)
以上がVue2.5のTableコンポーネントとPaginationコンポーネントを介してページング機能を実装する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。