|
@@ -0,0 +1,118 @@
|
|
|
+<route lang="json5" type="page">
|
|
|
+{
|
|
|
+ layout: 'default',
|
|
|
+ style: {
|
|
|
+ navigationStyle: 'custom',
|
|
|
+ navigationBarTitleText: 'Withdraw',
|
|
|
+ },
|
|
|
+}
|
|
|
+</route>
|
|
|
+
|
|
|
+<script lang="ts" setup>
|
|
|
+defineOptions({
|
|
|
+ name: 'Withdraw', // 提现
|
|
|
+})
|
|
|
+// 表单数据
|
|
|
+const formData = ref({
|
|
|
+ username: '',
|
|
|
+ password: '',
|
|
|
+})
|
|
|
+function toPage(url: string) {
|
|
|
+ uni.navigateTo({
|
|
|
+ url,
|
|
|
+ })
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<template>
|
|
|
+ <view class="min-h-100vh flex flex-col bg-#FEE750">
|
|
|
+ <wd-navbar
|
|
|
+ custom-class="bg-#FEE750!"
|
|
|
+ :bordered="false"
|
|
|
+
|
|
|
+ safe-area-inset-top left-arrow placeholder fixed
|
|
|
+ title="Withdraw"
|
|
|
+ >
|
|
|
+ <template #right>
|
|
|
+ <text class="text-28rpx" @click="toPage('/pages/wallet/withdrawRecord')">
|
|
|
+ Record
|
|
|
+ </text>
|
|
|
+ </template>
|
|
|
+ </wd-navbar>
|
|
|
+ <view class="px-28rpx pb-28rpx pt-40rpx">
|
|
|
+ <view class="text-28rpx">
|
|
|
+ Wallet Balance
|
|
|
+ </view>
|
|
|
+ <view>
|
|
|
+ <text class="text-28rpx">
|
|
|
+ ৳
|
|
|
+ </text>
|
|
|
+ <text class="text-48rpx font-bold">
|
|
|
+ 5,000
|
|
|
+ </text>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="flex-1 rounded-t-24rpx bg-white p-24rpx">
|
|
|
+ <view class="mb-28rpx text-32rpx">
|
|
|
+ Withdrawal information
|
|
|
+ </view>
|
|
|
+ <wd-form ref="form" :model="formData" custom-class="mb-28rpx">
|
|
|
+ <view class="mb-40rpx space-y-32rpx">
|
|
|
+ <wd-input
|
|
|
+ v-model="formData.username"
|
|
|
+ placeholder="Bank Name"
|
|
|
+ no-border
|
|
|
+ custom-class="bandhu-auth-input-field"
|
|
|
+ />
|
|
|
+ <wd-input
|
|
|
+ v-model="formData.password"
|
|
|
+ placeholder="Bank Account Name"
|
|
|
+ no-border
|
|
|
+ custom-class="bandhu-auth-input-field"
|
|
|
+ />
|
|
|
+ <wd-input
|
|
|
+ v-model="formData.password"
|
|
|
+ placeholder="Bank Account No."
|
|
|
+ no-border
|
|
|
+ custom-class="bandhu-auth-input-field"
|
|
|
+ />
|
|
|
+ <view class="flex items-center gap-20rpx">
|
|
|
+ <wd-input
|
|
|
+ v-model="formData.password"
|
|
|
+ placeholder="Withdrawal Amount"
|
|
|
+ no-border
|
|
|
+ custom-class="flex-1 bandhu-auth-input-field"
|
|
|
+ />
|
|
|
+ <wd-button
|
|
|
+ type="error"
|
|
|
+ plain
|
|
|
+ custom-class="bandhu-auth-secondary-btn"
|
|
|
+ >
|
|
|
+ All Amounts
|
|
|
+ </wd-button>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <wd-button plain block custom-class="h-80rpx!">
|
|
|
+ Submit
|
|
|
+ </wd-button>
|
|
|
+ </wd-form>
|
|
|
+ <view class="text-24rpx text-#5A5A5A line-height-48rpx">
|
|
|
+ Notes:
|
|
|
+ <br>
|
|
|
+ 1.Withdrawal Review Hours Are From 9 AM To 10 PM. Expected to arrive within 2 hours after withdrawal, actual arrival time is subject to the final successful processing time
|
|
|
+ <br>
|
|
|
+ 2.Make sure your bank account details is correct.
|
|
|
+ <br>
|
|
|
+ 3.The withdrawal bank account information must be consistent with the registered account information.
|
|
|
+ <br>
|
|
|
+ 4.The minimum amount for a single withdrawal is ৳300 and the maximum is ৳20,000;
|
|
|
+ <br>
|
|
|
+ 5.Every withdrawal you make will incur a 3% withdrawal handling fee;
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+</template>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+//
|
|
|
+</style>
|