Skip to content
This repository has been archived by the owner on Nov 13, 2024. It is now read-only.

Commit

Permalink
Feat: 新增显示备注
Browse files Browse the repository at this point in the history
  • Loading branch information
YuMao233 committed Jul 18, 2022
1 parent f90b7f9 commit b4b9737
Showing 1 changed file with 10 additions and 13 deletions.
23 changes: 10 additions & 13 deletions src/app/views/quickstart/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,19 +46,16 @@

<div v-if="step == 1">
<el-row :gutter="10" justify="left">
<el-col
:md="6"
:offset="0"
v-for="(item, index) in remoteObjects"
:key="index"
@click="selectHost(item.uuid)"
>
<ItemGroup v-if="item.available">
<SelectBlock style="height: 120px; background-color: white">
<template #title>{{ item.ip }}:{{ item.port }}</template>
</SelectBlock>
</ItemGroup>
</el-col>
<template v-for="(item, index) in remoteObjects" :key="index">
<el-col :md="6" :offset="0" @click="selectHost(item.uuid)" v-if="item.available">
<ItemGroup>
<SelectBlock style="height: 120px; background-color: white">
<template #title>{{ item.ip }}:{{ item.port }}</template>
<template #info>{{ item.remarks }}</template>
</SelectBlock>
</ItemGroup>
</el-col>
</template>
</el-row>
</div>
</template>
Expand Down

0 comments on commit b4b9737

Please sign in to comment.