【smart-app更新】1、版本更新记录;2、复杂表单‘3、引入tabs组件

This commit is contained in:
zhuoda
2024-03-15 22:43:39 +08:00
parent d170a9d189
commit 4b36de6de5
47 changed files with 1182 additions and 1678 deletions

View File

@@ -8,7 +8,6 @@
* @Copyright 1024创新实验室 https://1024lab.net Since 2012
*/
.scroll-view {
white-space: nowrap;
width: 100%;
@@ -96,9 +95,6 @@
margin-top: 60px;
}
.smart-margin-top60 {
margin-top: 60px;
}
/******************************** 下间距 ********************************/
.smart-margin-bottom5 {
@@ -197,3 +193,63 @@
bottom: 0;
}
}
/******************************** 详情 ********************************/
.smart-detail {
.smart-detail-card {
background-color: white;
margin-right: auto;
margin-left: auto;
margin-bottom: 15px;
width: 94%;
border-radius: 16rpx;
box-sizing: border-box;
padding: 16rpx 30rpx;
.smart-detail-card-title {
height: 70rpx;
display: flex;
align-items: center;
font-size: $uni-font-size-lg;
color: #323333;
font-weight: bold;
margin-bottom: 16rpx;
&::before {
content: '';
height: 32rpx;
width: 3px;
border-radius: 4rpx;
margin-right: 10rpx;
background-color: $uni-color-primary;
}
}
.smart-detail-card-cell {
display: flex;
min-height: 80rpx;
padding: 10rpx 0;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
border-top: 1rpx solid #ededed;
.smart-detail-card-label {
color: #666666;
font-size: $uni-font-size-lg;
}
.smart-detail-card-value {
font-size: $uni-font-size-lg;
padding: 20rpx 0;
}
}
}
}