Element表格怎么嵌入复选框及单选框

Element表格怎么嵌入复选框及单选框

本篇内容主要讲解“Element表格怎么嵌入复选框及单选框”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Element表格怎么嵌入复选框及单选框”吧!

1,element 表格嵌入CheckBox

效果图如下:

2,element结合checkBox实现单选效果如下:

html代码:

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

<template>

<div>

<p>shopInfo</p>

<el-table

ref="multipleTable"

:data="tableData3"

tooltip-effect="dark"

highlight-current-row // element-UI提供的单选方法,可以使当前选中行高亮

style="width: 100%"

@current-change="handleSelectionChange"> // 单选方法,返回选中的表格行

<el-table-column

label="操作"

width="55">

<template slot-scope="scope">

<el-checkbox v-model="scope.row.checked"></el-checkbox> // 添加一个多选框,控制选中与否

</template>

</el-table-column>

<el-table-column

label="日期"

width="120">

<template slot-scope="scope">{{ scope.row.date }}</template>

</el-table-column>

<el-table-column

prop="name"

label="姓名"

width="120">

</el-table-column>

<el-table-column

prop="address"

label="地址"

show-overflow-tooltip>

</el-table-column>

</el-table>

</div>

</template>

js代码:

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

export default {

name: 'shopInfo',

data () {

return {

tableData3: []

}

},

created () {

this.setTable()

},

methods: {

setTable () {

let resdata = [{

id: 44,

date: '2016-05-03',

name: '王小虎',

address: '上海市普陀区金沙江路 1518 弄'

}, {

id: 89,

date: '2016-05-02',

name: '王小虎',

address: '上海市普陀区金沙江路 1518 弄'

}, {

id: 23,

date: '2016-05-04',

name: '王小虎',

address: '上海市普陀区金沙江路 1518 弄'

}, {

id: 88,

date: '2016-05-07',

name: '王小虎',

address: '上海市普陀区金沙江路 1518 弄'

}]

// 后台数据返回后,手动添加一个checked属性控制选中与否

resdata.forEach(item => {

item.checked = false

})

this.tableData3 = resdata

},

handleSelectionChange (row) {

this.tableData3.forEach(item => {

// 排他,每次选择时把其他选项都清除

if (item.id !== row.id) {

item.checked = false

}

})

console.log(row)

}

}

}

到此,相信大家对“Element表格怎么嵌入复选框及单选框”有了更深的了解,不妨来实际操作一番吧!这里是恰卡编程网网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

发布于 2022-03-03 21:21:15
收藏
分享
海报
0 条评论
44
上一篇:如何使用Servlet处理AJAX请求 下一篇:怎么解决ie9字体不垂直居中
目录

    0 条评论

    本站已关闭游客评论,请登录或者注册后再评论吧~

    忘记密码?

    图形验证码