嘿,我需要在同一页面上使用两个数据表的一些帮助。我需要做的是当表1(T1)的行(R1)展开时,我需要R1在用户扩展表2(T2)的行(R2)时折叠。这是一个设置有2个数据表的codepen,它们随我的解决方案扩展:https://codepen.io/BrandiW/pen/WgLPej?editors=1010如您在该codepen中所见,我正在使用一个名为Expanded的变量来当前将v-card隐藏在扩展行中,被关闭,但是问题在于它实际上并没有关闭该行。因此,如果要备份打开此行,则必须双击它(一次将其关闭,另一次重新打开)。
示例问题:
代码(先是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%'
}
]
}
}})
答案 0 :(得分:1)
我从名为MajesticPotatoe的用户那里获得了Vuetify Discord频道的帮助。这是他的解决方案,它有效! https://codepen.io/MajesticPotatoe/pen/wENNKW
<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="test(props, 'D')">
<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="test(props, 'A')">
<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%'
}
]
}
},
methods: {
test(props, table){
props.expanded = (this.Expanded !== table) ? true : !props.expanded ;
this.Expanded = table;
}
},
})