Browse Source

完成我的订单页面设计

LinWuTai 2 months ago
parent
commit
3464d9097b
2 changed files with 33 additions and 3 deletions
  1. 26 3
      pages/order/order.vue
  2. 7 0
      uni.scss

+ 26 - 3
pages/order/order.vue

@@ -22,7 +22,7 @@
 					inactive-color="#000000"
 					active-color="#000000"
 					:bar-style="{'background-color': '#2979ff'}"
-					:gutter="26"
+					:gutter="25"
 					height="45"
 				></u-tabs>
 			</view>
@@ -63,6 +63,11 @@
 				</view>
 			</view>
 		</view>
+		<view class="button-box">
+			<view class="button">
+				申请发票
+			</view>
+		</view>
 	</view>
 </template>
 
@@ -194,9 +199,9 @@
 		},
 		{
 			id: '12',
-			title: '【市场研究】2024年11月广州市中介促成二手住宅市场交易简报',
+			title: '【市场研究】2024年10月广州市中介促成二手住宅市场交易简报',
 			number: '123456789987654321',
-			time: '2023年8月8日',
+			time: '2023年8月1日',
 			price: '9.9',
 			status: 1
 		},
@@ -285,5 +290,23 @@
 				}
 			}
 		}
+	
+		.button-box {
+			text-align: center;
+			font-size: $uni-font-size-1;
+			background-color: $uni-bg-color-grey;
+			@include bottomMagnet();
+			.button {
+				width: 100%;
+				height: 80rpx;
+				line-height: 80rpx;
+				color: $uni-color-primary;
+				letter-spacing: 2rpx;
+				border: 1rpx solid #E9E9E9;
+				&:active {
+					background-color: $uni-bg-color-hover;
+				}
+			}
+		}
 	}
 </style>

+ 7 - 0
uni.scss

@@ -119,3 +119,10 @@ $uni-card-border-radius: 20rpx;
 	z-index: 999;
 }
 
+// 底部悬停
+@mixin bottomMagnet() {
+	position: sticky;
+	bottom: 0;
+	z-index: 999;
+}
+