|
@@ -8,7 +8,6 @@
|
|
|
|
|
|
import React, { Component } from 'react';
|
|
import React, { Component } from 'react';
|
|
import {
|
|
import {
|
|
- Platform,
|
|
|
|
StyleSheet,
|
|
StyleSheet,
|
|
Text,
|
|
Text,
|
|
View,
|
|
View,
|
|
@@ -17,8 +16,7 @@ import {
|
|
ImageBackground,
|
|
ImageBackground,
|
|
ToastAndroid,
|
|
ToastAndroid,
|
|
BackHandler,
|
|
BackHandler,
|
|
- StatusBar,
|
|
|
|
- Modal
|
|
|
|
|
|
+ StatusBar
|
|
} from 'react-native';
|
|
} from 'react-native';
|
|
import BasePage from './BasePage';
|
|
import BasePage from './BasePage';
|
|
import CourseTitle from '../pages/components/CourseTitle';
|
|
import CourseTitle from '../pages/components/CourseTitle';
|
|
@@ -27,14 +25,15 @@ import RegionModal from '../pages/components/RegionModal';
|
|
import BirthdayModal from '../pages/components/BirthdayModal';
|
|
import BirthdayModal from '../pages/components/BirthdayModal';
|
|
import GradeSelectionModal from '../pages/components/GradeSelectionModal';
|
|
import GradeSelectionModal from '../pages/components/GradeSelectionModal';
|
|
import PersonalInfoDialog from '../pages/components/PersonalInfoDialog';
|
|
import PersonalInfoDialog from '../pages/components/PersonalInfoDialog';
|
|
-import { NavigationActions, StackActions } from 'react-navigation';
|
|
|
|
-import asyncStorage from './utils/asyncStorage';
|
|
|
|
import http_user from './services/user';
|
|
import http_user from './services/user';
|
|
import wechat from './utils/wechat';
|
|
import wechat from './utils/wechat';
|
|
|
|
+import commonutil from './utils/commonutil';
|
|
type Props = {};
|
|
type Props = {};
|
|
|
|
|
|
export default class PersonalInfo extends BasePage {
|
|
export default class PersonalInfo extends BasePage {
|
|
state = {
|
|
state = {
|
|
|
|
+ ready: false,
|
|
|
|
+ file_user_data: new Map(),
|
|
user_nickName: '未设置',
|
|
user_nickName: '未设置',
|
|
schoolName: '未设置',
|
|
schoolName: '未设置',
|
|
provinceName: '未设置',
|
|
provinceName: '未设置',
|
|
@@ -56,6 +55,9 @@ export default class PersonalInfo extends BasePage {
|
|
};
|
|
};
|
|
|
|
|
|
render() {
|
|
render() {
|
|
|
|
+ if (!this.state.ready) {
|
|
|
|
+ return null;
|
|
|
|
+ }
|
|
return (
|
|
return (
|
|
<View style={{ backgroundColor: '#F0F1F5', flex: 1 }}>
|
|
<View style={{ backgroundColor: '#F0F1F5', flex: 1 }}>
|
|
<View style={{ width: '100%', height: this.getWindowHeight() }}>
|
|
<View style={{ width: '100%', height: this.getWindowHeight() }}>
|
|
@@ -193,7 +195,7 @@ export default class PersonalInfo extends BasePage {
|
|
<View
|
|
<View
|
|
style={{
|
|
style={{
|
|
width: '100%',
|
|
width: '100%',
|
|
- flex: 4,
|
|
|
|
|
|
+ flex: 3.3,
|
|
alignItems: 'center',
|
|
alignItems: 'center',
|
|
backgroundColor: '#F0F1F5'
|
|
backgroundColor: '#F0F1F5'
|
|
}}
|
|
}}
|
|
@@ -415,7 +417,7 @@ export default class PersonalInfo extends BasePage {
|
|
{this.getArraowImg(4)}
|
|
{this.getArraowImg(4)}
|
|
</View>
|
|
</View>
|
|
</TouchableOpacity>
|
|
</TouchableOpacity>
|
|
- <TouchableOpacity
|
|
|
|
|
|
+ {/* <TouchableOpacity
|
|
style={{
|
|
style={{
|
|
flex: 1,
|
|
flex: 1,
|
|
marginTop: 1,
|
|
marginTop: 1,
|
|
@@ -465,7 +467,7 @@ export default class PersonalInfo extends BasePage {
|
|
>
|
|
>
|
|
{this.getArraowImg(5)}
|
|
{this.getArraowImg(5)}
|
|
</View>
|
|
</View>
|
|
- </TouchableOpacity>
|
|
|
|
|
|
+ </TouchableOpacity> */}
|
|
</View>
|
|
</View>
|
|
</View>
|
|
</View>
|
|
</View>
|
|
</View>
|
|
@@ -595,7 +597,7 @@ export default class PersonalInfo extends BasePage {
|
|
<View
|
|
<View
|
|
style={{
|
|
style={{
|
|
width: '100%',
|
|
width: '100%',
|
|
- flex: 2,
|
|
|
|
|
|
+ flex: 2.7,
|
|
backgroundColor: '#F0F1F5',
|
|
backgroundColor: '#F0F1F5',
|
|
flexDirection: 'column'
|
|
flexDirection: 'column'
|
|
}}
|
|
}}
|
|
@@ -619,7 +621,7 @@ export default class PersonalInfo extends BasePage {
|
|
>
|
|
>
|
|
<View
|
|
<View
|
|
style={{
|
|
style={{
|
|
- flex: 1.5
|
|
|
|
|
|
+ flex: 3
|
|
}}
|
|
}}
|
|
/>
|
|
/>
|
|
<TouchableOpacity
|
|
<TouchableOpacity
|
|
@@ -686,26 +688,21 @@ export default class PersonalInfo extends BasePage {
|
|
key: 'userInfo'
|
|
key: 'userInfo'
|
|
})
|
|
})
|
|
.then((result) => {
|
|
.then((result) => {
|
|
- console.log('============PersonalInfo========================');
|
|
|
|
- console.log(result.user.birthday);
|
|
|
|
- console.log('============PersonalInfo========================');
|
|
|
|
- var time = this.formaterDate(result.user.birthday);
|
|
|
|
|
|
+ this.state.file_user_data = commonutil.jsonToMap(result);
|
|
|
|
+ var time = this.formaterDate(this.state.file_user_data.get('birthday'));
|
|
this.setState({
|
|
this.setState({
|
|
schoolName:
|
|
schoolName:
|
|
-
|
|
|
|
- result.user.school === '' ? '未设置' :
|
|
|
|
- result.user.school,
|
|
|
|
|
|
+ this.state.file_user_data.get('school') === ''
|
|
|
|
+ ? '未设置'
|
|
|
|
+ : this.state.file_user_data.get('school'),
|
|
provinceName:
|
|
provinceName:
|
|
-
|
|
|
|
- result.user.province === '' ? '未设置' :
|
|
|
|
- result.user.province,
|
|
|
|
- citys:
|
|
|
|
-
|
|
|
|
- result.user.city === '' ? '未设置' :
|
|
|
|
- result.user.city,
|
|
|
|
- phone: result.user.mobile,
|
|
|
|
- wechat_nickName: result.user.wechat_nickName,
|
|
|
|
- user_nickName: result.user.nickName,
|
|
|
|
|
|
+ this.state.file_user_data.get('province') === ''
|
|
|
|
+ ? '未设置'
|
|
|
|
+ : this.state.file_user_data.get('province'),
|
|
|
|
+ citys: this.state.file_user_data.get('city') === '' ? '未设置' : this.state.file_user_data.get('city'),
|
|
|
|
+ phone: this.state.file_user_data.get('mobile'),
|
|
|
|
+ wechat_nickName: this.state.file_user_data.get('wechat_nickName'),
|
|
|
|
+ user_nickName: this.state.file_user_data.get('nickName'),
|
|
birthday_time: time
|
|
birthday_time: time
|
|
});
|
|
});
|
|
|
|
|
|
@@ -731,11 +728,12 @@ export default class PersonalInfo extends BasePage {
|
|
wechat_bind_color: 'rgba(113, 113, 113, 1)'
|
|
wechat_bind_color: 'rgba(113, 113, 113, 1)'
|
|
});
|
|
});
|
|
}
|
|
}
|
|
- return result;
|
|
|
|
|
|
+ this.setState({
|
|
|
|
+ ready: true
|
|
|
|
+ });
|
|
})
|
|
})
|
|
.catch((err) => {
|
|
.catch((err) => {
|
|
console.log('PersonalInfo:ERROR' + err.message);
|
|
console.log('PersonalInfo:ERROR' + err.message);
|
|
- return null;
|
|
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
|
|
@@ -887,7 +885,7 @@ export default class PersonalInfo extends BasePage {
|
|
|
|
|
|
updateState(input_text, type) {
|
|
updateState(input_text, type) {
|
|
if (type == 1) {
|
|
if (type == 1) {
|
|
- this.setState({ nickName: input_text });
|
|
|
|
|
|
+ this.setState({ user_nickName: input_text });
|
|
this.updateUserInfo({ nickName: input_text });
|
|
this.updateUserInfo({ nickName: input_text });
|
|
} else if (type == 2) {
|
|
} else if (type == 2) {
|
|
this.setState({ schoolName: input_text });
|
|
this.setState({ schoolName: input_text });
|
|
@@ -932,7 +930,23 @@ export default class PersonalInfo extends BasePage {
|
|
body: object //请求体
|
|
body: object //请求体
|
|
};
|
|
};
|
|
http_user.update_UserInfo(opts).then((res) => {
|
|
http_user.update_UserInfo(opts).then((res) => {
|
|
- console.log(res);
|
|
|
|
|
|
+ this.state.file_user_data.set('ageGroup', res.data.ageGroup);
|
|
|
|
+ this.state.file_user_data.set('avatar', res.data.avatar);
|
|
|
|
+ this.state.file_user_data.set('birthday', res.data.birthday);
|
|
|
|
+ this.state.file_user_data.set('channel', res.data.channel);
|
|
|
|
+ this.state.file_user_data.set('city', res.data.city);
|
|
|
|
+ this.state.file_user_data.set('country', res.data.country);
|
|
|
|
+ this.state.file_user_data.set('eid', res.data.eid);
|
|
|
|
+ this.state.file_user_data.set('gmtCreated', res.data.gmtCreated);
|
|
|
|
+ this.state.file_user_data.set('gmtModified', res.data.gmtModified);
|
|
|
|
+ this.state.file_user_data.set('mobile', res.data.mobile);
|
|
|
|
+ this.state.file_user_data.set('nickName', res.data.nickName);
|
|
|
|
+ this.state.file_user_data.set('province', res.data.province);
|
|
|
|
+ this.state.file_user_data.set('school', res.data.school);
|
|
|
|
+ this.state.file_user_data.set('sex', res.data.sex);
|
|
|
|
+ this.state.file_user_data.set('status', res.data.status);
|
|
|
|
+ this.state.file_user_data.set('uid', res.data.uid);
|
|
|
|
+ this.saveUserInfo(commonutil.mapToJson(this.state.file_user_data));
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
|
|
@@ -948,15 +962,9 @@ export default class PersonalInfo extends BasePage {
|
|
formaterDate(date) {
|
|
formaterDate(date) {
|
|
var date = new Date(date);
|
|
var date = new Date(date);
|
|
var Y = date.getFullYear() + '';
|
|
var Y = date.getFullYear() + '';
|
|
- var M =
|
|
|
|
- (
|
|
|
|
- date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) :
|
|
|
|
- date.getMonth() + 1) + '';
|
|
|
|
|
|
+ var M = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1) + '';
|
|
|
|
|
|
- var D =
|
|
|
|
- (
|
|
|
|
- date.getDate() < 10 ? '0' + date.getDate() :
|
|
|
|
- date.getDate()) + ' ';
|
|
|
|
|
|
+ var D = (date.getDate() < 10 ? '0' + date.getDate() : date.getDate()) + ' ';
|
|
|
|
|
|
//影响选择出生年月日了。
|
|
//影响选择出生年月日了。
|
|
this.setState({
|
|
this.setState({
|