myList.jsx 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. import React, { Component } from 'react';
  2. import Taro from '@tarojs/taro';
  3. import { View,Image } from '@tarojs/components'
  4. import Skeleton from 'taro-skeleton'
  5. import ListBottomStart from '../../components/common/listBottomStart';
  6. import './index.less';
  7. class MyList extends Component {
  8. constructor(props) {
  9. super(props);
  10. }
  11. render () {
  12. return (
  13. <View className='indexPage'>
  14. <View className='list'>
  15. {
  16. this.props.list.length === 0 && this.props.listState === 'LOADING' ?
  17. [0,1,2,3].map(v=>(
  18. <Skeleton
  19. key={v}
  20. title
  21. row={3}
  22. avatarShape='square'
  23. loading
  24. />
  25. )):
  26. null
  27. }
  28. {
  29. this.props.list.map((v,k)=>(
  30. <View key={k} className='item' onClick={()=>{
  31. Taro.navigateTo({
  32. url:'/pages/egressDetails/index?id='+v.id+'&index='+k
  33. })
  34. }}>
  35. <View className='infor'>
  36. <View className='title'>
  37. <View className='aname'>{v.aname}提交的公出申请</View>
  38. <View className='createTimes'>{v.createTimes}</View>
  39. </View>
  40. <View className='userName'>
  41. 公出地点:
  42. {v.userName}
  43. </View>
  44. <View className='releaseStarts'>
  45. 开始时间:{v.releaseStarts}
  46. {this.props.type === 0 ? <View className='punchClock' onClick={(e)=>{
  47. e.stopPropagation();
  48. Taro.eventCenter.trigger('GoPunchIn',v)
  49. Taro.switchTab({
  50. url: '/pages/punchClock/index',
  51. })
  52. }}>
  53. 去打卡
  54. </View> : null}
  55. </View>
  56. <View className='releaseEnds'>
  57. 结束时间:{v.releaseEnds}
  58. </View>
  59. <View className='bottomContent'>
  60. {
  61. v.clockIn === 1 ?
  62. <View className='clockIn' style={{color:'#6eb173'}}>
  63. 已打卡
  64. </View> : <View className='clockIn' style={{color:'#dbc037'}}>
  65. 未打卡
  66. </View>
  67. }
  68. <View className='status' style={{
  69. color:v.status === 0 ? '#f31212' :
  70. v.status === 1 ? '#1d4fea' :
  71. v.status === 2 ? '#34de38' : ''
  72. }}>
  73. {
  74. v.status === 0 ? '驳回' :
  75. v.status === 1 ? '审核中' :
  76. v.status === 2 ? '通过' : ''
  77. }
  78. </View>
  79. </View>
  80. </View>
  81. </View>
  82. ))
  83. }
  84. <ListBottomStart
  85. state={this.props.listState}
  86. reload={()=>{
  87. this.props.onRefresh
  88. }}/>
  89. </View>
  90. </View>
  91. )
  92. }
  93. }
  94. export default MyList