| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260 |
- /**
- * 新版钱包充值页面
- * @邠心vbe on 2023/02/02
- */
- import React, { Component } from 'react';
- import { View, Text, ScrollView, StyleSheet, Switch } from 'react-native';
- import apiWallet from '../../api/apiWallet';
- import BadgeSelectItem from '../../components/BadgeSelectItem';
- import Button, { ElevationObject } from '../../components/Button';
- import Dialog from '../../components/Dialog';
- import { PageList } from '../Router';
- import { Balance, PaymentDefault } from './Payment';
- import TopupPaythod from './TopupPaythod';
- export default class TopupNew extends Component {
- constructor(props) {
- super(props);
- this.state = {
- isAuto: false,
- topupList: [],
- selectIndex: 0,
- payType: {},
- balance: 0,
- };
- }
- componentDidMount() {
- this.props.navigation.addListener('focus', () => {
- getUserInfo(info => {
- this.setState({
- balance: info.credit
- })
- }, true);
- });
- this.getTopupList();
- }
- getTopupList() {
- Dialog.showProgressDialog();
- apiWallet.getTopUpAmountList().then(res => {
- Dialog.dismissLoading();
- if (res.data.length > 0) {
- this.setState({
- topupList: res.data
- });
- }
- }).catch(err => {
- Dialog.dismissLoading();
- })
- }
- /**
- * 2C2P充值
- */
- topup2() {
- const params = {
- payAmount: this.state.topupList[this.state.selectIndex]?.key,
- }
- apiWallet.doPaymentV2(params).then(res => {
- Dialog.dismissLoading();
- if (res.data.webPaymentUrl) {
- startPage(PageList.paymentWeb, { amount: params.payAmount, url: res.data.webPaymentUrl, type: 'Topup' });
- } else {
- toastShort('Error 0')
- }
- }).catch(err => {
- Dialog.dismissLoading();
- toastShort(err);
- });
- }
- /**
- * FOMO充值
- */
- topup() {
- const params = {
- payAmount: this.state.topupList[this.state.selectIndex]?.key,
- fomoPayType: this.state.payType.fomoPayType
- }
- //console.log('params',params);
- if (params.payAmount) {
- if (params.fomoPayType == 'PAYNOW' || params.fomoPayType == 'GRABPAY') {
- //PAYNOW支付
- Dialog.showProgressDialog();
- apiWallet.doPayment(params).then(res => {
- Dialog.dismissLoading();
- if (res.data.fomoId && res.data.qrCodeInBase64) {
- startPage(PageList.paynow, { amount: params.payAmount, base64: res.data.qrCodeInBase64 });
- } else if (res.data.url) {
- startPage(PageList.paymentWeb, { amount: params.payAmount, url: res.data.url, type: 'Topup' });
- } else {
- toastShort('Error 0')
- }
- }).catch(err => {
- Dialog.dismissLoading();
- toastShort(err);
- });
- } else {
- //信用卡支付
- startPage(PageList.formCard, { amount: params.payAmount, payType: params.fomoPayType });
- }
- } else {
- toastShort('Error 1')
- }
- }
- render() {
- return (
- <View style={styles.container}>
- <View style={styles.headerView}>
- <Balance balance={this.state.balance}/>
- </View>
- <View style={styles.contentView}>
- <View style={styles.topupView}>
- <WalletTitle>Choose Top Up Value</WalletTitle>
- <View style={styles.topupItems}>
- { this.state.topupList.map((item, index) => {
- return (
- <BadgeSelectItem
- key={index}
- style={[styles.topupItem, index > 0 && styles.right]}
- checked={index == this.state.selectIndex}
- onPress={() => {
- this.setState({
- selectIndex: index
- })
- }}>
- <Text style={[styles.topupText, index == this.state.selectIndex && {color: colorAccent}]}>{currency}{item.key}</Text>
- </BadgeSelectItem>
- );
- })
- }
- </View>
- </View>
- { !PaymentDefault.is2c2p &&
- <View style={styles.topupView}>
- <WalletTitle>Choose Payment Type</WalletTitle>
- <TopupPaythod
- onChange={type => {
- this.setState({
- payType: type
- });
- }}/>
- </View>
- }
- </View>
- <View style={ui.flex1}></View>
- <View style={styles.buttonView}>
- <Button
- text='TOP UP'
- elevation={1.5}
- onClick={() => {
- PaymentDefault.is2c2p
- ? this.topup2()
- : this.topup()
- }}/>
- </View>
- </View>
- );
- }
- }
- export const WalletTitle = ({children}) => {
- return (
- <View style={styles.topupTitle}>
- {/* <Text style={styles.titleLeft}></Text> */}
- <Text style={styles.titleText}>{children}</Text>
- </View>
- );
- }
- const styles = StyleSheet.create({
- container: {
- flex: 1,
- backgroundColor: pageBackground
- },
- headerView: {
- paddingBottom: 76,
- //backgroundColor: colorAccent
- },
- contentView: {
- padding: 16,
- marginTop: -88
- },
- topupView: {
- marginBottom: 16
- },
- topupViewOld: {
- padding: 16,
- borderRadius: 10,
- marginBottom: 16,
- backgroundColor: colorLight
- },
- topupTitle: {
- marginBottom: 16,
- alignItems: 'center',
- flexDirection: 'row'
- },
- titleLeft: {
- width: 4,
- height: 15,
- borderRadius: 16,
- backgroundColor: colorPrimary
- },
- titleText: {
- color: textPrimary,
- fontSize: 16,
- paddingLeft: 0,
- fontWeight: 'bold',
- textShadowOffset: {
- width: 0,
- height: 1
- },
- textShadowRadius: 4,
- textShadowColor: "rgba(0, 0, 0, 0.25)",
- },
- subTitle: {
- color: textPrimary,
- fontSize: 14,
- marginTop: 16,
- marginBottom: 16
- },
- topupItems: {
- paddingBottom: 16,
- alignItems: 'center',
- flexDirection: 'row'
- },
- topupItem: {
- flex: 1,
- alignItems: 'center',
- justifyContent: 'center',
- backgroundColor: colorLight,
- ...ElevationObject(5)
- },
- topupText: {
- height: 60,
- fontSize: 18,
- lineHeight: 60,
- color: textPrimary
- },
- right: {
- marginLeft: 16
- },
- selected: {
- color: textLight,
- borderColor: colorDark,
- backgroundColor: colorPrimary
- },
- autoView: {
- flex: 1,
- color: textPrimary,
- fontSize: 14,
- paddingRight: 32
- },
- buttonView: {
- padding: 16,
- marginTop: 0,
- marginBottom: 16
- }
- })
|