userCenter.js 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /*
  2. * 个人中心页面
  3. */
  4. import React, { Component } from "react";
  5. import {
  6. Platform,
  7. StyleSheet,
  8. Text,
  9. View,
  10. Image,
  11. TouchableOpacity,
  12. ImageBackground,
  13. Button,
  14. StatusBar,
  15. Modal,
  16. TouchableHighlight,
  17. DeviceEventEmitter,
  18. ScrollView
  19. } from "react-native";
  20. import BasePage from "./BasePage";
  21. import Dimensions from './utils/dimensions'
  22. export default class userCenter extends BasePage {
  23. state = {
  24. nickName: "初始昵称",
  25. schoolName: "未设置",
  26. ifDiscount: true,
  27. isVIP: false,
  28. btnArr: [
  29. { title: '订单', icon: 'https://facebook.github.io/react-native/docs/assets/favicon.png' },
  30. { title: '优惠券', icon: 'https://facebook.github.io/react-native/docs/assets/favicon.png' },
  31. { title: '活动', icon: 'https://facebook.github.io/react-native/docs/assets/favicon.png' },
  32. { title: '客服', icon: 'https://facebook.github.io/react-native/docs/assets/favicon.png' },
  33. ]
  34. };
  35. render() {
  36. let btnRender = null;
  37. this.state.btnArr.forEach((item) => {
  38. btnRender + (
  39. <View style={styles.btnItem}>
  40. <Image
  41. source={{ uri: item.icon }}
  42. style={styles.btnIcon}
  43. />
  44. <Text
  45. style={styles.btnTitle}
  46. >
  47. {item.title}
  48. </Text>
  49. </View>
  50. )
  51. })
  52. return (
  53. <ScrollView style={{ height: 1000, overflow: 'scroll' }}>
  54. <View style={styles.topSection}>
  55. <ImageBackground
  56. source={
  57. require('./images/userCenter/top-bg.png')
  58. }
  59. style={{width: '100%',height: 203}}
  60. >
  61. <View style={styles.userInfo}>
  62. </View>
  63. <View style={styles.btnBox}>
  64. {btnRender}
  65. </View>
  66. </ImageBackground>
  67. </View>
  68. <View style={styles.discountSection}></View>
  69. <View style={styles.recordSection}></View>
  70. <View style={styles.collectSection}></View>
  71. </ScrollView>
  72. )
  73. }
  74. }
  75. const styles = StyleSheet.create({
  76. topSection: {
  77. height: 250,
  78. width: Dimensions.width,
  79. // backgroundColor: 'red'
  80. },
  81. discountSection: {
  82. width: Dimensions.width,
  83. height: 242,
  84. backgroundColor: 'green'
  85. },
  86. recordSection: {
  87. width: Dimensions.width,
  88. height: 235,
  89. backgroundColor: 'blue'
  90. },
  91. collectSection: {
  92. width: Dimensions.width,
  93. height: 235,
  94. backgroundColor: 'yellow'
  95. }
  96. })