ticket.js 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  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. StatusBar,
  16. ScrollView,
  17. ImageBackground
  18. } from 'react-native';
  19. import BasePage from '../BasePage';
  20. import Dimensions from '../utils/dimensions';
  21. import CourseTitle from '../components/CourseTitle';
  22. import PayServer from '../services/Pay';
  23. export default class Ticket extends BasePage {
  24. state = {
  25. ticket_data: []
  26. };
  27. renderItem = (item, index) => {
  28. return (
  29. <View style={{}}>
  30. {item.type === 1 ? (
  31. // 抵用券
  32. <TouchableOpacity
  33. onPress={() => this.userdiscount(item)}
  34. activeOpacity={1}
  35. style={{ width: '100%', justifyContent: 'center', alignItems: 'center' }}
  36. >
  37. <ImageBackground
  38. source={require('../images/ticket/discount-bg.png')}
  39. style={styles.type1}
  40. imageStyle={{ resizeMode: 'contain' }}
  41. >
  42. <View style={{ flex: 0.3 }} />
  43. <View style={styles.topInfo}>
  44. <View style={{ flex: 0.5 }} />
  45. <View style={styles.left2}>
  46. <Text style={styles.price}>¥{item.price}</Text>
  47. <Text style={styles.type}>抵用券</Text>
  48. </View>
  49. <View style={{ flex: 0.2 }} />
  50. <View style={styles.right2}>
  51. <Text style={{ fontSize: 16, color: 'rgba(22, 22, 22, 1)' }}>
  52. 购买{item.num}个单课程的奖励
  53. </Text>
  54. <Text style={styles.greyText}>有效期:{item.time}</Text>
  55. </View>
  56. <View
  57. style={{
  58. flex: 0.4,
  59. marginRight: 50,
  60. marginTop: 20
  61. }}
  62. >
  63. <ImageBackground
  64. source={require('../images/ticket/button-bg.png')}
  65. style={{
  66. width: 85,
  67. height: 27,
  68. justifyContent: 'center'
  69. }}
  70. >
  71. <Text
  72. style={{
  73. fontSize: 16,
  74. color: 'white',
  75. textAlign: 'center',
  76. textAlignVertical: 'center'
  77. }}
  78. >
  79. 立即使用
  80. </Text>
  81. </ImageBackground>
  82. </View>
  83. <View style={{ flex: 1 }} />
  84. </View>
  85. <View style={{ flex: 0.2 }} />
  86. <View style={styles.bottomInfo}>
  87. <Text style={styles.greyText}>注:开通会员时方可使用</Text>
  88. <Text style={styles.blueText}>查看订单</Text>
  89. </View>
  90. </ImageBackground>
  91. </TouchableOpacity>
  92. ) : (
  93. // 优惠券
  94. <ImageBackground
  95. source={require('../images/ticket/coupon-bg.png')}
  96. style={styles.type2}
  97. imageStyle={{ resizeMode: 'center' }}
  98. >
  99. <View style={styles.left2}>
  100. <Text style={styles.price}>¥{item.price}</Text>
  101. <Text style={styles.type}>优惠券</Text>
  102. </View>
  103. <View style={styles.right2}>
  104. <Text style={styles.greyText}>满{item.limit}可用</Text>
  105. <Text style={styles.greyText}>有效期:{item.time}</Text>
  106. </View>
  107. </ImageBackground>
  108. )}
  109. </View>
  110. );
  111. };
  112. render() {
  113. return (
  114. <View style={{ flex: 1 }}>
  115. <StatusBar barStyle={'dark-content'} backgroundColor={'white'} translucent={true} />
  116. <View
  117. style={{
  118. height: 50,
  119. backgroundColor: 'white',
  120. marginTop: 30
  121. }}
  122. >
  123. <CourseTitle
  124. width={this.getWindowWidth()}
  125. title="抵用券"
  126. lefttype={1}
  127. textcolor={'#231F20'}
  128. backPress={() => this.goBack()}
  129. // backPress={() => alert("左侧按钮")}
  130. />
  131. </View>
  132. <View style={{ flex: 0.1, backgroundColor: 'rgba(242, 242, 242, 1)' }} />
  133. <View style={{ flex: 5, backgroundColor: 'rgba(242, 242, 242, 1)' }}>
  134. {this.state.ticket_data.length > 0 ? (
  135. <FlatList
  136. data={this.state.ticket_data}
  137. horizontal={false}
  138. renderItem={({ item, index }) => this.renderItem(item, index)}
  139. keyExtractor={(item, index) => index.toString()}
  140. />
  141. ) : (
  142. <Text
  143. style={{ height: '100%', width: '100%', textAlign: 'center', textAlignVertical: 'center' }}
  144. >
  145. 还没有获取到抵用券
  146. </Text>
  147. )}
  148. </View>
  149. </View>
  150. );
  151. }
  152. componentWillMount() {
  153. //获取用户优惠券信息
  154. this.getVoucher();
  155. }
  156. async getVoucher() {
  157. await PayServer.getVoucher().then((result) => {
  158. console.log('====================================');
  159. console.log('getVoucher', result);
  160. console.log('====================================');
  161. if (result.data.length == 0) {
  162. } else {
  163. this.setState({
  164. ticket_data: result.data
  165. });
  166. }
  167. });
  168. }
  169. userdiscount = (item) => {
  170. if (this.props.navigation.state.params != undefined) {
  171. this.props.navigation.state.params.choseTicketCallBack(item);
  172. this.props.navigation.goBack();
  173. }
  174. };
  175. }
  176. const styles = StyleSheet.create({
  177. type1: {
  178. width: '100%',
  179. height: 154,
  180. flexDirection: 'column',
  181. justifyContent: 'center',
  182. // paddingHorizontal: 70,
  183. alignItems: 'center'
  184. },
  185. type2: {
  186. width: '100%',
  187. height: 100,
  188. flexDirection: 'row',
  189. justifyContent: 'center',
  190. alignItems: 'center'
  191. },
  192. left2: {
  193. flex: 1.2,
  194. flexDirection: 'column'
  195. },
  196. price: {
  197. color: '#ff6d2f',
  198. fontSize: 19,
  199. fontWeight: '500'
  200. },
  201. type: {
  202. color: '#ff6d2f',
  203. fontSize: 18,
  204. fontWeight: '500'
  205. },
  206. right2: {
  207. flex: 3.5,
  208. flexDirection: 'column',
  209. marginTop: 10
  210. },
  211. topInfo: {
  212. flex: 1,
  213. flexDirection: 'row',
  214. alignItems: 'center'
  215. },
  216. bottomInfo: {
  217. width: '90%',
  218. flex: 1,
  219. // paddingHorizontal: 12,
  220. flexDirection: 'row',
  221. alignItems: 'center',
  222. justifyContent: 'space-between'
  223. },
  224. greyText: {
  225. fontSize: 14,
  226. color: '#888'
  227. },
  228. blueText: {
  229. color: '#4a90e2',
  230. fontSize: 14
  231. }
  232. });