vue-easytable使用

参考:

GitHub - Happy-Coding-Clans/vue-easytable: 🍉 Table Component/ Data Grid / Data Table.Support Virtual Scroll,Column Fixed,Header Fixed,Header Grouping,Filter,Sort,Cell Ellipsis,Row Expand,Row Checkbox ...

vue table 组件 强大、灵活 支持单元格合并、单元格编辑、多表头固定、多列固定、列拖动、排序、自定义列、分页、单元格编辑、全选、行展开、条件过滤、footer 汇总、导出excel、汇总 github

安装:

npm install vue-easytable --save-dev

// 引入样式
import 'vue-easytable/libs/themes-base/index.css'
// 导入 table 和 分页组件
import {VTable,VPagination} from 'vue-easytable'

// 注册到全局
Vue.component(VTable.name, VTable)
Vue.component(VPagination.name, VPagination)

新建组件:TableDemo.vue

<template>
      <div>
            <v-table
                is-vertical-resize
                :vertical-resize-offset='60'
                is-horizontal-resize
                :is-loading="tableConfig.isLoading"
                style="width:100%"
                :multiple-sort="false"
                :min-height="350"
                even-bg-color="#f2f2f2"
                :columns="tableConfig.columns"
                :table-data="tableConfig.tableData"
                row-hover-color="#eee"
                row-click-color="#edf7ff"
        ></v-table>
            <v-pagination :total="total" :page-size="pageSize" @page-change="pageChange" @page-size-change="pageSizeChange"></v-pagination>
      </div>
</template>
<script>
    // 引入样式
    import 'vue-easytable/libs/themes-base/index.css'
    import axios from '../config/axios.js'
    export default {
        data: function() {
            return {

                total: 0,
                pageSize: 10,
                pageIndex: 1,
                tableConfig: {
                    isLoading: true,
                    tableData: [],
                    columns: [{
                        field: 'name',
                        title: '姓名',
                        width: 80,
                        titleAlign: 'center',
                        columnAlign: 'center',
                        isResize: true
                    }, {
                        field: 'tel',
                        title: '手机号码',
                        width: 80,
                        titleAlign: 'center',
                        columnAlign: 'center',
                        isResize: true
                    }]
                }

            }
        },
        methods: {
            pageChange(pageIndex) {
                this.pageIndex = pageIndex;
                this.loadData();
            },
            pageSizeChange(newPageSize) {
                this.pageSize = newPageSize;
                this.loadData();
            },
            loadData() {
                this.tableConfig.isLoading = true;
                var context = this;

                axios.post('/tables', JSON.stringify({
                        pageIndex: this.pageIndex,
                        pageSize: this.pageSize
                    }))
                    .then(function(response) {
                        context.tableConfig.isLoading = false;
                        context.total = response.data.total;
                        context.tableConfig.tableData = response.data.data;

                        console.info(response.data.data);

                    })
                    .catch(function(error) {
                        context.tableConfig.isLoading = false;
                        console.debug(error);
                    });
            }
        },
        created() {
            this.total = 10000;
            this.loadData();
        }
    }
</script>
<style scoped>

</style>

后台Api:TableController

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;

namespace Vue.Api.Controllers
{
    [Route("api/tables")]
    [ApiController]
    public class TableController : ControllerBase
    {
        [HttpPost]
        public IActionResult GetPageList([FromBody] TablePageSpecification specification)
        {
            var pageResult = new PageResult<Person>();
            pageResult.Total = 100;
              var persons = new List<Person>();
            for (int i = 0; i < 100; i++)
            {
                persons.Add(new Person
                {
                    Id = i,
                    Name = $"LI{i}",
                    Tel = $"+86 { 1828 * i}"
                });
            }

            pageResult.Data = persons.Skip((specification.PageIndex- 1) *specification.PageSize).Take(specification.PageSize).ToList() ;

            return Ok(pageResult);
        }
    }

    public class TablePageSpecification
    {
        public int PageIndex { get; set; }
        public int PageSize { get; set; }
    }

    public class PageResult<T>
    {
        public long Total { get; set; }
        public List<T> Data { get; set; }
    }

  
 
    public class Person
    {
        public int Id { get; set; }
        public string Name { get; set; }
        public string Tel { get; set; }
    }
}

运行效果:

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值