element-ui表格多选

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
<template>
 
          <el-table
            size="medium"
            v-loading="tableLoading"
            :data="tableData.slice((currentPage-1)*pageSize,currentPage*pageSize)"
            stripe height="100%"
            @selection-change="handleSelectionChange">
          >
            <el-table-column
              type="selection"
              width="55">
            </el-table-column>
         
 
          </el-table>
       
</template>
 
<script>
  export default {
    name: "accountInfo",
    data() {
      return {
dataTable:[],
 tableLoading: false,
        totalPage: 30,
        pageSize: 10,
        currentPage: 1,
        multipleSelection:[]
      }
 
    },
    methods: {
      submit() {
        if (this.multipleSelection.length === 0) {
          this.$notify({
            message: '未选中内容',
            type: 'warning',
          });
          return;
        }
        var ids = this.multipleSelection.map((cur) => {
          return cur.id;
        });
      },
      handleSelectionChange(val) {
        this.multipleSelection = val;
      },
    
      pageChange(currentPage) {
        this.currentPage = currentPage;
      },
      
     
 
    }
  }
</script>
 
<style scoped>
  .container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1rem;
  }
 
  .breadcrumb {
 
  }
 
  .content {
    flex: 1;
 
    padding: 3rem;
    overflow: hidden;
 
  }
  .box {
    width: 100%;
    height: calc(100% - 10rem);
  }
  .sub {
    height: 10rem;
  }
</style>

  

posted @   bruce_lee_1  阅读(63)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· SQL Server 2025 AI相关能力初探
· AI编程工具终极对决:字节Trae VS Cursor,谁才是开发者新宠?
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
点击右上角即可分享
微信分享提示