|
@@ -26,18 +26,18 @@
|
|
|
<ul>
|
|
|
<li @click="clickGroup(item)" v-for="item in myGroup" :key="item.index" :class="active === item.rowindex?'act':''" class="pd-t-b flex-align-center flex-between">
|
|
|
<div class="flex-align-stretch">
|
|
|
- <div style="display: flex;justify-content: space-between">
|
|
|
+ <div style="display: flex;justify-content: space-between;">
|
|
|
<img width="50px" height="50px" src="../../../../assets/icons/my_group.png" alt="">
|
|
|
<div class="r_flex">
|
|
|
- <p class="groupname">{{$t(item.groupname)}}</p>
|
|
|
+ <sapn class="groupname" style="word-break: break-all;white-space: pre-wrap;min-width: 95px">{{$t(item.groupname)}}</sapn>
|
|
|
<small class="color-grey">{{$t('已有')}}{{item.count}} {{$t('人')}}</small>
|
|
|
</div>
|
|
|
+ <div style="display:flex;margin-left: 10px">
|
|
|
+ <slot name="edit" :data="item" class="inline-16"></slot>
|
|
|
+ <slot name="del" :data="item" class="inline-16"></slot>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div style="display:flex">
|
|
|
- <slot name="edit" :data="item"></slot>
|
|
|
- <slot name="del" :data="item"></slot>
|
|
|
- </div>
|
|
|
</li>
|
|
|
</ul>
|
|
|
</div>
|