iview table表格中添加select选择器以及dropdown下拉菜单

iview table表格中添加select选择器以及dropdown下拉菜单

1.需求
  • 在上篇的文章iview table表格的自定义样式的基础上,也就是一张table上的某一列改为select框
  • 其中一个option选项,hover或click可以伸展出另外一个选择框
  • 反显
2.设计
  • 查了查资料,就是在table的列里面,使用render函数
  • 使那个可以伸展出另一个的选择框作为一个下拉菜单dropdown,若还是写为 select或者option是不能正常展示的
  • 或者可以使用cascader级联选择(这个应该是挺好的,但是我还没有去尝试过)
3.实践
  • 之前的代码不变
<Table ref="selection" @on-selection-change="onSelect" height="700" no-data-text="暂无数据" :row-class-name="rowClassName" :columns="columns4" :data="data1" highlight-row></Table>
  • 在其中一列中加入render函数
{
   title: '香蕉',
           key: 'banana',
           render: (h, params) => {
             var data = this.data3;
             return h('div', [
               h(
                 "Select",
                 data.map(function (item) {
                 //默认情况下都为select中的option选项
                   if (item.value !== 'three') {
                     return [h(
                       "Option",
                       {
                         props: {
                           value: item.value,
                           key: item.value
                         }
                       },item.label)]
                   }
                   else {
                   //当value为three的时候,将其置为dropdown,hover上去可以显示下拉菜单
                     return h('Dropdown', {props: {trigger: "hover",placement: 'right-start'}},
                       [
                         h('DropdownItem',[
                           item.label,
                           h('Icon',
                             {
                               props: {
                                 type: "ios-arrow-forward"
                               }
                             })
                         ]) ,
                         h('DropdownMenu',{
                             slot:"list"//应该是表示插入进来的数据为list对象
                           },
                           item.children.map(function (child) {
                             console.log(child)
                             //要用option因为这些选项是可以被选中的
                             return h('Option', {
                               props: {
                                 value: child.value,
                                 key: child.value
                               }
                             }, child.label)
                           })
                         )
                       ])
                   }
                 })
               )]);
           }
         }
  • render函数下拉框用到的数据
data3: [
          {
            value: "one",
            label: "一斤",
            children: []
          },
          {
            value: "three",
            label: "三斤",
            children: [
              {
                value: "divideOne",
                label: "一份3斤"
              },
              {
                value: "divideTwo",
                label: "两份各1.5斤"
              }
            ]
          },
          {
            value: "five",
            label: "五斤"
          }
        ]
  • 发现额外弹出的下拉菜单被遮挡,又要改css了


    下拉菜单被遮挡.png
  • 内嵌的css规定了它的宽度,我发现修改这个值是起作用的


    修改下拉菜单css.png
  • 不要去改变select框的宽度,而是去改变select的下拉框的宽度,否则会出现一些东西被覆盖的情况

  /*调节选择框的下拉框的宽度*/
.ivu-select-dropdown{
  min-width: 182px!important;
}
  • 效果图


    更改css效果图.png
  • 反显的话需要在render函数中的select的props属性中指定value即可(value是和此demo中的value对应的,例如一斤是“one”,两份各1.5斤是"divideTwo")

 "Select",{
            props:{
                value:'divideTwo'
              }
          },
4.总结
  • render函数iview上没介绍太多,需要去vue的官方文档上去看
  • render函数的子元素怎么用括号括起来的,我也不太了解,不过一定要括对,否则根本不是你想要的格式
  • 用cascader应该会更好,更方便
  • 本人写的不好或者写错的地方,希望大神可以指出来,因为我真是初学者

<style>
/*外层table的border*/
  .ivu-table-wrapper {
    border:none
  }
/*底色*/
.ivu-table td{
  background-color: #182328;
  color: #fff;
}
/*每行的基本样式*/
  .ivu-table-row td {
    color: #fff;
    border:none
  }
  /*头部th*/
  .ivu-table-header th{
    color:#FFD3B4;
    font-weight: bold;
    background-color: #212c31;
    border: none;
  }

  /*偶数行*/
  .ivu-table-stripe-even td{
    background-color: #434343!important;
  }
  /*奇数行*/
  .ivu-table-stripe-odd td{
    background-color: #282828!important;
  }
/*选中某一行高亮*/
  .ivu-table-row-highlight td {
    background-color: #d63333!important;
  }
  /*浮在某行*/
  .ivu-table-row-hover td {
    background-color: #d63333!important;
  }
/*调节选择框的下拉框的宽度*/
.ivu-select-dropdown{
  min-width: 182px!important;
}
</style>
<template>
  <div>
    <Table ref="selection" @on-selection-change="onSelect" height="700" no-data-text="暂无数据" :row-class-name="rowClassName" :columns="columns4" :data="data1" highlight-row></Table>
    <Button @click="handleSelectAll(true)">Set all selected</Button>
    <Button @click="handleSelectAll(false)">Cancel all selected</Button>
  </div>
</template>

