zxz 4 năm trước cách đây
mục cha
commit
3a017a327f
1 tập tin đã thay đổi với 30 bổ sung2 xóa
  1. 30 2
      pages/buytickets/confirm.vue

+ 30 - 2
pages/buytickets/confirm.vue

@@ -34,10 +34,20 @@
 			</view>
 		</view>
 		<view class="upload-button" v-show="num">
-			<u-button type="primary" shape="circle" @click="submit">确定</u-button>
+			<view class="reset-btn">
+				充值
+			</view>
+			<view class="submit-btn">
+				<u-button type="primary" shape="circle" @click="submit">确定</u-button>
+			</view>
 		</view>
 		<view class="upload-button" v-show="!num">
-			<u-button type="default" shape="circle" >请选择</u-button>
+			<view class="reset-btn">
+				<u-icon name="shuaxin" custom-prefix="custom-icon" color="#2979ff" size="36"></u-icon>
+			</view>
+			<view class="submit-btn">
+				<u-button class="gray-btn" type="default" shape="circle" >请选择</u-button>
+			</view>
 		</view>
 	</view>
 </template>
@@ -121,5 +131,23 @@
 		left: 30rpx;
 		bottom:30rpx;
 		right: 30rpx;
+		display: flex;
+		.reset-btn{
+			height: 40px;
+			width: 40px;
+			border-radius: 50%;
+			text-align: center;
+			line-height: 40px;
+			border: 1px solid #eee;
+			margin-right: 10px;
+		}
+		.submit-btn{
+			flex: 1;
+			.gray-btn{
+				background-color: #bfbfbf;
+				color:#fff;
+				border-color: #bfbfbf;
+			}
+		}
 	}
 </style>