|
|
@ -46,7 +46,39 @@ |
|
|
|
:src="iconItem.iconUrl" |
|
|
|
alt /> |
|
|
|
</div> |
|
|
|
<div @click.stop="handleShowAllUser(index)" |
|
|
|
|
|
|
|
<el-popover placement="bottom" |
|
|
|
width="50" |
|
|
|
popper-class="my_popover" |
|
|
|
trigger="click"> |
|
|
|
<div class="user_list"> |
|
|
|
<div v-for="(userItem,userIndex) in userArray" |
|
|
|
:key="userIndex" |
|
|
|
class="user_item" |
|
|
|
@click.stop="handleClickUser(userItem.userId)"> |
|
|
|
<div class="user_item_content"> |
|
|
|
<div class="name">{{userItem.name}}</div> |
|
|
|
|
|
|
|
<img src="../../../../assets/img/jinru.png" |
|
|
|
alt /> |
|
|
|
|
|
|
|
</div> |
|
|
|
<div :class="['item_line',{'last_line':userIndex==(userArray.length-1)}]"></div> |
|
|
|
</div> |
|
|
|
|
|
|
|
</div> |
|
|
|
<div slot="reference" |
|
|
|
class="div_user" |
|
|
|
@click.stop="handleShowAllUser(index)"> |
|
|
|
|
|
|
|
<span>全部成员</span> |
|
|
|
<img src="../../../../assets/img/xiala.png" |
|
|
|
alt /> |
|
|
|
</div> |
|
|
|
<!-- <el-button slot="reference">click 激活</el-button> --> |
|
|
|
</el-popover> |
|
|
|
|
|
|
|
<!-- <div @click.stop="handleShowAllUser(index)" |
|
|
|
class="div_user"> |
|
|
|
|
|
|
|
<span>全部成员</span> |
|
|
@ -70,7 +102,7 @@ |
|
|
|
</div> |
|
|
|
|
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> --> |
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
@ -458,4 +490,11 @@ export default { |
|
|
|
overflow-x: hidden !important; |
|
|
|
} |
|
|
|
} |
|
|
|
</style> |
|
|
|
</style> |
|
|
|
<style lang="scss" > |
|
|
|
.el-popover.my_popover { |
|
|
|
padding: 0px; |
|
|
|
margin-top: 10px; |
|
|
|
border: 0; |
|
|
|
} |
|
|
|
</style> |
|
|
|