123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- /* pages/distribution/order.wxss */
- .container {
- min-height: 100vh;
- background: #f8f8f8;
- }
- /* 标签栏样式 */
- .tabs {
- display: flex;
- background: #fff;
- padding: 0 20rpx;
- position: sticky;
- top: 0;
- z-index: 100;
- border-bottom: 1rpx solid #eee;
- }
- .tab {
- flex: 1;
- height: 80rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 28rpx;
- color: #666;
- position: relative;
- }
- .tab.active {
- color: #ff4d4f;
- font-weight: 500;
- }
- .tab.active::after {
- content: '';
- position: absolute;
- bottom: 0;
- left: 50%;
- transform: translateX(-50%);
- width: 40rpx;
- height: 4rpx;
- background: #ff4d4f;
- border-radius: 2rpx;
- }
- /* 订单列表样式 */
- .order-list {
- height: calc(100vh - 80rpx);
- padding: 20rpx;
- box-sizing: border-box;
- }
- .order-item {
- background: #fff;
- border-radius: 12rpx;
- padding: 20rpx;
- margin-bottom: 20rpx;
- }
- .order-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding-bottom: 20rpx;
- border-bottom: 1rpx solid #f5f5f5;
- }
- .order-time {
- font-size: 24rpx;
- color: #999;
- }
- .order-status {
- font-size: 24rpx;
- color: #ff4d4f;
- }
- .order-status.completed {
- color: #52c41a;
- }
- /* 商品信息样式 */
- .goods-info {
- display: flex;
- padding: 20rpx 0;
- border-bottom: 1rpx solid #f5f5f5;
- }
- .goods-image {
- width: 160rpx;
- height: 160rpx;
- border-radius: 8rpx;
- margin-right: 20rpx;
- }
- .goods-detail {
- flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- .goods-name {
- font-size: 28rpx;
- color: #333;
- margin-bottom: 10rpx;
- }
- .goods-price {
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .price {
- font-size: 32rpx;
- color: #ff4d4f;
- font-weight: 500;
- }
- .quantity {
- font-size: 24rpx;
- color: #999;
- }
- /* 订单底部样式 */
- .order-footer {
- display: flex;
- justify-content: space-between;
- padding-top: 20rpx;
- }
- .commission-info,
- .total-info {
- display: flex;
- align-items: center;
- }
- .label {
- font-size: 24rpx;
- color: #666;
- margin-right: 10rpx;
- }
- .amount {
- font-size: 28rpx;
- color: #ff4d4f;
- font-weight: 500;
- }
- /* 加载更多样式 */
- .loading {
- text-align: center;
- padding: 20rpx 0;
- }
- .loading-text {
- font-size: 24rpx;
- color: #999;
- }
- /* 空状态样式 */
- .empty {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- padding: 100rpx 0;
- }
- .empty-icon {
- width: 200rpx;
- height: 200rpx;
- margin-bottom: 20rpx;
- }
- .empty-text {
- font-size: 28rpx;
- color: #999;
- }
|