Эй, мне нужна помощь с использованием двух таблиц данных на одной странице.Что мне нужно сделать, это когда в таблице 1 (T1) развернута строка (R1), мне нужно, чтобы R1 свернулся, когда пользователь развернул строку (R2) в таблице 2 (T2).Вот кодовое окно, созданное с помощью 2 таблиц данных, которые расширяются с помощью моего решения: https://codepen.io/BrandiW/pen/WgLPej?editors=1010 Как вы можете видеть в этом кодовом блоке, я использую переменную с именем Expanded, чтобы в настоящее время скрывать v-карту в расширенной строке, которая нуждается вбыть закрытым, но проблема в том, что он на самом деле не закрывает этот ряд.Таким образом, если вы хотите открыть эту строку обратно, вам нужно дважды щелкнуть по ней (один раз, чтобы закрыть ее, и еще раз, чтобы снова открыть).
Пример задачи:
- Работает: нажмите 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%'
}
]
}
}})