中航光电热表web
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.

30 lines
731 B

<template>
<tr :key="itemSlot.slotName + indexSlot + Math.floor(Math.random() * 100000) + 1">
<td :rowspan="2" colspan="4">{{ itemSlot.slotName }}</td>
</tr>
<tr :key="itemSlot.slotName + indexSlot + Math.floor(Math.random() * 100000) + 1">
<td colspan="2">{{ itemSlot.childrenList[0].detailName }}</td>
<td colspan="2">{{ itemSlot.childrenList[0].ask }}</td>
<td colspan="3">{{ itemSlot.childrenList[0].paramValue }}</td>
</tr>
</template>
<script>
export default {
props: {
itemSlot: {
type: Object,
default: () => {},
},
indexSlot: {
type: Number,
default: 0,
},
},
data() {
return {};
},
methods: {},
};
</script>
<style lang="scss" scoped>
</style>