Commit e984cbb8 authored by yyh's avatar yyh

代码调整

parent 03ddc2eb
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
<div class="desc" @click.stop="toggleShowIncrementListHandler"> <div class="desc" @click.stop="toggleShowIncrementListHandler">
<common-svg name="suyuan-duoshaotiao1"></common-svg> <common-svg name="suyuan-duoshaotiao1"></common-svg>
<div>{{isSy ? '溯源' : '慈善'}}流程{{proof.increment_num}}条</div> <div>{{isSy ? '溯源' : '慈善'}}流程{{proof.increment_num}}条</div>
<common-svg name="fanhui" :style="{transform: showIncrementList?'rotate(180deg)':'rotate(0)'}"></common-svg> <common-svg name="fanhui" class="arrow" :class="{ expend: showIncrementList }"></common-svg>
</div> </div>
</div> </div>
</div> </div>
...@@ -173,6 +173,12 @@ export default class ProofItem extends Vue { ...@@ -173,6 +173,12 @@ export default class ProofItem extends Vue {
padding-top: 10px; padding-top: 10px;
font-size: 12px; font-size: 12px;
color:#B6B5BA; color:#B6B5BA;
.arrow {
transition: all .3s linear;
&.expend {
transform: rotate(180deg);
}
}
} }
} }
} }
......
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