Browse Source

fix:提现按钮提示信息

suwadaimyojin 2 years ago
parent
commit
96747e2973
1 changed files with 25 additions and 0 deletions
  1. 25 0
      pages/users/user_wallet/index.vue

+ 25 - 0
pages/users/user_wallet/index.vue

@@ -38,6 +38,9 @@
 					</view>
 				</view>
 			</view>
+			<view class="op-area">
+				<button formType="submit" @click="tixianEvent" class='sdw bnt bg-color'>{{$t(`提现`)}}</button>
+			</view>
 		</view>
 	</view>
 </template>
@@ -114,6 +117,11 @@
 			this.getIntegralList();
 		},
 		methods: {
+			tixianEvent(){
+				this.$util.Tips({
+								title:this.$t(`请下载app进行提现操作!`)
+							});
+			},
 			/**
 			 * 授权回调
 			 */
@@ -364,4 +372,21 @@
 		align-items: center;
 		justify-content: center;
 	}
+	.op-area{
+		position: fixed;
+		bottom: 0;
+		height: 80rpx;
+		width: 100%;
+		padding:0 20px;
+		background: white;
+	}
+	.op-area button{
+		font-size: 30rpx;
+    font-weight: 600;
+    letter-spacing: 2px;
+		border-radius: 50rpx;
+		height: 60rpx;
+		line-height: 60rpx;
+		color: white;
+	}
 </style>