/*
*
*/
import React, { Component } from "react";
import {
Platform,
StyleSheet,
Text,
View,
Image,
TouchableOpacity,
FlatList,
TouchableHighlight,
DeviceEventEmitter,
ScrollView,
Modal,
Animated,
} from "react-native";
import BasePage from "../BasePage";
import Dimensions from '../utils/dimensions';
import TopicTitle from '../components/TopicTitle';
import CourseTitle from "../components/CourseTitle";
export default class Buy extends BasePage {
state = {
shopData: [
{ title: '1个月', originPrice: '199', price: '49', },
{ title: '12个月', originPrice: '499', price: '199' }
],
currentTapindex: 0,
slideAnim: new Animated.Value(-150),
ifDialogShow: false,
payType: 1
};
itemTap = (index) => {
this.setState({
currentTapindex: index
})
}
renderItem = (item, index) => {
return (
{ this.itemTap(index) }} key={index}>
{item.title}
¥{item.price}元
原价:¥{item.originPrice}
)
}
dialogComeout = (index) => {
if (index) {
this.setState({
ifDialogShow: true
}, () => {
Animated.timing(
this.state.slideAnim,
{
toValue: 0,
duration: 300,
}
).start();
})
} else {
Animated.timing(
this.state.slideAnim,
{
toValue: -150,
duration: 200,
}
).start();
setTimeout(() => {
this.setState({
ifDialogShow: false
})
}, 210)
}
}
setPayMethod = (type) => {
this.setState({
payType: type
},()=>{
setTimeout(() => {
this.dialogComeout(false)
}, 100)
})
}
render() {
return (
this.goBack()}
// backPress={() => alert("左侧按钮")}
/>
套餐选择
{this.state.shopData.map((item, index) => this.renderItem(item, index))}
this.dialogComeout(true)}>
支付方式
微信支付
¥{this.state.shopData[this.state.currentTapindex].price}元
支付
{
this.state.ifDialogShow
?
{ this.dialogComeout(false) }}
style={{ ...styles.dialog }}
underlayColor={0.1}
>
{ alert(12311) }}
>
选择支付方式
this.setPayMethod(1)}>
微信支付
{
this.state.payType === 1
?
:
null
}
this.setPayMethod(2)}>
支付宝支付
{
this.state.payType === 2
?
:
null
}
:
null
}
{/* {
alert("Modal has been closed.");
}}
> */}
)
}
}
const styles = StyleSheet.create({
top: {
width: Dimensions.width,
flexDirection: 'column',
alignItems: 'center',
paddingBottom: 20
},
title: {
fontSize: 20,
color: '#a8674d',
marginTop: 22,
},
itemWrapperNormal: {
borderWidth: 1,
borderColor: '#a8674d',
borderRadius: 27,
backgroundColor: '#fff',
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'space-around',
width: '86%',
height: Dimensions.getHeight(53),
marginTop: 20,
},
itemWrapperTap: {
// borderWidth: 1,
// borderColor: '#a8674d',
borderRadius: 27,
backgroundColor: '#ff7525',
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'space-around',
width: '86%',
height: Dimensions.getHeight(53),
marginTop: 20,
},
originPriceTap: {
fontSize: 14,
color: '#fff',
textDecorationLine: 'line-through'
},
originPrice: {
fontSize: 14,
color: '#a8674d',
textDecorationLine: 'line-through'
},
priceTap: {
fontSize: 20,
color: '#fff',
},
price: {
fontSize: 20,
color: '#a8674d',
},
timeLengthTap: {
fontSize: 18,
color: '#fff',
},
timeLength: {
fontSize: 18,
color: '#a8674d',
},
payment: {
flexDirection: 'row',
alignItems: 'center',
width: Dimensions.width,
height: 60,
justifyContent: 'space-between',
alignItems: 'center',
borderColor: '#f3f2f7',
borderTopWidth: 6,
borderBottomWidth: 6,
paddingHorizontal: 33
},
left: {
fontSize: 16
},
right: {
flexDirection: 'row',
alignItems: 'center'
},
method: {
color: '#a8674d',
fontSize: 16,
marginRight: 7
},
bottom: {
width: Dimensions.width,
height: 60,
flexDirection: 'row',
position: 'absolute',
bottom: 0,
},
bottomLeft: {
width: '58%',
textAlign: 'center',
lineHeight: 60,
color: '#a8674d',
fontSize: 20
},
bottomRight: {
width: '42%',
fontSize: 16,
color: '#fff',
backgroundColor: '#f5880d',
alignItems: 'center'
},
bottomRightText: {
fontSize: 20,
color: '#fff',
textAlign: 'center',
lineHeight: 60,
},
dialog: {
width: Dimensions.width,
height: Dimensions.height,
position: 'absolute',
backgroundColor: 'rgba(0,0,0,0.4)',
},
payMethod: {
width: Dimensions.width,
height: 150,
position: 'absolute',
// bottom: 0,
backgroundColor: '#fff',
flexDirection: 'column',
alignItems: 'center',
justifyContent: 'flex-start'
},
payDialog: {
width: '90%',
borderTopWidth: 1,
borderColor: '#e4e4e4',
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'space-between',
flex: 1
},
dialogRow: {
flexDirection: 'row',
alignItems: 'center',
},
payIcon: {
marginRight: 17
},
payText: {
fontSize: 16,
color: '#191919',
alignContent: 'center',
flex: 1,
lineHeight: 50
}
})