Commit 4989b0ac authored by Xuguangxing's avatar Xuguangxing

fix

parent 84a665ae
...@@ -55,15 +55,26 @@ ...@@ -55,15 +55,26 @@
<div v-if="groupHC >= 10" class="more" :style="widthStyle" @click="showMoreAvator"> <div v-if="groupHC >= 10" class="more" :style="widthStyle" @click="showMoreAvator">
<div class="content" /> <div class="content" />
</div> </div>
<cr-dialog v-model="showDialogSlot" confirm-button-text="知道了" confirm-button-color="#ec1500"> <template v-if="showDialogSlot">
<cr-dialog
v-model="showDialogSlot"
confirm-button-text="知道了"
confirm-button-color="#ec1500"
>
<div slot="title">查看参团人员</div> <div slot="title">查看参团人员</div>
<div <div
style="width: 100%; style="width: 100%;
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
justify-content: center;" justify-content: center;
"
>
<div
v-for="(item, index) in avators"
:key="index"
class="avator-item"
:style="widthStyle"
> >
<div v-for="(item, index) in avators" :key="index" class="avator-item" :style="widthStyle">
<cr-image <cr-image
:key="index" :key="index"
:class="{ avator: index == 0 }" :class="{ avator: index == 0 }"
...@@ -89,6 +100,7 @@ ...@@ -89,6 +100,7 @@
</div> </div>
</div> </div>
</cr-dialog> </cr-dialog>
</template>
</div> </div>
</template> </template>
<script> <script>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment