You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.2 KiB
41 lines
1.2 KiB
|
1 month ago
|
<template>
|
||
|
|
<tr :key="itemSlot.slotName + indexSlot + Math.floor(Math.random() * 100000) + 1">
|
||
|
|
<td :rowspan="7" colspan="4">{{ itemSlot.slotName }}</td>
|
||
|
|
</tr>
|
||
|
|
<template v-for="(itemChild, indexChild) in itemSlot.childrenList" :key="
|
||
|
|
itemSlot.slotName + indexSlot + indexChild + Math.floor(Math.random() * 100000) + 1
|
||
|
|
">
|
||
|
|
<tr
|
||
|
|
v-if="indexChild <= 2"
|
||
|
|
|
||
|
|
>
|
||
|
|
<td colspan="2">{{ itemChild.detailName }}</td>
|
||
|
|
<td colspan="2">{{ itemChild.ask }}</td>
|
||
|
|
<td colspan="3">{{ itemChild.paramValue }}</td>
|
||
|
|
</tr>
|
||
|
|
<tr v-else :key="itemSlot.slotName+indexSlot+indexChild+Math.floor(Math.random()*100000)+1">
|
||
|
|
<td colspan="2">{{ itemChild.detailName }}</td>
|
||
|
|
<td colspan="5">{{ itemChild.paramValue }}</td>
|
||
|
|
</tr>
|
||
|
|
</template>
|
||
|
|
</template>
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
props: {
|
||
|
|
itemSlot: {
|
||
|
|
type: Object,
|
||
|
|
default: () => {},
|
||
|
|
},
|
||
|
|
indexSlot: {
|
||
|
|
type: Number,
|
||
|
|
default: 0,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
data() {
|
||
|
|
return {};
|
||
|
|
},
|
||
|
|
methods: {},
|
||
|
|
};
|
||
|
|
</script>
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
</style>
|