elementUI Table表格表头自定义

Posted tianmiaogongzuoshi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了elementUI Table表格表头自定义相关的知识,希望对你有一定的参考价值。

element UI 官方文档有一个 :render-header 的方法 渲染自定义结构用的是 vue 的h函数 也就是render 函数写法

 

   //html
   <el-table-column
                
                align="center"
               :render-header="renderHeader"
                >
                 <template slot-scope="scope">
                     
                    {{scope.row.balance | changeNumber}}元
                  </template>
 
    </el-table-column>

  

 renderHeader(h,{column,$index}){
 
//$index 表格竖行的索引值 
     
     
      
      return h(
        ‘div‘,
        {class:‘‘,
        style:"padding-top:4px;"
        },
        [ 
          h(‘el-tooltip‘,
           {
             props:{
                content:"哈哈哈哈",
                placement:"top",
                effect:"light",
             },
           },
           [
            h(‘span‘,{
            
            },[
                h(‘span‘,"标题"),
                h(‘i‘, {
                class:‘cursorPointer fa fa-question-circle colorFE7F76‘,
                style:‘margin-left:6px;‘,
                }),
            ]),
             
           ],
          ),
          
       ],
      );
    },

  h函数具体参数 位置含义 可以自行搜索,我用的是简写

以上是关于elementUI Table表格表头自定义的主要内容,如果未能解决你的问题,请参考以下文章

ElementUI中table表格自定义表头Tooltip文字提示

ElementUI中table表格自定义表头Tooltip文字提示

ElementUI中table表格自定义表头Tooltip文字提示

封装element-ui的table自定义表头组件

ElementUI自定义表格多选表头

iView中表格(Table)自定义表头添加模糊搜索框