elemen-ui 分页

这个博客展示了如何使用Vue.js和Element-UI库创建一个带有分页、筛选、编辑和删除功能的数据表格。示例代码包括了数据请求、表格渲染、多选操作以及编辑对话框的实现,提供了完整的组件和事件处理方法。
摘要由CSDN通过智能技术生成

element-ui 分页

<template>
  <div>

    <div class="container">
      <div class="handle-box">
        <el-button
          type="primary"
          class="handle-del mr10"
          @click="delSelfSelection"
        >删除选中
        </el-button>
        
        <el-input v-model="query.name" placeholder="用户名" class="handle-input mr10"></el-input>
      </div>
      <el-table
        :data="tableData.slice((query.pageIndex-1)*query.pageSize,query.pageIndex*query.pageSize)"
        border
        class="table"
        ref="multipleTable"
        header-cell-class-name="table-header"
        @selection-change="handleSelectionChange"
      >
        <el-table-column type="selection" width="55" align="center"></el-table-column>
        <el-table-column prop="id" label="ID" width="55" align="center"></el-table-column>
        <el-table-column prop="name" label="用户名"></el-table-column>
        <el-table-column label="账户余额">
          <template slot-scope="scope">{{scope.row.money}}</template>
        </el-table-column>
        <el-table-column label="头像(查看大图)" align="center">
          <template slot-scope="scope">
            <el-image
              class="table-td-thumb"
              :src="scope.row.thumb"
              :preview-src-list="[scope.row.thumb]"
            ></el-image>
          </template>
        </el-table-column>
        <el-table-column prop="address" label="地址"></el-table-column>
        <el-table-column label="状态" align="center">
          <template slot-scope="scope">
            <el-tag
              :type="scope.row.state==='成功'?'success':(scope.row.state==='失败'?'danger':'')"
            >{{scope.row.state}}
            </el-tag>
          </template>
        </el-table-column>

        <el-table-column prop="date" label="注册时间"></el-table-column>
        <el-table-column label="操作" width="180" align="center">
          <template slot-scope="scope">
            <el-button
              type="primary"
              @click="handleEdit(scope.$index, scope.row)"
            >编辑
            </el-button>
            <el-button
              type="success"
              @click="handleDelete(scope.$index, scope.row)"
            >删除
            </el-button>
          </template>
        </el-table-column>
      </el-table>
      <div class="pagination">
        <Pagination :total="Number(tableData.length)" :page-size="Number(query.pageSize)" @sorter="handlePageChange"></Pagination>
      </div>
    </div>

 

    <!-- 编辑弹出框 -->
    <el-dialog title="编辑" :visible.sync="editVisible" width="30%">
      <el-form ref="form" :model="form" label-width="70px">
        <el-form-item label="用户名">
          <el-input v-model="form.name"></el-input>
        </el-form-item>
        <el-form-item label="地址">
          <el-input v-model="form.address"></el-input>
        </el-form-item>
      </el-form>
      <span slot="footer" class="dialog-footer">
                <el-button @click="editVisible = false">取 消</el-button>
                <el-button type="primary" @click="saveEdit">确 定</el-button>
            </span>
    </el-dialog>
  </div>
</template>

<script>
 
    import Pagination from "../components/Pagination";
    export default {
        components: {
            Pagination
        },
        data() {
            return {
               
                query: {
                    address: '',
                    name: '',
                    pageIndex: 1,
                    pageSize: 4
                },
                currentList: [],
                multipleSelection: [],
                delList: [],
                editVisible: false,
                pageTotal: 0,
                form: {},
                idx: -1,
                id: -1,
                addVisible:false
            };
        },
        created() {
            this.getData();
        },
        computed: {
            tableData() {
                var arr = [];
                if (this.query.name === '' || this.query.address === '') {
                    return arr = this.currentList
                }
                arr = this.currentList.filter(ele => {
                    return ele.name.indexOf(this.query.name) !== -1 && ele.address.includes(this.query.address)
                });
                return arr
            }
        },
        methods: {
            saveAdd(){
                console.log('点击')
            },
            // 获取 easy-mock 的模拟数据
            getData() {
                this.$axios.get('/table.json').then(res => {
                    console.log(res)
                    this.currentList = res.data.list;
                    this.pageTotal = res.pageTotal;
                })
            },
            // 删除操作
            handleDelete(index, row) {
                // 二次确认删除
                this.$confirm('确定要删除吗?', '提示', {
                    type: 'warning'
                }).then(() => {
                        this.$message.success('删除成功');
                        this.tableData.splice(index, 1);
                    }).catch(() => {
                });
            },
            // 多选操作
            handleSelectionChange(val) {
                this.multipleSelection = val;

            },
            // 单个删除
            delSelfSelection(){
                for(var i = 0;i < this.multipleSelection.length; i++) {
                    for(var j = 0; j < this.tableData.length; j++) {
                        if(this.tableData[j].id === this.multipleSelection[i].id) {
                            this.tableData.splice(j,1);
                            j--;
                        }
                    }
                }
            },
            // 编辑操作
            handleEdit(index, row) {
                this.idx = index;
                this.form = row;
                this.editVisible = true;
            },
            // 保存编辑
            saveEdit() {
                this.editVisible = false;
                this.$set(this.tableData, this.idx, this.form);
            },
            // 分页导航
            handlePageChange(val) {
                this.$set(this.query, 'pageIndex', val);
                this.getData();
            }
        }
    };
</script>

<style scoped>
  .handle-box {
    margin-bottom: 20px;
  }

  .handle-select {
    width: 120px;
  }

  .handle-input {
    width: 300px;
    display: inline-block;
  }

  .table {
    width: 100%;
    font-size: 14px;
  }
  .mr10 {
    margin-right: 10px;
  }

  .table-td-thumb {
    display: block;
    margin: auto;
    width: 40px;
    height: 40px;
  }
</style>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

前端张子豪

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值