index.jsx 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. import { Component } from 'react';
  2. import Taro,{getCurrentPages} from '@tarojs/taro';
  3. import {connect} from 'react-redux'
  4. import { View, Image } from '@tarojs/components'
  5. import {set} from '../../actions/counter'
  6. import { login,getUserOrderList } from '../../utils/servers/servers'
  7. import ListBottomStart from "../../components/common/listBottomStart";
  8. import './index.less'
  9. import background from "../../assets/images/background.png";
  10. import NavBar from "../../components/NavBar";
  11. import userIcon from '../../custom-tab-bar/image/user.png';
  12. @connect(({ counter }) => ({
  13. counter
  14. }), (dispatch) => ({
  15. set (value) {
  16. dispatch(set(value))
  17. }
  18. }))
  19. class Index extends Component {
  20. inst = Taro.getCurrentInstance()
  21. constructor(props) {
  22. super(props);
  23. this.state={
  24. list: [],
  25. pageNo: 0,
  26. listState: 'LOADING',
  27. userInfor:Taro.getStorageSync('userInfor') || ''
  28. }
  29. }
  30. async componentDidShow() {
  31. this.props.set(1);
  32. if(!Taro.getStorageSync('token')){
  33. this.setState({
  34. list: []
  35. })
  36. }
  37. }
  38. async componentDidMount() {
  39. await this.getUserOrderList();
  40. }
  41. onPullDownRefresh(){
  42. this.getUserOrderList();
  43. }
  44. onReachBottom(){
  45. this.getUserOrderList(this.state.pageNo+1);
  46. }
  47. async login(nickname){
  48. let token = Taro.getStorageSync('token');
  49. if(!token){
  50. let loginMsg = await Taro.login();
  51. if (loginMsg.code) {
  52. try{
  53. let msg = await login({
  54. code:loginMsg.code,
  55. nickname
  56. });
  57. if(msg.error.length === 0){
  58. Taro.setStorageSync('token', msg.token);
  59. this.getUserOrderList();
  60. }else{
  61. Taro.showToast({title:msg.error[0].message,icon:'none'})
  62. }
  63. }catch (err) {
  64. Taro.showToast({title:'系统错误,请稍后重试',icon:'none'});
  65. console.log(err)
  66. }
  67. } else {
  68. Taro.showToast({title:loginMsg.errMsg,icon:'none'})
  69. console.log('登录失败!' + loginMsg.errMsg)
  70. }
  71. }
  72. }
  73. async getUserOrderList (pageNo = 1){
  74. this.setState({
  75. listState: 'LOADING'
  76. })
  77. let msg = await getUserOrderList({
  78. pageNo: pageNo,
  79. pageSize: 5,
  80. payStatus: 1,
  81. });
  82. if(msg.error.length === 0){
  83. if(msg.data.totalCount === 0){
  84. this.setState({
  85. listState: 'NO_DATA'
  86. })
  87. }else if(msg.data.totalCount === this.state.list.length && pageNo !== 1){
  88. Taro.showToast({title:'没有更多数据了',icon:'none'});
  89. this.setState({
  90. listState: 'NO_MORE_DATA'
  91. })
  92. }else{
  93. this.setState({
  94. list:pageNo === 1 ? msg.data.list : this.state.list.concat(msg.data.list),
  95. pageNo: msg.data.pageNo
  96. },()=>{
  97. if(msg.data.totalCount === this.state.list.length){
  98. this.setState({
  99. listState: 'NO_MORE_DATA'
  100. })
  101. }
  102. })
  103. }
  104. }else{
  105. Taro.showToast({title:msg.error[0].message,icon:'none'});
  106. this.setState({
  107. listState: msg.error[0].field === '403' ? 'NO_DATA' : 'RELOAD'
  108. })
  109. }
  110. Taro.stopPullDownRefresh();
  111. }
  112. render () {
  113. return (
  114. <View className='userPage'>
  115. <NavBar
  116. extClass='NavBar'
  117. title='我的'
  118. background='#7ac7ff'
  119. onHome={()=>{}}
  120. />
  121. <Image src={background} className='background'/>
  122. <View className='userInfor' onClick={()=>{
  123. if(Taro.getStorageSync('token')){
  124. return;
  125. }
  126. Taro.getUserProfile({
  127. desc: '用于用户登录',
  128. success: async (res)=> {
  129. let userInfo = res.userInfo
  130. let nickName = userInfo.nickName
  131. Taro.setStorageSync('userInfor', userInfo);
  132. await this.login(nickName);
  133. await this.getUserOrderList();
  134. getCurrentPages()[getCurrentPages().length - 1].onLoad()
  135. },
  136. fail: ()=>{
  137. Taro.showToast({title:'请同意授权获取用户信息',icon:'none'});
  138. }
  139. })
  140. }}>
  141. <View className='avatar'>
  142. {
  143. Taro.getStorageSync('token') ?
  144. <Image src={this.state.userInfor.avatarUrl} className='login'/> :
  145. <Image className='noLogin' src={userIcon}/>
  146. }
  147. </View>
  148. <View className='nickName'>
  149. {
  150. Taro.getStorageSync('token') ?
  151. this.state.userInfor.nickName :
  152. '点击登录'
  153. }
  154. </View>
  155. </View>
  156. <View className='list'>
  157. {this.state.list.map((v,k)=>(
  158. <View className='item' key={k} onClick={()=>{
  159. Taro.navigateTo({
  160. url:'/pages/details/index?id='+v.projectId
  161. })
  162. }}>
  163. <View className='block'>
  164. <View className='top'/>
  165. <View className='bottom'>
  166. <View className='left'/>
  167. <View className='right'/>
  168. </View>
  169. </View>
  170. <View className='infor'>
  171. <View className='title'>{v.projectName}</View>
  172. <View className='content'>{v.projectTypeName}</View>
  173. </View>
  174. <View className='moneyInfor'>
  175. <View className='money'>¥{parseFloat(v.projectAmount)}</View>
  176. <View className='time'>{v.createTimes}</View>
  177. </View>
  178. </View>
  179. ))}
  180. <ListBottomStart
  181. state={this.state.listState}
  182. reload={()=>{
  183. this.getUserOrderList(this.state.pageNo+1);
  184. }}/>
  185. </View>
  186. </View>
  187. )
  188. }
  189. }
  190. export default Index