本篇內(nèi)容主要講解“Element表格怎么嵌入復(fù)選框及單選框”,感興趣的朋友不妨來看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“Element表格怎么嵌入復(fù)選框及單選框”吧!
成都創(chuàng)新互聯(lián)是專業(yè)的淮南網(wǎng)站建設(shè)公司,淮南接單;提供做網(wǎng)站、網(wǎng)站設(shè)計(jì),網(wǎng)頁設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行淮南網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來合作!
2,element結(jié)合checkBox實(shí)現(xiàn)單選效果如下:
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 |
shopInfo ref="multipleTable" :data="tableData3" tooltip-effect="dark" highlight-current-row // element-UI提供的單選方法,可以使當(dāng)前選中行高亮 style="width: 100%" @current-change="handleSelectionChange"> // 單選方法,返回選中的表格行 label="操作" width="55"> label="日期" width="120"> {{ scope.row.date }} prop="name" label="姓名" width="120"> prop="address" label="地址" show-overflow-tooltip>
|
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: '上海市普陀區(qū)金沙江路 1518 弄' }, { id: 89, date: '2016-05-02', name: '王小虎', address: '上海市普陀區(qū)金沙江路 1518 弄' }, { id: 23, date: '2016-05-04', name: '王小虎', address: '上海市普陀區(qū)金沙江路 1518 弄' }, { id: 88, date: '2016-05-07', name: '王小虎', address: '上海市普陀區(qū)金沙江路 1518 弄' }] // 后臺(tái)數(shù)據(jù)返回后,手動(dòng)添加一個(gè)checked屬性控制選中與否 resdata.forEach(item => { item.checked = false }) this.tableData3 = resdata },
handleSelectionChange (row) { this.tableData3.forEach(item => { // 排他,每次選擇時(shí)把其他選項(xiàng)都清除 if (item.id !== row.id) { item.checked = false } }) console.log(row) } } } |
到此,相信大家對(duì)“Element表格怎么嵌入復(fù)選框及單選框”有了更深的了解,不妨來實(shí)際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!