buy.js 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341
  1. /*
  2. *
  3. */
  4. import React, { Component } from "react";
  5. import {
  6. Platform,
  7. StyleSheet,
  8. Text,
  9. View,
  10. Image,
  11. TouchableOpacity,
  12. FlatList,
  13. TouchableHighlight,
  14. DeviceEventEmitter,
  15. ScrollView,
  16. Modal,
  17. Animated,
  18. TextInput
  19. } from "react-native";
  20. import BasePage from "../BasePage";
  21. import Dimensions from '../utils/dimensions';
  22. import TopicTitle from '../components/TopicTitle';
  23. import CourseTitle from "../components/CourseTitle";
  24. export default class Buy extends BasePage {
  25. state = {
  26. shopData: [
  27. { title: '1个月', originPrice: '199', price: '49', },
  28. { title: '12个月', originPrice: '499', price: '199' }
  29. ],
  30. currentTapindex: 0,
  31. slideAnim: new Animated.Value(-150),
  32. ifDialogShow: false,
  33. payType: 1
  34. };
  35. itemTap = (index) => {
  36. this.setState({
  37. currentTapindex: index
  38. })
  39. }
  40. renderItem = (item, index) => {
  41. return (
  42. <TouchableOpacity style={this.state.currentTapindex === index ? styles.itemWrapperTap : styles.itemWrapperNormal} onPress={() => { this.itemTap(index) }} key={index}>
  43. <Text style={this.state.currentTapindex === index ? styles.timeLengthTap : styles.timeLength}>{item.title}</Text>
  44. <Text style={this.state.currentTapindex === index ? styles.priceTap : styles.price}>¥{item.price}元</Text>
  45. <Text style={this.state.currentTapindex === index ? styles.originPriceTap : styles.originPrice}>原价:¥{item.originPrice}</Text>
  46. </TouchableOpacity>
  47. )
  48. }
  49. dialogComeout = (index) => {
  50. if (index) {
  51. this.setState({
  52. ifDialogShow: true
  53. }, () => {
  54. Animated.timing(
  55. this.state.slideAnim,
  56. {
  57. toValue: 0,
  58. duration: 300,
  59. }
  60. ).start();
  61. })
  62. } else {
  63. Animated.timing(
  64. this.state.slideAnim,
  65. {
  66. toValue: -150,
  67. duration: 200,
  68. }
  69. ).start();
  70. setTimeout(() => {
  71. this.setState({
  72. ifDialogShow: false
  73. })
  74. }, 210)
  75. }
  76. }
  77. setPayMethod = (type) => {
  78. this.setState({
  79. payType: type
  80. },()=>{
  81. setTimeout(() => {
  82. this.dialogComeout(false)
  83. }, 100)
  84. })
  85. }
  86. render() {
  87. return (
  88. <View style={{ flex: 1 }}>
  89. <View
  90. style={{
  91. height: 30,
  92. marginTop: 30
  93. }}
  94. >
  95. <CourseTitle
  96. width={this.getWindowWidth()}
  97. title="VIP购买"
  98. lefttype={1}
  99. textcolor={"#231F20"}
  100. backPress={() => this.goBack()}
  101. // backPress={() => alert("左侧按钮")}
  102. />
  103. </View>
  104. <View style={styles.top}>
  105. <Text style={styles.title}>套餐选择</Text>
  106. <View>
  107. {this.state.shopData.map((item, index) => this.renderItem(item, index))}
  108. </View>
  109. </View>
  110. <TouchableOpacity style={styles.payment} onPress={() => this.dialogComeout(true)}>
  111. <Text style={styles.left}>支付方式</Text>
  112. <View style={styles.right}>
  113. <Text style={styles.method}>微信支付</Text>
  114. <Image source={require('../images/common/arrowRight.png')} />
  115. </View>
  116. </TouchableOpacity>
  117. <View style={styles.bottom}>
  118. <Text style={styles.bottomLeft}>¥{this.state.shopData[this.state.currentTapindex].price}元</Text>
  119. <TouchableOpacity style={styles.bottomRight}>
  120. <Text style={styles.bottomRightText}>支付</Text>
  121. </TouchableOpacity>
  122. </View>
  123. {
  124. this.state.ifDialogShow
  125. ?
  126. <TouchableHighlight
  127. onPress={() => { this.dialogComeout(false) }}
  128. style={{ ...styles.dialog }}
  129. underlayColor={0.1}
  130. >
  131. <Animated.View
  132. style={{ ...styles.payMethod, bottom: this.state.slideAnim }}
  133. onPress={() => { alert(12311) }}
  134. >
  135. <Text style={styles.payText}>选择支付方式</Text>
  136. <TouchableOpacity activeOpacity={0.9} style={styles.payDialog} onPress={() => this.setPayMethod(1)}>
  137. <View style={styles.dialogRow}>
  138. <Image style={styles.payIcon} source={require('../images/common/wxPay.png')} />
  139. <Text>微信支付</Text>
  140. </View>
  141. {
  142. this.state.payType === 1
  143. ?
  144. <Image source={require('../images/common/check.png')} />
  145. :
  146. null
  147. }
  148. </TouchableOpacity>
  149. {/* <TouchableOpacity activeOpacity={0.9} style={styles.payDialog} onPress={() => this.setPayMethod(2)}>
  150. <View style={styles.dialogRow}>
  151. <Image style={styles.payIcon} source={require('../images/common/aliPay.png')} />
  152. <Text>支付宝支付</Text>
  153. </View>
  154. {
  155. this.state.payType === 2
  156. ?
  157. <Image source={require('../images/common/check.png')} />
  158. :
  159. null
  160. }
  161. </TouchableOpacity> */}
  162. <TextInput style={styles.payDialog} />
  163. </Animated.View>
  164. </TouchableHighlight>
  165. :
  166. null
  167. }
  168. {/* <Modal
  169. animationType="none "
  170. transparent={true}
  171. visible={true}
  172. onRequestClose={() => {
  173. alert("Modal has been closed.");
  174. }}
  175. ></Modal> */}
  176. </View>
  177. )
  178. }
  179. }
  180. const styles = StyleSheet.create({
  181. top: {
  182. width: Dimensions.width,
  183. flexDirection: 'column',
  184. alignItems: 'center',
  185. paddingBottom: 20
  186. },
  187. title: {
  188. fontSize: 20,
  189. color: '#a8674d',
  190. marginTop: 22,
  191. },
  192. itemWrapperNormal: {
  193. borderWidth: 1,
  194. borderColor: '#a8674d',
  195. borderRadius: 27,
  196. backgroundColor: '#fff',
  197. flexDirection: 'row',
  198. alignItems: 'center',
  199. justifyContent: 'space-around',
  200. width: '86%',
  201. height: Dimensions.getHeight(53),
  202. marginTop: 20,
  203. },
  204. itemWrapperTap: {
  205. // borderWidth: 1,
  206. // borderColor: '#a8674d',
  207. borderRadius: 27,
  208. backgroundColor: '#ff7525',
  209. flexDirection: 'row',
  210. alignItems: 'center',
  211. justifyContent: 'space-around',
  212. width: '86%',
  213. height: Dimensions.getHeight(53),
  214. marginTop: 20,
  215. },
  216. originPriceTap: {
  217. fontSize: 14,
  218. color: '#fff',
  219. textDecorationLine: 'line-through'
  220. },
  221. originPrice: {
  222. fontSize: 14,
  223. color: '#a8674d',
  224. textDecorationLine: 'line-through'
  225. },
  226. priceTap: {
  227. fontSize: 20,
  228. color: '#fff',
  229. },
  230. price: {
  231. fontSize: 20,
  232. color: '#a8674d',
  233. },
  234. timeLengthTap: {
  235. fontSize: 18,
  236. color: '#fff',
  237. },
  238. timeLength: {
  239. fontSize: 18,
  240. color: '#a8674d',
  241. },
  242. payment: {
  243. flexDirection: 'row',
  244. alignItems: 'center',
  245. width: Dimensions.width,
  246. height: 60,
  247. justifyContent: 'space-between',
  248. alignItems: 'center',
  249. borderColor: '#f3f2f7',
  250. borderTopWidth: 6,
  251. borderBottomWidth: 6,
  252. paddingHorizontal: 33
  253. },
  254. left: {
  255. fontSize: 16
  256. },
  257. right: {
  258. flexDirection: 'row',
  259. alignItems: 'center'
  260. },
  261. method: {
  262. color: '#a8674d',
  263. fontSize: 16,
  264. marginRight: 7
  265. },
  266. bottom: {
  267. width: Dimensions.width,
  268. height: 60,
  269. flexDirection: 'row',
  270. position: 'absolute',
  271. bottom: 0,
  272. },
  273. bottomLeft: {
  274. width: '58%',
  275. textAlign: 'center',
  276. lineHeight: 60,
  277. color: '#a8674d',
  278. fontSize: 20
  279. },
  280. bottomRight: {
  281. width: '42%',
  282. fontSize: 16,
  283. color: '#fff',
  284. backgroundColor: '#f5880d',
  285. alignItems: 'center'
  286. },
  287. bottomRightText: {
  288. fontSize: 20,
  289. color: '#fff',
  290. textAlign: 'center',
  291. lineHeight: 60,
  292. },
  293. dialog: {
  294. width: Dimensions.width,
  295. height: Dimensions.height,
  296. position: 'absolute',
  297. backgroundColor: 'rgba(0,0,0,0.4)',
  298. },
  299. payMethod: {
  300. width: Dimensions.width,
  301. height: 150,
  302. position: 'absolute',
  303. // bottom: 0,
  304. backgroundColor: '#fff',
  305. flexDirection: 'column',
  306. alignItems: 'center',
  307. justifyContent: 'flex-start'
  308. },
  309. payDialog: {
  310. width: '90%',
  311. borderTopWidth: 1,
  312. borderColor: '#e4e4e4',
  313. flexDirection: 'row',
  314. alignItems: 'center',
  315. justifyContent: 'space-between',
  316. flex: 1
  317. },
  318. dialogRow: {
  319. flexDirection: 'row',
  320. alignItems: 'center',
  321. },
  322. payIcon: {
  323. marginRight: 17
  324. },
  325. payText: {
  326. fontSize: 16,
  327. color: '#191919',
  328. alignContent: 'center',
  329. flex: 1,
  330. lineHeight: 50
  331. }
  332. })