| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- // 基于uview-plus的table组件
- .u-table {
- width: calc(100% - 32rpx);
- margin: 0 auto 1rem auto;
- border-left:4rpx solid #f2f2f2 !important;
- border-top:4rpx solid #f2f2f2 !important;
- }
- .u-tr {
- height: 92rpx;
- display: flex;
- align-items: center;
- 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;
- }
|