一、Iview Table 组件 多选框选中和禁选设置
Table添加多选框
通过给 columns 数据设置一项,指定 type: 'selection' ,即可自动开启多选功能。
正确使用好以下事件,可以达到需要的效果:
<template> <div> <Table ref="selection" :columns="columns" :data="data" @on-selection-change="selectChange"></Table> </div> </template> <script> export default { data () { return { columns: [ { type: 'selection', width: 60, align: 'center' }, { title: 'Name', key: 'name' }] } }, methods: { selectChange: function (data) { console.log(data[i].name) } } </script>
给 data 项设置特殊 key _checked: true 可以默认选中当前项。
给 data 项设置特殊 key _disabled: true 可以禁止选择当前项。
例如:
for (var i = 0; i < res.data.list.length; i++) { if (res.data.list[i].status === '1') { res.data.list[i]._disabled = true // 设置复选框禁用 res.data.list[i]._checked= true // 设置复选框选中状态 } }
二、Iview Table 组件中点击Icon弹出Poptip的写法
1.图标禁用方式
{ title: '撤销', key: 'operate', width: 70, fixed: 'right', render: (h, params) => { if (params.row.status === '1') { // 选中当前行信息 return h('div', [ h('div', [ h('Poptip', { props: { confirm: true, title: '确定要撤销吗!' }, on: { 'on-ok': () => { this.cancelFunction(params.index) } } }, [ h('Button', { props: { shape: 'circle', icon: 'md-return-left' } }) ]) ]) ]) } else { return h('div', [ h('Button', { props: { shape: 'circle', icon: 'md-return-left', disabled: true // 禁用图标 } }) ]) } } },
2.图标禁用方式
{ title: '修改', key: 'operate', fixed: 'right', width: 70, textAlign: 'right', render: (h, params) => { return h('div', [ h('Button', { props: { shape: 'circle', icon: 'ios-paper-plane', disabled: params.row.status !== '0' }, on: { click: () => { this.editFunction(params.index) } } }) ]) } },
三、四元运算符 : 多个三元运算符 嵌套
var state = null; var display_state = (state == null ? "未用" : (state == true ? "在用" : "停用")) //display_state //"未用"
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持亿速云。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。