调整卡片高度
This commit is contained in:
@@ -21,13 +21,16 @@
|
|||||||
<el-col :span="18">
|
<el-col :span="18">
|
||||||
<div class="user-info-column">
|
<div class="user-info-column">
|
||||||
<div class="user-info-item">
|
<div class="user-info-item">
|
||||||
<h4>昵称: {% raw %}{{ currentUser.data.nickname || '未知用户' }}{% endraw %}</h4>
|
<span class="user-info-label">昵称:</span>
|
||||||
|
<span class="user-info-value">{% raw %}{{ currentUser.data.nickname || '未知用户' }}{% endraw %}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="user-info-item">
|
<div class="user-info-item">
|
||||||
<h4>WXID: {% raw %}{{ currentUser.data.wx_id }}{% endraw %}</h4>
|
<span class="user-info-label">微信ID:</span>
|
||||||
|
<span class="user-info-value">{% raw %}{{ currentUser.data.wx_id }}{% endraw %}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="user-info-item" v-if="currentUser.data.mobile">
|
<div class="user-info-item" v-if="currentUser.data.mobile">
|
||||||
<h4>手机号: {% raw %}{{ currentUser.data.mobile }}{% endraw %}</h4>
|
<span class="user-info-label">手机号:</span>
|
||||||
|
<span class="user-info-value">{% raw %}{{ currentUser.data.mobile }}{% endraw %}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
@@ -794,6 +797,7 @@
|
|||||||
color: #606266;
|
color: #606266;
|
||||||
width: 45px;
|
width: 45px;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.user-info-value {
|
.user-info-value {
|
||||||
@@ -802,6 +806,7 @@
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.user-info-empty {
|
.user-info-empty {
|
||||||
|
|||||||
Reference in New Issue
Block a user