<script>
  export default {
    data () {
      return {
        selecteds: [],
        columns4: [
          {
            type: 'selection',
            width: 60,
            align: 'center'
          },
          {
            title: '苹果',
            key: 'apple'
          },
          {
            title: '香蕉',
            key: 'banana',
            render: (h, params) => {
              var data = this.data3;
              return h('div', [
                h(
                  "Select",{
                    props:{
                      value:'divideTwo'
                    }
                  },
                  data.map(function (item) {
                    if (item.value !== 'three') {
                      return [h(
                        "Option",
                        {
                          props: {
                            value: item.value,
                            key: item.value
                          }
                        },item.label)]
                    }
                    else {
                      return h('Dropdown', {props: {trigger: "hover",placement: 'right-start'}},
                        [
                          h('DropdownItem',[
                            item.label,
                            h('Icon',
                              {
                                props: {
                                  type: "ios-arrow-forward"
                                }
                              })
                          ]) ,
                          h('DropdownMenu',{
                              slot:"list"
                            },
                            item.children.map(function (child) {
                              console.log(child)
                              return h('Option', {
                                props: {
                                  value: child.value,
                                  key: child.value
                                }
                              }, child.label)
                            })
                          )
                        ])
                    }
                  })
                )]);
            }
          },
          {
            title: '橘子',
            key: 'orange'
          },
          {
            title: '西瓜',
            key: 'watermelon'
          },
          {
            title: '牛奶',
            key: 'milk'
          },
          {
            title: '面包',
            key: 'Bread'
          },
          {
            title: '盐',
            key: 'salt'
          },
          {
            title: '小麦',
            key: 'wheat'
          },
          {
            title: '大米',
            key: 'rice'
          },
          {
            title: '酱油',
            key: 'soy'
          },
          {
            title: '其他',
            key: 'else'
          }
        ],
        data1: [
          {
            apple: 'John Brown',
            banana: '18',
            orange: 18,
            watermelon: 'New York No. 1 Lake Park',
            milk: '2016-10-03',
            Bread: 'New York No. 1 Lake Park',
            salt: '2016-10-03',
            wheat: 'New York No. 1 Lake Park',
            rice: '2016-10-03',
            soy: 'New York No. 1 Lake Park',
            else: '2016-10-03'
          },{
            apple: 'John Brown',
            banana: '18',
            orange: 18,
            watermelon: 'New York No. 1 Lake Park',
            milk: '2016-10-03',
            Bread: 'New York No. 1 Lake Park',
            salt: '2016-10-03',
            wheat: 'New York No. 1 Lake Park',
            rice: '2016-10-03',
            soy: 'New York No. 1 Lake Park',
            else: '2016-10-03'
          },{
            apple: 'John Brown',
            banana: '18',
            orange: 18,
            watermelon: 'New York No. 1 Lake Park',
            milk: '2016-10-03',
            Bread: 'New York No. 1 Lake Park',
            salt: '2016-10-03',
            wheat: 'New York No. 1 Lake Park',
            rice: '2016-10-03',
            soy: 'New York No. 1 Lake Park',
            else: '2016-10-03'
          },{
            apple: 'John Brown',
            banana: '18',
            orange: 18,
            watermelon: 'New York No. 1 Lake Park',
            milk: '2016-10-03',
            Bread: 'New York No. 1 Lake Park',
            salt: '2016-10-03',
            wheat: 'New York No. 1 Lake Park',
            rice: '2016-10-03',
            soy: 'New York No. 1 Lake Park',
            else: '2016-10-03',
            _checked: true
          },{
            apple: 'John Brown',
            banana: '18',
            orange: 18,
            watermelon: 'New York No. 1 Lake Park',
            milk: '2016-10-03',
            Bread: 'New York No. 1 Lake Park',
            salt: '2016-10-03',
            wheat: 'New York No. 1 Lake Park',
            rice: '2016-10-03',
            soy: 'New York No. 1 Lake Park',
            else: '2016-10-03'
          },{
            apple: 'John Brown',
            banana: '18',
            orange: 18,
            watermelon: 'New York No. 1 Lake Park',
            milk: '2016-10-03',
            Bread: 'New York No. 1 Lake Park',
            salt: '2016-10-03',
            wheat: 'New York No. 1 Lake Park',
            rice: '2016-10-03',
            soy: 'New York No. 1 Lake Park',
            else: '2016-10-03'
          },{
            apple: 'John Brown',
            banana: '18',
            orange: 18,
            watermelon: 'New York No. 1 Lake Park',
            milk: '2016-10-03',
            Bread: 'New York No. 1 Lake Park',
            salt: '2016-10-03',
            wheat: 'New York No. 1 Lake Park',
            rice: '2016-10-03',
            soy: 'New York No. 1 Lake Park',
            else: '2016-10-03'
          }
        ],
        data3: [
          {
            value: "one",
            label: "一斤",
            children: []
          },
          {
            value: "three",
            label: "三斤",
            children: [
              {
                value: "divideOne",
                label: "一份3斤"
              },
              {
                value: "divideTwo",
                label: "两份各1.5斤"
              }
            ]
          },
          {
            value: "five",
            label: "五斤"
          }
        ]
      }
    },
    methods: {
      handleSelectAll (status) {
        // this.$refs.selection.selectAll(status);
        // console.log(this.$refs.selection.$children)
        this.$refs.selection.selectAll(status);
        console.log(this.selection)
      },
      rowClassName :function (row, index) {
        if(index%2==0){
          return 'ivu-table-stripe-even';
        }
        else return 'ivu-table-stripe-odd';
      },
      onSelect(selection,index){
        // console.log(this.$refs.selection.data)
        this.selecteds = selection;
        console.log(this.selecteds)
      }
      /*,
      onDoubleClick(row,index){
        console.log(row)
        //改变为勾选样式
        //将当前行加入到selection
        this.$refs.selection.data[index]._checked=!this.$refs.selection.data[index]._checked
      }*/
    }
  }
</script>


最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,539评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,911评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,337评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,723评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,795评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,762评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,742评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,508评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,954评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,247评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,404评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,104评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,736评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,352评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,557评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,371评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,292评论 2 352