嘿,我需要一些帮助才能在同一页面上使用两个数据表。我需要发生的是,当表 1 (T1) 有一行 (R1) 展开时,当用户在表 2 (T2) 上展开一行 (R2) 时,我需要 R1 折叠。这是一个设置了 2 个数据表的代码笔,这些数据表可以通过我的解决方案进行扩展:https : //codepen.io/BrandiW/pen/WgLPej?editors=1010 正如您在此代码笔中看到的那样,我正在使用一个名为 Expanded to current将 v-card 隐藏在需要关闭的扩展行中,但问题是它实际上并没有关闭这一行。因此,如果您想重新打开这一行,您必须双击它(一次关闭它,另一次重新打开它)。
示例问题:
- 作品:点击 T1 - R1 然后 T2 - R2 然后 T1 - R3
- 不起作用:单击 T1 - R1 然后 T2 - R2 然后 T1 - R1 或 T1 - R2
代码(html然后java脚本):
<div id="app">
<v-app id="inspire">
<h1> Table 1 </h1>
<v-data-table
:headers="headers"
:items="desserts1"
hide-actions
item-key="name"
>
<template slot="items" slot-scope="props">
<tr @click="(Expanded = 'D')&&(props.expanded = !props.expanded)">
<td>{{ props.item.name }}</td>
<td class="text-xs-right">{{ props.item.calories }}</td>
<td class="text-xs-right">{{ props.item.fat }}</td>
<td class="text-xs-right">{{ props.item.carbs }}</td>
<td class="text-xs-right">{{ props.item.protein }}</td>
<td class="text-xs-right">{{ props.item.iron }}</td>
</tr>
</template>
<template slot="expand" slot-scope="props">
<v-card flat>
<v-card-text v-if="Expanded == 'D'"><h2>Row in table 1 expanded</h2></v-card-text>
</v-card>
</template>
</v-data-table>
<h1> Table 2 </h1>
<v-data-table
:headers="headers"
:items="desserts2"
hide-actions
item-key="name"
>
<template slot="items" slot-scope="props">
<tr @click="(Expanded = 'A')&&(props.expanded = !props.expanded)">
<td>{{ props.item.name }}</td>
<td class="text-xs-right">{{ props.item.calories }}</td>
<td class="text-xs-right">{{ props.item.fat }}</td>
<td class="text-xs-right">{{ props.item.carbs }}</td>
<td class="text-xs-right">{{ props.item.protein }}</td>
<td class="text-xs-right">{{ props.item.iron }}</td>
</tr>
</template>
<template slot="expand" slot-scope="props">
<v-card flat>
<v-card-text v-if="Expanded == 'A'"><h2>Row in table 2 expanded</h2></v-card-text>
</v-card>
</template>
</v-data-table>
</v-app>
</div>
new Vue({
el: '#app',
data () {
return {
Expanded: "",
headers: [
{
text: 'Dessert (100g serving)',
align: 'left',
sortable: false,
value: 'name'
},
{ text: 'Calories', value: 'calories' },
{ text: 'Fat (g)', value: 'fat' },
{ text: 'Carbs (g)', value: 'carbs' },
{ text: 'Protein (g)', value: 'protein' },
{ text: 'Iron (%)', value: 'iron' }
],
desserts1: [
{
value: false,
name: 'Frozen Yogurt',
calories: 159,
fat: 6.0,
carbs: 24,
protein: 4.0,
iron: '1%'
},
{
value: false,
name: 'Ice cream sandwich',
calories: 237,
fat: 9.0,
carbs: 37,
protein: 4.3,
iron: '1%'
},
{
value: false,
name: 'Eclair',
calories: 262,
fat: 16.0,
carbs: 23,
protein: 6.0,
iron: '7%'
},
{
value: false,
name: 'Cupcake',
calories: 305,
fat: 3.7,
carbs: 67,
protein: 4.3,
iron: '8%'
},
],
desserts2: [
{
value: false,
name: 'Lollipop',
calories: 392,
fat: 0.2,
carbs: 98,
protein: 0,
iron: '2%'
},
{
value: false,
name: 'Honeycomb',
calories: 408,
fat: 3.2,
carbs: 87,
protein: 6.5,
iron: '45%'
},
{
value: false,
name: 'Donut',
calories: 452,
fat: 25.0,
carbs: 51,
protein: 4.9,
iron: '22%'
},
{
value: false,
name: 'KitKat',
calories: 518,
fat: 26.0,
carbs: 65,
protein: 7,
iron: '6%'
}
]
}
}})