Table support disableExpand
This commit is contained in:
parent
f023b8a0e6
commit
e4e8711d0f
2 changed files with 3 additions and 2 deletions
|
@ -84,7 +84,8 @@
|
|||
{
|
||||
name: '张小刚',
|
||||
age: 25,
|
||||
address: '北京市海淀区西二旗'
|
||||
address: '北京市海淀区西二旗',
|
||||
_disableExpand: true
|
||||
},
|
||||
{
|
||||
name: '李小红',
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<Checkbox :value="checked" @on-change="toggleSelect" :disabled="disabled"></Checkbox>
|
||||
</template>
|
||||
<template v-if="renderType === 'normal'"><span v-html="row[column.key]"></span></template>
|
||||
<template v-if="renderType === 'expand'">
|
||||
<template v-if="renderType === 'expand' && !row._disableExpand">
|
||||
<div :class="expandCls" @click="toggleExpand">
|
||||
<Icon type="ios-arrow-right"></Icon>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Reference in a new issue