31 lines
950 B
Vue
31 lines
950 B
Vue
![]() |
<template>
|
||
|
<tr :class="rowClasses(row._index)"><slot></slot></tr>
|
||
|
</template>
|
||
|
<script>
|
||
|
export default {
|
||
|
props: {
|
||
|
row: Object,
|
||
|
prefixCls: String
|
||
|
},
|
||
|
computed: {
|
||
|
objData () {
|
||
|
return this.$parent.objData;
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
rowClasses (_index) {
|
||
|
return [
|
||
|
`${this.prefixCls}-row`,
|
||
|
this.rowClsName(_index),
|
||
|
{
|
||
|
[`${this.prefixCls}-row-highlight`]: this.objData[_index] && this.objData[_index]._isHighlight,
|
||
|
[`${this.prefixCls}-row-hover`]: this.objData[_index] && this.objData[_index]._isHover
|
||
|
}
|
||
|
];
|
||
|
},
|
||
|
rowClsName (_index) {
|
||
|
return this.$parent.$parent.rowClassName(this.objData[_index], _index);
|
||
|
},
|
||
|
}
|
||
|
};
|
||
|
</script>
|