Table: 在type="index"如果设置了label 优先显示label

pull/107/head
spademan 2016-09-21 13:30:28 +08:00
parent 03a60995d6
commit 386a8466b0
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ const forced = {
},
index: {
// headerTemplate: function(h) { return <div>#</div>; },
headerTemplate: function(h) { return <div>{ this.$options.propsData.columns[0].label ? this.$options.propsData.columns[0].label : '#' }</div>; },
headerTemplate: function(h, label) { return <div>{ label || '#' }</div>; },
template: function(h, { row, $index }) { return <div>{ $index + 1 }</div>; },
sortable: false
},

View File

@ -30,7 +30,7 @@ export default {
{
[
column.headerTemplate
? column.headerTemplate.call(this._renderProxy, h)
? column.headerTemplate.call(this._renderProxy, h, column.label)
: <div>{ column.label }</div>,
column.sortable
? <div class="caret-wrapper">