PersonalInfo.js 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035
  1. /**
  2. * Sample React Native App
  3. * https://github.com/facebook/react-native
  4. *
  5. * @format
  6. * @flow
  7. */
  8. import React, { Component } from "react";
  9. import {
  10. StyleSheet,
  11. Text,
  12. View,
  13. Image,
  14. TouchableOpacity,
  15. ImageBackground,
  16. ToastAndroid,
  17. BackHandler,
  18. StatusBar
  19. } from "react-native";
  20. import BasePage from "./BasePage";
  21. import CourseTitle from "../pages/components/CourseTitle";
  22. import ChosePhoto from "../pages/components/ChosePhoto";
  23. import RegionModal from "../pages/components/RegionModal";
  24. import BirthdayModal from "../pages/components/BirthdayModal";
  25. import GradeSelectionModal from "../pages/components/GradeSelectionModal";
  26. import PersonalInfoDialog from "../pages/components/PersonalInfoDialog";
  27. import http_user from "./services/user";
  28. import wechat from "./utils/wechat";
  29. import commonutil from "./utils/commonutil";
  30. type Props = {};
  31. export default class PersonalInfo extends BasePage {
  32. state = {
  33. ready: false,
  34. file_user_data: new Map(),
  35. user_nickName: "未设置",
  36. schoolName: "未设置",
  37. provinceName: "未设置",
  38. citys: "",
  39. grade_text: "七年级",
  40. grade_index: 6,
  41. birthday_year: 0,
  42. birthday_month: 0,
  43. birthday_day: 0,
  44. birthday_time: 0,
  45. photo_uri: require("./images/userInfo/default_photo.png"),
  46. phone: "",
  47. phone_bind_result: false,
  48. phone_bind_type: 1, //1是绑定,2是修改
  49. phone_bind_color: "red",
  50. wechat_nickName: "",
  51. wechat_bind_color: "red",
  52. show_bind_phone: false
  53. };
  54. render() {
  55. if (!this.state.ready) {
  56. return null;
  57. }
  58. return (
  59. <View style={{ backgroundColor: "#F0F1F5", flex: 1 }}>
  60. <View style={{ width: "100%", height: this.getWindowHeight() }}>
  61. <PersonalInfoDialog
  62. ref={view => (this.dialog = view)}
  63. updateParentState={this.updateState.bind(this)}
  64. />
  65. <ChosePhoto
  66. ref={view => (this.chosephoto = view)}
  67. photoback={this.photoback.bind(this)}
  68. />
  69. <RegionModal
  70. ref={view => (this.regionmodal = view)}
  71. cityscommit={this.cityscommit.bind(this)}
  72. provinceName={this.state.provinceName}
  73. citys={this.state.citys}
  74. />
  75. <GradeSelectionModal
  76. ref={view => (this.gradeselectionModal = view)}
  77. commitGrade={this.commitGrade.bind(this)}
  78. grade_index={this.state.grade_index}
  79. />
  80. <BirthdayModal
  81. ref={view => (this.birthdaymodal = view)}
  82. birthdaycommit={this.birthdaycommit.bind(this)}
  83. year={this.state.birthday_year}
  84. month={this.state.birthday_month}
  85. day={this.state.birthday_day}
  86. />
  87. <StatusBar backgroundColor={"transparent"} translucent={true} />
  88. <View
  89. style={{
  90. flex: 1,
  91. flexDirection: "column"
  92. }}
  93. >
  94. <ImageBackground
  95. source={require("./images/userInfo/top.png")}
  96. style={{
  97. flex: 3,
  98. width: "100%",
  99. backgroundColor: "#F0F1F5",
  100. height: "75%"
  101. }}
  102. imageStyle={{ resizeMode: "cover" }}
  103. >
  104. <View
  105. style={{
  106. flex: 1,
  107. alignItems: "center",
  108. justifyContent: "center",
  109. flexDirection: "column"
  110. }}
  111. >
  112. <CourseTitle
  113. style={{ flex: 5 }}
  114. width={this.getWindowWidth()}
  115. title="个人信息"
  116. lefttype={2}
  117. righttype={0}
  118. textcolor={"white"}
  119. backPress={this.personinfoback.bind(this)}
  120. />
  121. <TouchableOpacity
  122. style={{
  123. flex: 1.3,
  124. backgroundColor: "white",
  125. width: "90%",
  126. bottom: 0,
  127. alignItems: "center",
  128. justifyContent: "flex-end",
  129. bottom: -30,
  130. borderRadius: 10,
  131. overflow: "hidden"
  132. }}
  133. activeOpacity={1}
  134. onPress={() => this.arrowpress(0)}
  135. >
  136. <View
  137. style={{
  138. flex: 1,
  139. borderRadius: 20,
  140. overflow: "hidden",
  141. alignItems: "center",
  142. justifyContent: "center",
  143. flexDirection: "row"
  144. }}
  145. >
  146. <View style={{ flex: 0.5 }} />
  147. <View
  148. style={{
  149. flex: 3,
  150. height: "100%",
  151. alignItems: "center",
  152. justifyContent: "center"
  153. }}
  154. >
  155. <Image
  156. style={{
  157. borderRadius: 50,
  158. width: "80%",
  159. height: "70%"
  160. // borderWidth: 3
  161. // borderColor: "red"
  162. }}
  163. source={this.state.photo_uri}
  164. />
  165. </View>
  166. <View
  167. style={{
  168. flex: 9,
  169. backgroundColor: "white",
  170. height: "100%",
  171. justifyContent: "center"
  172. }}
  173. >
  174. <Text style={{ left: 10, color: "black", fontSize: 16 }}>
  175. 修改头像
  176. </Text>
  177. </View>
  178. <View
  179. style={{
  180. flex: 1.5,
  181. height: "65%",
  182. alignItems: "center",
  183. justifyContent: "center"
  184. }}
  185. >
  186. {this.getArraowImg(0)}
  187. </View>
  188. </View>
  189. </TouchableOpacity>
  190. <View style={{ flex: 0.5 }} />
  191. </View>
  192. </ImageBackground>
  193. <View style={{ flex: 0.2 }} />
  194. <View
  195. style={{
  196. width: "100%",
  197. flex: 3.3,
  198. alignItems: "center",
  199. backgroundColor: "#F0F1F5"
  200. }}
  201. >
  202. <View
  203. style={{
  204. backgroundColor: "rgb(242, 242, 242)",
  205. width: "90%",
  206. alignItems: "center",
  207. justifyContent: "center",
  208. height: "100%",
  209. overflow: "hidden",
  210. borderRadius: 10
  211. }}
  212. >
  213. <View
  214. style={{
  215. width: "100%",
  216. alignItems: "center",
  217. justifyContent: "center",
  218. height: "100%"
  219. }}
  220. >
  221. <TouchableOpacity
  222. style={{
  223. flex: 1,
  224. marginVertical: 1,
  225. width: "100%",
  226. flexDirection: "row",
  227. backgroundColor: "white"
  228. }}
  229. activeOpacity={1}
  230. onPress={() => this.arrowpress(1)}
  231. >
  232. <View
  233. style={{
  234. flex: 2,
  235. alignItems: "center",
  236. justifyContent: "center"
  237. }}
  238. >
  239. {this.choseheadericon(1)}
  240. </View>
  241. <Text style={styles.item_text}>昵称</Text>
  242. <View
  243. style={{
  244. flex: 5,
  245. alignItems: "flex-end"
  246. }}
  247. >
  248. <Text
  249. style={{
  250. flex: 1,
  251. fontSize: 15,
  252. textAlignVertical: "center"
  253. }}
  254. numberOfLines={1}
  255. ellipsizeMode={"tail"}
  256. >
  257. {this.state.user_nickName}
  258. </Text>
  259. </View>
  260. <View
  261. style={{
  262. flex: 1.1,
  263. alignItems: "center",
  264. justifyContent: "center"
  265. }}
  266. >
  267. {this.getArraowImg(1)}
  268. </View>
  269. </TouchableOpacity>
  270. <TouchableOpacity
  271. style={{
  272. flex: 1,
  273. width: "100%",
  274. flexDirection: "row",
  275. backgroundColor: "white",
  276. marginVertical: 1
  277. }}
  278. activeOpacity={1}
  279. onPress={() => this.arrowpress(2)}
  280. >
  281. <View
  282. style={{
  283. flex: 2,
  284. alignItems: "center",
  285. justifyContent: "center"
  286. }}
  287. >
  288. {this.choseheadericon(2)}
  289. </View>
  290. <Text style={styles.item_text}>生日</Text>
  291. <View
  292. style={{
  293. flex: 5,
  294. alignItems: "flex-end"
  295. }}
  296. >
  297. <Text
  298. style={{
  299. flex: 1,
  300. fontSize: 15,
  301. textAlignVertical: "center"
  302. }}
  303. numberOfLines={1}
  304. ellipsizeMode={"tail"}
  305. >
  306. {this.state.birthday_time}
  307. </Text>
  308. </View>
  309. <View
  310. style={{
  311. flex: 1.1,
  312. alignItems: "center",
  313. justifyContent: "center"
  314. }}
  315. >
  316. {this.getArraowImg(2)}
  317. </View>
  318. </TouchableOpacity>
  319. <TouchableOpacity
  320. style={{
  321. flex: 1,
  322. width: "100%",
  323. flexDirection: "row",
  324. backgroundColor: "white",
  325. marginVertical: 1
  326. }}
  327. activeOpacity={1}
  328. onPress={() => this.arrowpress(3)}
  329. >
  330. <View
  331. style={{
  332. flex: 2,
  333. alignItems: "center",
  334. justifyContent: "center"
  335. }}
  336. >
  337. {this.choseheadericon(3)}
  338. </View>
  339. <Text style={styles.item_text}>所在地区</Text>
  340. <View
  341. style={{
  342. flex: 5,
  343. alignItems: "flex-end"
  344. }}
  345. >
  346. <Text
  347. style={{
  348. flex: 1,
  349. fontSize: 15,
  350. textAlignVertical: "center"
  351. }}
  352. numberOfLines={1}
  353. ellipsizeMode={"tail"}
  354. >
  355. {this.state.provinceName}-{this.state.citys}
  356. </Text>
  357. </View>
  358. <View
  359. style={{
  360. flex: 1.1,
  361. alignItems: "center",
  362. justifyContent: "center"
  363. }}
  364. >
  365. {this.getArraowImg(3)}
  366. </View>
  367. </TouchableOpacity>
  368. <TouchableOpacity
  369. style={{
  370. flex: 1,
  371. width: "100%",
  372. flexDirection: "row",
  373. backgroundColor: "white",
  374. marginVertical: 1
  375. }}
  376. activeOpacity={1}
  377. onPress={() => this.arrowpress(4)}
  378. >
  379. <View
  380. style={{
  381. flex: 2,
  382. alignItems: "center",
  383. justifyContent: "center"
  384. }}
  385. >
  386. {this.choseheadericon(4)}
  387. </View>
  388. <Text style={styles.item_text}>我的学校</Text>
  389. <View
  390. style={{
  391. flex: 5,
  392. alignItems: "flex-end"
  393. }}
  394. >
  395. <Text
  396. style={{
  397. flex: 1,
  398. fontSize: 15,
  399. textAlignVertical: "center"
  400. }}
  401. numberOfLines={1}
  402. ellipsizeMode={"tail"}
  403. >
  404. {this.state.schoolName}
  405. </Text>
  406. </View>
  407. <View
  408. style={{
  409. flex: 1.1,
  410. alignItems: "center",
  411. justifyContent: "center"
  412. }}
  413. >
  414. {this.getArraowImg(4)}
  415. </View>
  416. </TouchableOpacity>
  417. {/* <TouchableOpacity
  418. style={{
  419. flex: 1,
  420. marginTop: 1,
  421. width: '100%',
  422. flexDirection: 'row',
  423. backgroundColor: 'white',
  424. marginVertical: 1
  425. }}
  426. activeOpacity={1}
  427. onPress={() => this.arrowpress(5)}
  428. >
  429. <View
  430. style={{
  431. flex: 2,
  432. alignItems: 'center',
  433. justifyContent: 'center'
  434. }}
  435. >
  436. {this.choseheadericon(5)}
  437. </View>
  438. <Text style={styles.item_text}>我的年级</Text>
  439. <View
  440. style={{
  441. flex: 5,
  442. alignItems: 'flex-end'
  443. }}
  444. >
  445. <Text
  446. style={{
  447. flex: 1.1,
  448. fontSize: 15,
  449. textAlignVertical: 'center'
  450. }}
  451. numberOfLines={1}
  452. ellipsizeMode={'tail'}
  453. >
  454. {this.state.grade_text}
  455. </Text>
  456. </View>
  457. <View
  458. style={{
  459. flex: 1.1,
  460. alignItems: 'center',
  461. justifyContent: 'center'
  462. }}
  463. >
  464. {this.getArraowImg(5)}
  465. </View>
  466. </TouchableOpacity> */}
  467. </View>
  468. </View>
  469. </View>
  470. <View style={{ flex: 0.3, backgroundColor: "#F0F1F5" }} />
  471. <View
  472. style={{
  473. flex: 1.5,
  474. backgroundColor: "#F0F1F5",
  475. alignItems: "center",
  476. justifyContent: "center"
  477. }}
  478. >
  479. <View
  480. style={{
  481. width: "90%",
  482. alignItems: "center",
  483. justifyContent: "center",
  484. height: "100%",
  485. overflow: "hidden",
  486. borderRadius: 10
  487. }}
  488. >
  489. <TouchableOpacity
  490. style={{
  491. flex: 1,
  492. width: "100%",
  493. flexDirection: "row",
  494. backgroundColor: "white",
  495. marginVertical: 1
  496. }}
  497. activeOpacity={1}
  498. onPress={() => this.arrowpress(6)}
  499. >
  500. <View
  501. style={{
  502. flex: 2,
  503. alignItems: "center",
  504. justifyContent: "center"
  505. }}
  506. >
  507. {this.choseheadericon(6)}
  508. </View>
  509. <Text style={styles.item_text}>我的手机号</Text>
  510. <View
  511. style={{
  512. flex: 5,
  513. alignItems: "flex-end"
  514. }}
  515. >
  516. <Text
  517. style={{
  518. flex: 1,
  519. fontSize: 15,
  520. textAlignVertical: "center",
  521. color: this.state.phone_bind_color
  522. }}
  523. numberOfLines={1}
  524. ellipsizeMode={"tail"}
  525. >
  526. {this.state.phone}
  527. </Text>
  528. </View>
  529. <View
  530. style={{
  531. flex: 1.1,
  532. alignItems: "center",
  533. justifyContent: "center"
  534. }}
  535. >
  536. {this.getArraowImg(6)}
  537. </View>
  538. </TouchableOpacity>
  539. <TouchableOpacity
  540. style={{
  541. flex: 1,
  542. width: "100%",
  543. flexDirection: "row",
  544. backgroundColor: "white",
  545. marginVertical: 1
  546. }}
  547. activeOpacity={1}
  548. onPress={() => this.arrowpress(7)}
  549. >
  550. <View
  551. style={{
  552. flex: 2,
  553. alignItems: "center",
  554. justifyContent: "center"
  555. }}
  556. >
  557. {this.choseheadericon(7)}
  558. </View>
  559. <Text style={styles.item_text}>我的微信</Text>
  560. <View
  561. style={{
  562. flex: 5,
  563. alignItems: "flex-end"
  564. }}
  565. >
  566. <Text
  567. style={{
  568. flex: 1,
  569. fontSize: 15,
  570. textAlignVertical: "center",
  571. color: this.state.wechat_bind_color
  572. }}
  573. numberOfLines={1}
  574. ellipsizeMode={"tail"}
  575. >
  576. {this.state.wechat_nickName}
  577. </Text>
  578. </View>
  579. <View
  580. style={{
  581. flex: 1.1,
  582. alignItems: "center",
  583. justifyContent: "center"
  584. }}
  585. >
  586. {this.getArraowImg(4)}
  587. </View>
  588. </TouchableOpacity>
  589. </View>
  590. </View>
  591. <View
  592. style={{
  593. width: "100%",
  594. flex: 2.7,
  595. backgroundColor: "#F0F1F5",
  596. flexDirection: "column"
  597. }}
  598. >
  599. <View
  600. style={{
  601. flex: 1,
  602. flexDirection: "row",
  603. alignItems: "center",
  604. justifyContent: "center"
  605. }}
  606. >
  607. <View
  608. style={{
  609. alignItems: "center",
  610. width: "100%",
  611. height: "100%",
  612. backgroundColor: "#F0F1F5",
  613. justifyContent: "center"
  614. }}
  615. >
  616. <View
  617. style={{
  618. flex: 3
  619. }}
  620. />
  621. <TouchableOpacity
  622. activeOpacity={1}
  623. style={{
  624. flex: 2,
  625. width: "100%",
  626. alignItems: "center",
  627. justifyContent: "center",
  628. height: "100%"
  629. }}
  630. onPress={() => this.logout()}
  631. >
  632. <ImageBackground
  633. source={require("./images/userInfo/logoutbg1.png")}
  634. style={{
  635. flex: 1,
  636. width: "100%",
  637. alignItems: "center",
  638. justifyContent: "center",
  639. height: "100%"
  640. }}
  641. imageStyle={{ resizeMode: "contain" }}
  642. >
  643. <Text
  644. style={{
  645. fontSize: 22,
  646. color: "white",
  647. width: "100%",
  648. textAlign: "center"
  649. }}
  650. >
  651. 退出登录
  652. </Text>
  653. </ImageBackground>
  654. </TouchableOpacity>
  655. <View
  656. style={{
  657. flex: 1.5
  658. }}
  659. />
  660. </View>
  661. </View>
  662. </View>
  663. </View>
  664. </View>
  665. {/* <BindPhoneSuccess show={this.state.show_bind_phone} /> */}
  666. </View>
  667. );
  668. }
  669. componentWillMount() {
  670. //获取用户信息
  671. this.getUserInfo();
  672. BackHandler.addEventListener("hardwareBackPress", this.onBackAndroid);
  673. }
  674. componentWillUnmount() {
  675. BackHandler.removeEventListener("hardwareBackPress", this.onBackAndroid);
  676. }
  677. async getUserInfo() {
  678. let userinfo = await global.storage
  679. .load({
  680. key: "userInfo"
  681. })
  682. .then(result => {
  683. this.state.file_user_data = commonutil.jsonToMap(result);
  684. var time = this.formaterDate(this.state.file_user_data.get("birthday"));
  685. this.setState({
  686. schoolName:
  687. this.state.file_user_data.get("school") === ""
  688. ? "未设置"
  689. : this.state.file_user_data.get("school"),
  690. provinceName:
  691. this.state.file_user_data.get("province") === ""
  692. ? "未设置"
  693. : this.state.file_user_data.get("province"),
  694. citys:
  695. this.state.file_user_data.get("city") === ""
  696. ? "未设置"
  697. : this.state.file_user_data.get("city"),
  698. phone: this.state.file_user_data.get("mobile"),
  699. wechat_nickName: this.state.file_user_data.get("wechat_nickName"),
  700. user_nickName: this.state.file_user_data.get("nickName"),
  701. birthday_time: time
  702. });
  703. if (this.state.phone == null || this.state.phone === "") {
  704. this.setState({
  705. phone_bind_color: "red",
  706. phone_bind_type: 1,
  707. phone: "未绑定"
  708. });
  709. } else {
  710. this.setState({
  711. phone_bind_color: "rgba(113, 113, 113, 1)",
  712. phone_bind_type: 2
  713. });
  714. }
  715. if (
  716. this.state.wechat_nickName == null ||
  717. this.state.wechat_nickName === ""
  718. ) {
  719. this.setState({
  720. wechat_bind_color: "red",
  721. wechat_nickName: "未绑定"
  722. });
  723. } else {
  724. this.setState({
  725. wechat_bind_color: "rgba(113, 113, 113, 1)"
  726. });
  727. }
  728. this.setState({
  729. ready: true
  730. });
  731. })
  732. .catch(err => {
  733. console.log("PersonalInfo:ERROR" + err.message);
  734. });
  735. }
  736. onBackAndroid = () => {
  737. if (this.state.show_bind_phone) {
  738. this.setState({
  739. show_bind_phone: false
  740. });
  741. } else {
  742. this.goBack();
  743. }
  744. return true;
  745. };
  746. getArraowImg(type) {
  747. return (
  748. <View
  749. style={{
  750. width: "100%",
  751. height: "100%",
  752. alignItems: "center",
  753. resizeMode: "contain",
  754. justifyContent: "center"
  755. }}
  756. //onPress={() => this.arrowpress(type)}
  757. >
  758. <Image
  759. source={require("./images/userInfo/arrow.png")}
  760. style={{
  761. width: "20%",
  762. height: "30%"
  763. }}
  764. />
  765. </View>
  766. );
  767. }
  768. choseheadericon(type) {
  769. let headerpath;
  770. switch (type) {
  771. case 0:
  772. headerpath = require("./images/userInfo/headportrait.png");
  773. break;
  774. case 1:
  775. headerpath = require("./images/userInfo/nickname.png");
  776. break;
  777. case 2:
  778. headerpath = require("./images/userInfo/birthday.png");
  779. break;
  780. case 3:
  781. headerpath = require("./images/userInfo/location.png");
  782. break;
  783. case 4:
  784. headerpath = require("./images/userInfo/school.png");
  785. break;
  786. case 5:
  787. headerpath = require("./images/userInfo/grade.png");
  788. break;
  789. case 6:
  790. headerpath = require("./images/userInfo/phone.png");
  791. break;
  792. case 7:
  793. headerpath = require("./images/userInfo/wechat.png");
  794. break;
  795. }
  796. // alert(headerpath);
  797. return (
  798. <Image
  799. source={headerpath}
  800. style={{
  801. width: "60%",
  802. height: "60%",
  803. resizeMode: "contain"
  804. }}
  805. />
  806. );
  807. }
  808. arrowpress(type) {
  809. switch (type) {
  810. case 0:
  811. this.chosephoto.setModalVisible(true);
  812. break;
  813. case 1:
  814. this.dialog.setInfo("修改昵称", "昵称");
  815. this.dialog.setModalVisible(true, 1);
  816. break;
  817. case 2:
  818. // alert("生日");
  819. this.birthdaymodal.setModalVisible(true);
  820. break;
  821. case 3:
  822. this.regionmodal.setModalVisible(true);
  823. break;
  824. case 4:
  825. this.dialog.setInfo("我的学校", "学校名称");
  826. this.dialog.setModalVisible(true, 2);
  827. break;
  828. case 5:
  829. this.gradeselectionModal.setModalVisible(true);
  830. break;
  831. //手机号
  832. case 6:
  833. this.props.navigation.navigate("PhoneBind", {
  834. type: this.state.phone_bind_type,
  835. bind_phone_back: this.bind_phone_back.bind(this)
  836. });
  837. break;
  838. //微信
  839. case 7:
  840. wechat.wechatLogin(result => {
  841. console.log("openid:" + result["openid"]);
  842. console.log("unionid:" + result["unionid"]);
  843. console.log("nickname:" + result["nickname"]);
  844. console.log("sex:" + result["sex"]);
  845. console.log("avatar:" + result["province"] + result["city"]);
  846. let opts = {
  847. method: "PUT",
  848. body: {
  849. openId: result["openid"],
  850. unionId: result["unionid"],
  851. avatar: result["province"] + result["city"],
  852. sex: result["sex"],
  853. nickName: result["nickname"]
  854. }
  855. };
  856. http_user.bind_wechat(opts).then(res => {
  857. if (res.code == 200) {
  858. this.setState({
  859. wechat_nickName: res["nickname"],
  860. wechat_bind_color: "rgba(113, 113, 113, 1)"
  861. });
  862. } else {
  863. ToastAndroid.show(res.message, ToastAndroid.SHORT);
  864. }
  865. });
  866. });
  867. break;
  868. }
  869. }
  870. logout() {
  871. //清空存储的用户信息
  872. global.storage.remove({ key: "userInfo" });
  873. this.clearPageToNext("Login");
  874. }
  875. updateState(input_text, type) {
  876. if (type == 1) {
  877. this.setState({ user_nickName: input_text });
  878. this.updateUserInfo({ nickName: input_text });
  879. } else if (type == 2) {
  880. this.setState({ schoolName: input_text });
  881. this.updateUserInfo({ school: input_text });
  882. }
  883. }
  884. cityscommit(provinces_name, citys_name) {
  885. this.setState({
  886. provinceName: provinces_name,
  887. citys: citys_name
  888. });
  889. this.updateUserInfo({ province: provinces_name, city: citys_name });
  890. }
  891. commitGrade(text, index) {
  892. this.setState({
  893. grade_text: text,
  894. grade_index: index
  895. });
  896. this.updateUserInfo({ grade: index + 1 });
  897. }
  898. birthdaycommit(year, month, day) {
  899. this.setState({
  900. birthday_time: year + "年" + month + "月" + day + "日"
  901. });
  902. var date = new Date(year + "-" + month + "-" + day);
  903. this.updateUserInfo({ birthday: date });
  904. }
  905. photoback(photo_uri) {
  906. if (photo_uri == undefined || photo_uri === "" || photo_uri == null) {
  907. return;
  908. }
  909. this.setState({
  910. photo_uri: { uri: photo_uri }
  911. });
  912. }
  913. updateUserInfo(object) {
  914. let opts = {
  915. method: "PUT", //请求方法
  916. body: object //请求体
  917. };
  918. http_user.update_UserInfo(opts).then(res => {
  919. this.state.file_user_data.set("ageGroup", res.data.ageGroup);
  920. this.state.file_user_data.set("avatar", res.data.avatar);
  921. this.state.file_user_data.set("birthday", res.data.birthday);
  922. this.state.file_user_data.set("channel", res.data.channel);
  923. this.state.file_user_data.set("city", res.data.city);
  924. this.state.file_user_data.set("country", res.data.country);
  925. this.state.file_user_data.set("eid", res.data.eid);
  926. this.state.file_user_data.set("gmtCreated", res.data.gmtCreated);
  927. this.state.file_user_data.set("gmtModified", res.data.gmtModified);
  928. this.state.file_user_data.set("mobile", res.data.mobile);
  929. this.state.file_user_data.set("nickName", res.data.nickName);
  930. this.state.file_user_data.set("province", res.data.province);
  931. this.state.file_user_data.set("school", res.data.school);
  932. this.state.file_user_data.set("sex", res.data.sex);
  933. this.state.file_user_data.set("status", res.data.status);
  934. this.state.file_user_data.set("uid", res.data.uid);
  935. this.saveUserInfo(commonutil.mapToJson(this.state.file_user_data));
  936. });
  937. }
  938. bind_phone_back(phone_num, result) {
  939. if (result == true) {
  940. ToastAndroid.show("修改成功", ToastAndroid.SHORT);
  941. this.setState({
  942. phone: phone_num,
  943. phone_bind_result: result,
  944. show_bind_phone: true
  945. });
  946. } else {
  947. // ToastAndroid.show('修改失败', ToastAndroid.SHORT);
  948. }
  949. }
  950. personinfoback() {
  951. this.props.navigation.state.params.infoback();
  952. this.props.navigation.goBack();
  953. }
  954. formaterDate(date) {
  955. var date = new Date(date);
  956. var Y = date.getFullYear() + "";
  957. var M =
  958. (date.getMonth() + 1 < 10
  959. ? "0" + (date.getMonth() + 1)
  960. : date.getMonth() + 1) + "";
  961. var D = (date.getDate() < 10 ? "0" + date.getDate() : date.getDate()) + " ";
  962. //影响选择出生年月日了。
  963. this.setState({
  964. birthday_year: Y,
  965. birthday_month: M,
  966. birthday_day: D
  967. });
  968. return Y + "-" + M + "-" + D;
  969. }
  970. }
  971. class BindPhoneSuccess extends BasePage {
  972. render() {
  973. if (this.props.show) {
  974. return (
  975. <View
  976. style={{
  977. position: "absolute",
  978. width: "100%",
  979. height: "100%",
  980. backgroundColor: "rgba(0, 0, 0, 0.5)"
  981. }}
  982. />
  983. );
  984. } else {
  985. return null;
  986. }
  987. }
  988. }
  989. const styles = StyleSheet.create({
  990. item: {
  991. flex: 1,
  992. width: "100%",
  993. flexDirection: "row",
  994. backgroundColor: "white",
  995. marginTop: 1,
  996. backgroundColor: "red"
  997. },
  998. item_text: {
  999. flex: 3,
  1000. textAlignVertical: "center",
  1001. color: "black",
  1002. fontSize: 16
  1003. }
  1004. });