| | |
| | | v-for="(item, index) in CardList.details" |
| | | :closeButton="true" |
| | | @closebuttonclick="closeWindow(index)" |
| | | @update:height="resizeHeight" |
| | | @update:width="resizeWidth" |
| | | :key="index" |
| | | style="background:white; height:475px" |
| | | :left="center.x + index * 10" |
| | |
| | | :maxHeight="7000" |
| | | :height="defaultHeight" |
| | | :width="defaultWidth" |
| | | |
| | | > |
| | | <div v-if="item.list.length == 1" style="height: calc(100% - 50px)"> |
| | | <model-card :data="item.list[0]"></model-card> |
| | |
| | | </div> |
| | | </template> |
| | | <script> |
| | | import bus from '@/plugin/bus' |
| | | import ModelCard from '@/components/subComponents/ModelCard' |
| | | export default { |
| | | name: 'cardWindow', |