update 复杂的form表单

This commit is contained in:
2021-06-21 10:22:00 +08:00
parent ae85cb9ad3
commit 0056eb58b4
7 changed files with 873 additions and 467 deletions

View File

@@ -12,8 +12,9 @@
height: 100%;
>.ant-tabs {
>.ant-tabs-bar {
>.ant-tabs-nav {
margin-bottom: 0;
padding: 0 @padding-md;
background-color: @white;

View File

@@ -3,13 +3,30 @@
.width-height (@i) when (@i <=20) {
@n : @i * 50;
@px : @n * 1px;
.w-@{n} {
width: @n * 1px !important;
width: @px !important;
}
.w-@{n}-min {
min-width: @px !important;
}
.w-@{n}-max {
max-width: @px !important;
}
.h-@{n} {
height: @n * 1px !important;
height: @px !important;
}
.h-@{n}-min {
min-height: @px !important;
}
.h-@{n}-max {
max-height: @px !important;
}
.w-@{n}-p {