|
@@ -40,10 +40,6 @@ export default (props) => {
|
40
|
40
|
const goBank = () => {
|
41
|
41
|
Taro.navigateTo({ url: '/pages/bankCard/index' });
|
42
|
42
|
}
|
43
|
|
- const signOut = () => {
|
44
|
|
- setPhone()
|
45
|
|
- Taro.reLaunch({ url: '/pages/login/index' });
|
46
|
|
- }
|
47
|
43
|
return (
|
48
|
44
|
<ScrollView scrollY style={{ height: '100%' }}>
|
49
|
45
|
<View className='personTip'>该账号归{person.nickName||'张三'}所属</View>
|
|
@@ -52,7 +48,7 @@ export default (props) => {
|
52
|
48
|
<View className='headcontent' >
|
53
|
49
|
<Image src={person.avatar||avatar} className='avatar' />
|
54
|
50
|
<View>
|
55
|
|
- <View>{person.nickName||'张三'}</View>
|
|
51
|
+ <View>{person.nickName||''}</View>
|
56
|
52
|
<View>{person.phone}</View>
|
57
|
53
|
</View>
|
58
|
54
|
</View>
|
|
@@ -93,7 +89,6 @@ export default (props) => {
|
93
|
89
|
<View className='userBox'>
|
94
|
90
|
<MyCell icon={feedback} action={goto} user handleAction={handleFeedback}>意见反馈</MyCell>
|
95
|
91
|
</View>
|
96
|
|
- <View className='signOut' onClick={signOut}>退出登录</View>
|
97
|
92
|
</View>
|
98
|
93
|
</ScrollView>
|
99
|
94
|
)
|