|
@@ -60,17 +60,19 @@
|
|
|
<div class="item-avatar">{{ item.name.substr(0, 1) }}</div>
|
|
|
<div class="item-info">
|
|
|
<div class="item-info_top">
|
|
|
- <span>{{ item.name }}</span>
|
|
|
+ <span class="mt-10">{{ item.name }}</span>
|
|
|
<span>{{ $t(item.position) }}</span>
|
|
|
</div>
|
|
|
<p>{{ item.phonenumber }}</p>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div style="padding: 2px 10px;">
|
|
|
- <div class="item-right">
|
|
|
- <span style="color: #3874F6">{{ $t(item.reportname) }}</span>
|
|
|
+ <div style="display: flex;justify-content: right">
|
|
|
+ <div class="item-right">
|
|
|
+ <span style="color: #3874F6;" >{{ $t(item.reportname) }}</span>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
- <p style="font-size: 12px">{{ item.createdate }}</p>
|
|
|
+ <div style="font-size: 12px;margin-top: 10px">{{ item.createdate }}</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -213,7 +215,7 @@ export default {
|
|
|
.aside {
|
|
|
font-size: 14px;
|
|
|
height: calc(100vh - 250px);
|
|
|
- background-color: rgba(230,234,242,0.15);
|
|
|
+ background-color: rgba(230,234,242);
|
|
|
border-right: 1px solid #cccccc;
|
|
|
}
|
|
|
.aside .aside-header {
|
|
@@ -308,7 +310,11 @@ export default {
|
|
|
.list .list-item .item-right {
|
|
|
background-color: rgba(56,116,246,0.15);
|
|
|
padding: 2px 0;
|
|
|
+ /*margin: 0 20px;*/
|
|
|
border-radius: 4px;
|
|
|
text-align: center;
|
|
|
+ width: 80px;
|
|
|
+
|
|
|
+ overflow-wrap: break-word;
|
|
|
}
|
|
|
</style>
|