| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- // 基于uview-plus的table组件
- .u-table {
- width: calc(100% - 32rpx);
- margin: 0 auto;
- border-left:4rpx solid #f2f2f2 !important;
- border-top:4rpx solid #f2f2f2 !important;
- }
- .u-tr {
- // height: 92rpx;
- display: flex;
- // align-items: center;
- align-items: stretch;
- box-sizing: border-box;
- }
- .u-th {
- // height: 100%;
- padding-right: 32rpx !important;
- background-color: #fafafa !important;
- align-items: flex-end;
- justify-content: flex-end;
- box-sizing: border-box;
- max-width: 30%;
- border-bottom:4rpx solid #f2f2f2 !important;
- border-right:4rpx solid #f2f2f2 !important;
- color:#333333 !important;
- font-size: 32rpx !important;
- font-weight: normal !important;
-
- }
- .u-td{
- // height: 100%;
- padding-left: 32rpx !important;
- align-items: flex-start;
- justify-content: flex-start;
- box-sizing: border-box;
- border-bottom:4rpx solid #f2f2f2 !important;
- border-right:4rpx solid #f2f2f2 !important;
- color:#333333 !important;
- font-size: 32rpx !important;
- }
- td {
- flex: 1 !important;
- min-width: 0 !important;
- width: 100% !important;
- height: 100% !important;
- display: flex !important;
- }
- ss-input {
- width: 100% !important;
- }
- ss-select {
- width: 100% !important;
- }
- ss-datetime-picker {
- width: 100% !important;
- }
- .u-toolbar__wrapper__confirm{
- color: #000000 !important;
- }
- // 列表页面通用样式
- .list-page {
- padding: 20rpx;
- background-color: #f5f5f5;
- min-height: 100vh;
- }
- // 列表页面搜索区域
- .search-container {
- display: flex;
- margin: 1rem 0;
- gap: 0.5rem;
- justify-content: flex-end;
- }
|