Browse Source

提现规则说明

caiyuqin 2 months ago
parent
commit
b1546a9180
1 changed files with 55 additions and 0 deletions
  1. 55 0
      src/pages-B/payment/withdrawal.vue

+ 55 - 0
src/pages-B/payment/withdrawal.vue

@@ -146,6 +146,17 @@ function extractDomain(url: string): string {
     const match = url.match(regex)
     return match ? match[1] : ''
 }
+
+const rules = [
+"可提现额度:账户内所有「已结算佣金」均可提现,最低提现2.00元门槛。",
+"提现次数限制:不限制每日提现次数,可根据账户余额多次发起提现申请。",
+"提现申请时间:平台支持7x24小时随时提交提现申请,无申请时间限制。",
+"到账时效:提现申请提交后,资金将由系统自动处理,**实时到账**(部分银行/支付渠道可能因系统延迟,到账时间略有差异,以实际到账为准)。",
+"手续费:提现每笔额外手续费1.00元。",
+"其他说明:若账户存在违规行为,平台有权暂停提现功能;提现申请提交后,资金已进入处理流程,无法撤销,请确认信息无误后提交。"
+]
+
+
 </script>
 
 <template>
@@ -198,6 +209,18 @@ function extractDomain(url: string): string {
 						<text class="r">1元</text>
 					</view>
 				</template>
+                                   <!-- 温馨提示 -->
+                <view class='card-text'>
+                    <view class='card-text-title'>
+                    提现规则说明
+                    </view>
+                    <view class="rules-list">
+                    <view class="rule-item" v-for="(rule, index) in rules" :key="index">
+                        <text class="rule-index">{{ index + 1 }}.</text>
+                        <text class="rule-text">{{ rule }}</text>
+                    </view>
+                    </view>
+                </view>
 			</view>
 		</view>
 
@@ -237,6 +260,7 @@ function extractDomain(url: string): string {
 	}
 }
 
+
 // 提现至:银行卡选择区域
 .section-item {
 	padding: 20rpx 32rpx;
@@ -355,4 +379,35 @@ function extractDomain(url: string): string {
 		height: 76rpx;
 	}
 }
+.card-text {
+    margin-top:32rpx;
+    .card-text-title {
+      font-size: 32rpx;
+      color: #333;
+      font-weight: 500;
+      margin-bottom: 24rpx;
+    }
+
+    .rules-list {
+      display: flex;
+      flex-direction: column;
+      gap: 6rpx;
+
+      .rule-item {
+        display: flex;
+        align-items: flex-start;
+        gap: 12rpx;
+        line-height: 40rpx;
+        color: #666;
+        font-size: 26rpx;
+
+        .rule-text {
+          flex: 1;
+
+          line-height: 40rpx;
+          text-align: justify;
+        }
+      }
+    }
+  }
 </style>