Browse Source

bug

shibei_master
zhaoyongnian 3 years ago
parent
commit
796142c266
  1. 12
      src/views/modules/visual/communityParty/memberInfo.vue

12
src/views/modules/visual/communityParty/memberInfo.vue

@ -13,7 +13,7 @@
<div class="list-wr info-h">
<div class="list-left info-scroll">
<div v-for="(item, index) in list" :key="item.id" class="left-item"
:class="current == index &&'left-item-on'" @click="handleTabs(item, index)">
:class="current == index ? 'active-item' : ''" @click="handleTabs(item, index)">
<div class="item-title">{{ item.content }}</div>
<div class="item-time">{{ item.reportTime }}</div>
</div>
@ -219,7 +219,7 @@ export default {
}
.list-wr {
display: flex;
padding: 0 32px;
// padding: 0 32px;
}
.list-left {
@ -230,9 +230,13 @@ export default {
flex-shrink: 0;
border-right: 1px dashed #1257c9;
overflow: auto;
.active-item {
border: 1px solid #0063FE !important;
box-shadow: 0px 0px 10px #0063fe inset;
}
.left-item {
padding: 10px 0;
border-right: 1px dashed #1257c9;
padding: 10px 0px 10px 10px;
// border-right: 1px dashed #1257c9;
cursor: pointer;
.item-title {
font-size: 16px;

Loading…
Cancel
Save