myList.jsx 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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 RevokeWhite from "../../image/revokeWhite.png";
  8. import "./index.less";
  9. class MyList extends Component {
  10. constructor(props) {
  11. super(props);
  12. }
  13. render() {
  14. let seeView = this.props.seeView;
  15. const { title } = 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={() => {
  30. Taro.navigateTo({
  31. url: "/pages/egressDetails/index?id=" + v.id + "&index=" + k + "&status=" + title,
  32. });
  33. }}
  34. >
  35. {v.publicAgain == 1 && <View className="itype">再次</View>}
  36. {v.status === 3 &&
  37. <View className="revoke">
  38. <Image src={RevokeWhite} className="revokeImg" />
  39. </View>}
  40. <View className="infor">
  41. <View className="title">
  42. <View className="aname">
  43. {v.type === 3 ? v.mainName : v.aname}提交的公出申请
  44. {v.updateStatus == 1 && <View className="aIcon">改</View>}
  45. </View>
  46. <View className="createTimes">{v.createTimes}</View>
  47. </View>
  48. <View className="userName">
  49. <View className="uNtext">
  50. 公出企业:{v.userNames}
  51. </View>
  52. {
  53. title == "我的公出" &&
  54. (v.type === 0 || v.type === 1 || v.type === 2) &&
  55. v.status !== 3 &&
  56. <View
  57. className="reject"
  58. onClick={e => {
  59. e.stopPropagation();
  60. this.props.again(v)
  61. }}
  62. >
  63. 再次公出
  64. </View>
  65. }
  66. {
  67. (title == "我的协单" || title === "查看协单") &&
  68. v.status === 2 &&
  69. v.type === 3 &&
  70. <View
  71. className="reject"
  72. onClick={e => {
  73. e.stopPropagation();
  74. this.props.opens(v.id)
  75. }}
  76. >
  77. 驳回协单
  78. </View>
  79. }
  80. </View>
  81. <View className="userName">
  82. <View className="uNtext">
  83. 公出地点:{v.districtName}
  84. </View>
  85. </View>
  86. <View className="releaseStarts">
  87. 开始时间:{v.releaseStarts}
  88. {this.props.type === 0 && v.status !== 3 ? (
  89. <View
  90. className="punchClock"
  91. onClick={(e) => {
  92. e.stopPropagation();
  93. Taro.eventCenter.trigger("GoPunchIn", v);
  94. Taro.switchTab({
  95. url: "/pages/punchClock/index",
  96. });
  97. }}
  98. >
  99. {(v.clockIn === 1 || v.clockIn === 2) ? "更新打卡" : "去打卡"}
  100. </View>
  101. ) : null}
  102. </View>
  103. <View className="releaseEnds">
  104. 结束时间:{v.releaseEnds}
  105. </View>
  106. {
  107. v.assistAidName != null && v.assistAidName != "" &&
  108. <View className="coOder">
  109. 技术协单:{v.assistAidName.replace(/,/g, " ")}
  110. </View>
  111. }
  112. {
  113. v.assistantName != null && v.assistantName != "" &&
  114. <View className="coOder">
  115. 协单助手:{v.assistantName.replace(/,/g, " ")}
  116. </View>
  117. }
  118. <View className="bottomContent">
  119. <View className="clockIn"
  120. style={{ color: ['red', "#6eb173", '#dbc037'][v.clockIn] }}
  121. >{['未打卡', '已打卡', '异常打卡'][v.clockIn]}</View>
  122. <View
  123. className="status"
  124. style={{ color: getClockState(v.status).color, }}
  125. >
  126. {(v.status === 0 || v.status === 4) && v.rejectName}{getClockState(v.status).title}
  127. </View>
  128. </View>
  129. </View>
  130. </View>
  131. ))}
  132. <ListBottomStart
  133. state={this.props.listState}
  134. reload={() => {
  135. this.props.onRefresh;
  136. }}
  137. />
  138. </View>
  139. </View>
  140. );
  141. }
  142. }
  143. export default MyList;