myList.jsx 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. import React, { Component } from "react";
  2. import Taro from "@tarojs/taro";
  3. import { View, Image, Button } from "@tarojs/components";
  4. import Skeleton from "taro-skeleton";
  5. import { getClockState } from "../../utils/tools";
  6. import ListBottomStart from "../../components/common/listBottomStart";
  7. import "./index.less";
  8. import sels from "../../image/sels.png";
  9. import sel from "../../image/sel.png";
  10. class MyList extends Component {
  11. constructor(props) {
  12. super(props);
  13. }
  14. render() {
  15. const { type, sublist = [] } = this.props
  16. return (
  17. <View className="indexPage">
  18. <View className="list">
  19. {
  20. this.props.list.length === 0 && this.props.listState === "LOADING" &&
  21. this.props.typelist?.map((v) => (
  22. <Skeleton key={v} title row={3} avatarShape="square" loading />
  23. ))
  24. }
  25. {this.props.list.length > 0 && this.props.list?.map((v, k) => (
  26. <View
  27. key={k}
  28. className="item"
  29. onClick={(e) => {
  30. e.stopPropagation();
  31. Taro.navigateTo({
  32. url: `/pages/detail/index?id=${v.id}&type=${type}`,
  33. });
  34. }}
  35. >
  36. {
  37. type == 1 &&
  38. <View className='left'
  39. onClick={e => {
  40. e.stopPropagation();
  41. v.processStatus == 1
  42. ? this.props.onChecked(v)
  43. : Taro.showToast({ title: '该打卡信息已审核!', icon: 'none' })
  44. }}>
  45. <Image className='check' src={sublist.includes(v.id) ? sels : sel} />
  46. </View>
  47. }
  48. <View className="infor">
  49. <View className="title">
  50. <View className="aname">
  51. {v.projectName}
  52. </View>
  53. </View>
  54. <View className="userName">
  55. <View className="uNtext">
  56. 负责人:{v.adminName}
  57. </View>
  58. </View>
  59. <View className="userName">
  60. <View className="uNtext">
  61. 打卡人员:{v.name}
  62. </View>
  63. </View>
  64. <View className="userName">
  65. <View className="uNtext">
  66. 创建时间:{v.createTime}
  67. </View>
  68. </View>
  69. <View className="userName">
  70. <View className="uNtext">
  71. 打卡工时:{v.duration}
  72. </View>
  73. </View>
  74. {
  75. v.processStatus == 1 &&
  76. (
  77. type == 0 ?
  78. <View style={{ textAlign: "right", color: "blue", fontSize: 12 }}>已打卡,待审核</View> :
  79. <View className="releaseStarts">
  80. <View className="punchClock">
  81. 去审核
  82. </View>
  83. </View>
  84. )
  85. }
  86. {v.processStatus == 2 && <View style={{ textAlign: "right", color: "green", fontSize: 12 }}>{type == 0 ? "已打卡,已审核" : "已审核"}</View>}
  87. {v.processStatus == 3 && <View style={{ textAlign: "right", color: "red", fontSize: 12 }}>{type == 0 ? "已打卡,已驳回" : "已驳回"}</View>}
  88. </View>
  89. </View>
  90. ))}
  91. <ListBottomStart
  92. state={this.props.listState}
  93. reload={() => {
  94. this.props.onRefresh;
  95. }}
  96. />
  97. </View>
  98. </View>
  99. );
  100. }
  101. }
  102. export default MyList;