Commit 06bd5465 by LJM

bug

parent 99241393
Showing with 25 additions and 10 deletions
......@@ -14,18 +14,17 @@
</a>
</div>
</div>
<div class="user-box fr">
<div class="line" style="margin-left:0px;"></div>
<a class="msgh fl" href="javascript:history.go(0)">
<div class="user-box fr row verCenter">
<a class="msgh" href="javascript:history.go(0)">
<span class="el-icon-refresh icon" style="position:relative;top:3px;"></span>
</a>
<div class="line"></div>
<a href="/云芯操作手册.pdf" class="fl" target="_blank" title="操作手册"><span class="icon iconfont iconwendangguanli fl"></span></a>
<div class="line"></div>
<div class="login-v fl">
<img class="fl" :src="userinfo.avatar||'https://www.ichunt.com/v3/dist/res/home/images/headimg/boy1.png'" alt="">
<div class="fl namex">{{ userinfo.contacts_name || '猎芯网用户' }}</div>
<div class="fl lo-box-drop">
<div class="login-v row verCenter">
<img :src="userinfo.avatar||'https://www.ichunt.com/v3/dist/res/home/images/headimg/boy1.png'" alt="">
<div class="namex">{{ userinfo.contacts_name || '猎芯网用户' }}</div>
<div class="lo-box-drop row verCenter">
<span class="icon iconfont"></span>
<div class="drop-box">
<a href="javascript:;" @click="changePwd()">修改密码</a>
......@@ -552,8 +551,8 @@ export default {
height: 40px;
padding: 8px 0;
line-height: 40px;
padding-right: 36px;
color: #A1ACC1;
width: 241px;
a {
color: #A1ACC1;
......@@ -568,6 +567,12 @@ export default {
.icon {
font-size: 24px;
transition: all 0.5s;
&.el-icon-refresh {
animation-name: layui-rotate;
animation-duration: 1s;
animation-timing-function: linear;
}
}
.line {
......@@ -577,8 +582,6 @@ export default {
float: left;
margin-left: 15px;
margin-right: 15px;
position: relative;
top: 5px;
}
.msgh {
......@@ -627,6 +630,7 @@ export default {
height: 55px;
padding: 12px 0;
left: -66px;
top: 100%;
background: #FFFFFF;
box-shadow: 1px 2px 10px 0px rgba(119, 135, 145, 0.5);
......@@ -892,4 +896,14 @@ export default {
}
}
}
@keyframes layui-rotate {
from {
-webkit-transform: rotate(0)
}
to {
-webkit-transform: rotate(360deg)
}
}
</style>
\ No newline at end of file
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 sign in to comment