update&add 增加了选房及片区service

This commit is contained in:
2021-05-28 21:16:19 +08:00
parent 34c47e78b2
commit 7cef14c7fd
49 changed files with 2034 additions and 110 deletions

View File

@@ -4,16 +4,17 @@
background-color: @white;
}
.yo-list {
@title-color: lighten(@black, 70%);
@value-color: lighten(@black, 30%);
&-content--h {
display: flex;
align-items: center;
&--item {
min-width: 120px;
margin-left: @padding-xl;
>span {
line-height: 20px;
color: lighten(@black, 70%);
color: @title-color;
}
>p {
line-height: 22px;
@@ -21,11 +22,26 @@
margin-top: @padding-xxs;
margin-bottom: 0;
color: lighten(@black, 30%);
color: @value-color;
}
}
}
>.ant-pagination {
margin: @padding-md 0;
}
.ant-descriptions {
.ant-descriptions-item-label {
color: @title-color;
}
.ant-descriptions-item-content {
color: @value-color;
}
.ant-descriptions-row {
&:last-child {
>td {
padding-bottom: 0;
}
}
}
}
}

View File

@@ -23,4 +23,8 @@
.width-height(@i + 1);
}
.width-height(0);
.width-height(0);
.flex-1 {
flex: 1;
}