buy.js 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490
  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. BackHandler,
  17. ToastAndroid,
  18. StatusBar,
  19. Modal,
  20. Animated,
  21. TextInput
  22. } from 'react-native';
  23. import BasePage from '../BasePage';
  24. import Dimensions from '../utils/dimensions';
  25. import TopicTitle from '../components/TopicTitle';
  26. import CourseTitle from '../components/CourseTitle';
  27. import wechat from '../utils/wechat';
  28. import PayServer from '../services/Pay';
  29. import Alipay from 'react-native-yunpeng-alipay';
  30. export default class Buy extends BasePage {
  31. state = {
  32. shopData: [
  33. {
  34. appCode: '',
  35. days: 0,
  36. gmtCreated: 0,
  37. gmtModified: 0,
  38. id: 0,
  39. title: '',
  40. originalPrice: '',
  41. payType: 1,
  42. price: '',
  43. sort: 0
  44. }
  45. ],
  46. currentTapindex: 0,
  47. slideAnim: new Animated.Value(-150),
  48. ifDialogShow: false,
  49. payType: 1,
  50. ticketPrice: 0,
  51. useTicket: false
  52. };
  53. itemTap = (index) => {
  54. this.setState({
  55. currentTapindex: index
  56. });
  57. };
  58. renderItem = (item, index) => {
  59. return (
  60. <TouchableOpacity
  61. style={this.state.currentTapindex === index ? styles.itemWrapperTap : styles.itemWrapperNormal}
  62. onPress={() => {
  63. this.itemTap(index);
  64. }}
  65. key={index}
  66. >
  67. <Text style={this.state.currentTapindex === index ? styles.timeLengthTap : styles.timeLength}>
  68. {item.title}
  69. </Text>
  70. <Text style={this.state.currentTapindex === index ? styles.priceTap : styles.price}>
  71. ¥{item.price}元
  72. </Text>
  73. <Text style={this.state.currentTapindex === index ? styles.originPriceTap : styles.originPrice}>
  74. 原价:¥{item.originalPrice}
  75. </Text>
  76. </TouchableOpacity>
  77. );
  78. };
  79. dialogComeout = (index) => {
  80. if (index) {
  81. this.setState(
  82. {
  83. ifDialogShow: true
  84. },
  85. () => {
  86. Animated.timing(this.state.slideAnim, {
  87. toValue: 0,
  88. duration: 100
  89. }).start();
  90. }
  91. );
  92. } else {
  93. Animated.timing(this.state.slideAnim, {
  94. toValue: -150,
  95. duration: 100
  96. }).start();
  97. setTimeout(() => {
  98. this.setState({
  99. ifDialogShow: false
  100. });
  101. }, 210);
  102. }
  103. };
  104. setPayMethod = (type) => {
  105. this.setState(
  106. {
  107. payType: type
  108. },
  109. () => {
  110. setTimeout(() => {
  111. this.dialogComeout(false);
  112. }, 100);
  113. }
  114. );
  115. };
  116. componentWillMount() {
  117. //获取订购数据信息
  118. this.getMember();
  119. BackHandler.addEventListener('hardwareBackPress', this.onBackAndroid);
  120. }
  121. componentWillUnmount() {
  122. BackHandler.removeEventListener('hardwareBackPress', this.onBackAndroid);
  123. }
  124. onBackAndroid = () => {
  125. if (this.state.ifDialogShow) {
  126. this.dialogComeout(false);
  127. } else {
  128. this.goBack();
  129. }
  130. return true;
  131. };
  132. async getMember() {
  133. await PayServer.getMember().then((result) => {
  134. this.setState({
  135. shopData: result.data
  136. });
  137. });
  138. }
  139. choseTicket = () => {
  140. this.toNextPage('Ticket', { choseTicketCallBack: this.choseTicketCallBack.bind(this) });
  141. };
  142. choseTicketCallBack(item) {
  143. /**item参数
  144. * type: 1,
  145. price: 12,
  146. num: 6,
  147. time: '2019-12-12'
  148. *
  149. */
  150. this.setState({
  151. ticketPrice: item.price,
  152. useTicket: true
  153. });
  154. }
  155. getPrice(old_price) {
  156. return parseInt(old_price) - parseInt(this.state.ticketPrice) < 0
  157. ? 0
  158. : parseInt(old_price) - parseInt(this.state.ticketPrice);
  159. }
  160. pay = () => {
  161. let data = this.state.shopData[this.state.currentTapindex];
  162. switch (this.state.payType) {
  163. case 1:
  164. let params = {
  165. productCode: data.id,
  166. type: '0',
  167. preferentialIds: '',
  168. useVoucher: this.state.useTicket
  169. };
  170. PayServer.payByWechat(params).then((result) => {
  171. wechat.pay(
  172. result.data.partnerid,
  173. result.data.prepayid,
  174. result.data.noncestr,
  175. result.data.timestamp,
  176. result.data.package,
  177. result.data.sign,
  178. (result) => {
  179. ToastAndroid.show('支付成功', ToastAndroid.SHORT);
  180. // console.log('wechat result', result);
  181. }
  182. );
  183. });
  184. break;
  185. case 2:
  186. //阿里支付
  187. let params_ali = {
  188. productCode: data.id,
  189. type: '0',
  190. preferentialIds: '',
  191. useVoucher: this.state.useTicket
  192. };
  193. //先请求后台给支付数据
  194. PayServer.payByAli(params_ali).then((result) => {
  195. Alipay.pay(result.data.response).then(
  196. function(data) {
  197. //成功
  198. console.log(data);
  199. },
  200. function(err) {
  201. //失败
  202. console.log(err);
  203. }
  204. );
  205. });
  206. break;
  207. }
  208. };
  209. render() {
  210. return (
  211. <View style={{ flex: 1 }}>
  212. <StatusBar barStyle={'dark-content'} backgroundColor={'white'} translucent={true} />
  213. <View
  214. style={{
  215. height: 50,
  216. backgroundColor: 'white',
  217. marginTop: 30
  218. }}
  219. >
  220. <CourseTitle
  221. width={this.getWindowWidth()}
  222. title="VIP购买"
  223. lefttype={1}
  224. textcolor={'#231F20'}
  225. backPress={() => this.goBack()}
  226. // backPress={() => alert("左侧按钮")}
  227. />
  228. </View>
  229. <View style={{ flex: 0.02, backgroundColor: 'rgba(242, 242, 242, 1)' }} />
  230. <View style={styles.top}>
  231. <Text style={styles.title}>套餐选择</Text>
  232. <View>{this.state.shopData.map((item, index) => this.renderItem(item, index))}</View>
  233. </View>
  234. <View style={{ flex: 0.01, backgroundColor: 'rgba(242, 242, 242, 1)' }} />
  235. <TouchableOpacity style={styles.payment} activeOpacity={1} onPress={this.choseTicket.bind(this)}>
  236. <Text style={styles.left}>使用抵用券</Text>
  237. <View style={styles.right}>
  238. <Text style={styles.method}>-¥{this.state.ticketPrice}元</Text>
  239. <Image source={require('../images/common/arrowRight.png')} />
  240. </View>
  241. </TouchableOpacity>
  242. <TouchableOpacity style={styles.payment} activeOpacity={1} onPress={() => this.dialogComeout(true)}>
  243. <Text style={styles.left}>支付方式</Text>
  244. <View style={styles.right}>
  245. {this.state.payType === 1 ? (
  246. <Text style={styles.method}>微信支付</Text>
  247. ) : (
  248. <Text style={styles.method}>支付宝支付</Text>
  249. )}
  250. <Image source={require('../images/common/arrowRight.png')} />
  251. </View>
  252. </TouchableOpacity>
  253. <View style={{ flex: 0.01, backgroundColor: 'rgba(242, 242, 242, 1)' }} />
  254. <View>
  255. <Text style={{ fontSize: 14, width: '100%', textAlignVertical: 'center', textAlign: 'center' }}>
  256. 开通会员即时生效,有任何问题请联系我们。
  257. </Text>
  258. </View>
  259. <View style={styles.bottom}>
  260. {this.state.ticketPrice > 0 ? (
  261. (price = (
  262. <Text style={styles.bottomLeft}>
  263. ¥{this.getPrice(this.state.shopData[this.state.currentTapindex].price)}元
  264. </Text>
  265. ))
  266. ) : (
  267. <Text style={styles.bottomLeft}>¥{this.state.shopData[this.state.currentTapindex].price}元</Text>
  268. )}
  269. <TouchableOpacity style={styles.bottomRight} onPress={this.pay.bind(this)}>
  270. <Text style={styles.bottomRightText}>支付</Text>
  271. </TouchableOpacity>
  272. </View>
  273. {this.state.ifDialogShow ? (
  274. <TouchableHighlight
  275. onPress={() => {
  276. this.dialogComeout(false);
  277. }}
  278. style={{ ...styles.dialog }}
  279. underlayColor={0.1}
  280. >
  281. <Animated.View style={{ ...styles.payMethod, bottom: this.state.slideAnim }} onPress={() => {}}>
  282. <Text style={styles.payText}>选择支付方式</Text>
  283. <TouchableOpacity
  284. activeOpacity={0.9}
  285. style={styles.payDialog}
  286. onPress={() => this.setPayMethod(1)}
  287. >
  288. <View style={styles.dialogRow}>
  289. <Image style={styles.payIcon} source={require('../images/common/wxPay.png')} />
  290. <Text>微信支付</Text>
  291. </View>
  292. {this.state.payType === 1 ? (
  293. <Image source={require('../images/common/check.png')} />
  294. ) : null}
  295. </TouchableOpacity>
  296. <TouchableOpacity
  297. activeOpacity={0.9}
  298. style={styles.payDialog}
  299. onPress={() => this.setPayMethod(2)}
  300. >
  301. <View style={styles.dialogRow}>
  302. <Image style={styles.payIcon} source={require('../images/common/aliPay.png')} />
  303. <Text>支付宝支付</Text>
  304. </View>
  305. {this.state.payType === 2 ? (
  306. <Image source={require('../images/common/check.png')} />
  307. ) : null}
  308. </TouchableOpacity>
  309. {/* <TextInput style={styles.payDialog} /> */}
  310. <View style={{ flex: 0.2 }} />
  311. </Animated.View>
  312. </TouchableHighlight>
  313. ) : null}
  314. {/* <Modal
  315. animationType="none "
  316. transparent={true}
  317. visible={true}
  318. onRequestClose={() => {
  319. alert("Modal has been closed.");
  320. }}
  321. ></Modal> */}
  322. </View>
  323. );
  324. }
  325. }
  326. const styles = StyleSheet.create({
  327. top: {
  328. width: Dimensions.width,
  329. flexDirection: 'column',
  330. alignItems: 'center',
  331. paddingBottom: 20
  332. },
  333. title: {
  334. fontSize: 20,
  335. color: '#a8674d',
  336. marginTop: 22
  337. },
  338. itemWrapperNormal: {
  339. borderWidth: 1,
  340. borderColor: '#a8674d',
  341. borderRadius: 27,
  342. backgroundColor: '#fff',
  343. flexDirection: 'row',
  344. alignItems: 'center',
  345. justifyContent: 'space-around',
  346. width: '86%',
  347. height: Dimensions.getHeight(53),
  348. marginTop: 20
  349. },
  350. itemWrapperTap: {
  351. // borderWidth: 1,
  352. // borderColor: '#a8674d',
  353. borderRadius: 27,
  354. backgroundColor: '#ff7525',
  355. flexDirection: 'row',
  356. alignItems: 'center',
  357. justifyContent: 'space-around',
  358. width: '86%',
  359. height: Dimensions.getHeight(53),
  360. marginTop: 20
  361. },
  362. originPriceTap: {
  363. fontSize: 14,
  364. color: '#fff',
  365. textDecorationLine: 'line-through'
  366. },
  367. originPrice: {
  368. fontSize: 14,
  369. color: '#a8674d',
  370. textDecorationLine: 'line-through'
  371. },
  372. priceTap: {
  373. fontSize: 20,
  374. color: '#fff'
  375. },
  376. price: {
  377. fontSize: 20,
  378. color: '#a8674d'
  379. },
  380. timeLengthTap: {
  381. fontSize: 18,
  382. color: '#fff'
  383. },
  384. timeLength: {
  385. fontSize: 18,
  386. color: '#a8674d'
  387. },
  388. payment: {
  389. flexDirection: 'row',
  390. alignItems: 'center',
  391. width: Dimensions.width,
  392. height: 60,
  393. justifyContent: 'space-between',
  394. alignItems: 'center',
  395. borderColor: '#f3f2f7',
  396. borderTopWidth: 6,
  397. borderBottomWidth: 6,
  398. paddingHorizontal: 33
  399. },
  400. left: {
  401. fontSize: 16
  402. },
  403. right: {
  404. flexDirection: 'row',
  405. alignItems: 'center'
  406. },
  407. method: {
  408. color: '#a8674d',
  409. fontSize: 16,
  410. marginRight: 7
  411. },
  412. bottom: {
  413. width: Dimensions.width,
  414. height: 60,
  415. flexDirection: 'row',
  416. position: 'absolute',
  417. bottom: 0
  418. },
  419. bottomLeft: {
  420. width: '58%',
  421. textAlign: 'center',
  422. lineHeight: 60,
  423. color: '#a8674d',
  424. fontSize: 20
  425. },
  426. bottomRight: {
  427. width: '42%',
  428. fontSize: 16,
  429. color: '#fff',
  430. backgroundColor: '#f5880d',
  431. alignItems: 'center'
  432. },
  433. bottomRightText: {
  434. fontSize: 20,
  435. color: '#fff',
  436. textAlign: 'center',
  437. lineHeight: 60
  438. },
  439. dialog: {
  440. width: Dimensions.width,
  441. height: Dimensions.height,
  442. position: 'absolute',
  443. backgroundColor: 'rgba(0,0,0,0.4)'
  444. },
  445. payMethod: {
  446. width: Dimensions.width,
  447. height: 150,
  448. position: 'absolute',
  449. // bottom: 0,
  450. backgroundColor: '#fff',
  451. flexDirection: 'column',
  452. alignItems: 'center',
  453. justifyContent: 'flex-start'
  454. },
  455. payDialog: {
  456. width: '90%',
  457. borderTopWidth: 1,
  458. borderColor: '#e4e4e4',
  459. flexDirection: 'row',
  460. alignItems: 'center',
  461. justifyContent: 'space-between',
  462. flex: 1
  463. },
  464. dialogRow: {
  465. flex: 1,
  466. flexDirection: 'row',
  467. alignItems: 'center'
  468. },
  469. payIcon: {
  470. marginRight: 17
  471. },
  472. payText: {
  473. fontSize: 16,
  474. color: '#191919',
  475. alignContent: 'center',
  476. flex: 1,
  477. lineHeight: 50
  478. }
  479. });