增加余额明细列表

This commit is contained in:
2023-04-11 14:43:03 +08:00
parent fd5e3cfcaa
commit 7b560d463a
7 changed files with 112 additions and 1 deletions

View File

@@ -1039,6 +1039,35 @@
margin-right: 3px;
}
.list-record .item-record {
display: flex;
align-items: center;
justify-content: space-between;
background-color: #fff;
box-shadow: 0px 0px 4px rgba(77, 85, 114, 0.1);
padding: 12px;
margin-bottom: 9px;
border-radius: 12px;
}
.list-record .item-record .right {
text-align: right;
}
.list-record .item-record .item-name {
font-size: 14px;
}
.list-record .item-record .item-desc {
font-size: 12px;
color: #999;
margin-top: 6px;
}
.list-record .item-record .item-change {
font-weight: 600;
color: green;
}
.list-record .item-record .item-change.status-2 {
color: orangered;
}
.ul-book-list {
display: flex;
align-items: flex-start;

File diff suppressed because one or more lines are too long