renderHeaderBig(h, { column, $index }) { // console.log(column.label); return h("div",{ class: { 'text_overflowd': true, }, // style:'width:100px;', }, [ h( "el-tooltip", { props: { content: (function() { return `${column.label}`; })(), placement: "right" } },[ h("div",{ class: { 'text_overflowd': true, }, style:'width:100px;margin:0 auto', }, [ h("span", { class: { 'text_overflowd': true, }, style:'width:100px;', domProps: { innerHTML: column.label } }), // h("span", column.label), // h("span", { // class: { // "el-icon-question": true, // woca: true // } // }) ]) ] ) ]); // return h("span", {}, [ // h("span", {}, "時間片段"), // h( // "el-popover", // { // props: { // placement: "top-start", // width: "200", // trigger: "hover", // content: "領先/落后品類=單店平均單量-該品類城市店均單量" // } // }, // [h("i", { slot: "reference", class: "el-icon-question" }, "")] // ) // ]); // return h( // 'el-tooltip', // { // props: { // content: (function() { // return `${column.label}` // })(), // placement: 'top' // } // }, // [ h('span', 'wocai'), h('span', { // class: { // 'el-icon-question': true, // 'woca':true // } // }) // ] // ) // return h("div", [ // h( // "el-tooltip", // { // props: { // content: (function() { // return `${column.label}`; // })(), // placement: "top" // } // }, // [ // h("span", column.label,{ // class: { // "el-icon-question": true // } // }) // ] // ) // ]); },