list.jsx 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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 Select from "../applyReimbursement/select";
  8. import "./index.less";
  9. class List extends Component {
  10. constructor(props) {
  11. super(props);
  12. this.state = {
  13. id: "",
  14. visible: "",
  15. };
  16. }
  17. onClose() {
  18. this.setState({
  19. visible: "",
  20. })
  21. }
  22. render() {
  23. return (
  24. <View className="indexPage">
  25. <View className="list">
  26. {
  27. this.props.list.length === 0 && this.props.listState === "LOADING" &&
  28. this.props.typelist?.map((v) => (
  29. <Skeleton key={v} title row={3} avatarShape="square" loading />
  30. ))
  31. }
  32. {this.props.list.length > 0 && this.props.list?.map((v, k) => (
  33. <View key={k} className="item">
  34. <View className="infor">
  35. <View className="title">
  36. <View className="aname">
  37. {v.aname}提交的公出申请
  38. {v.updateStatus == 1 && <View className="aIcon">改</View>}
  39. </View>
  40. <View className="createTimes">{v.createTimes}</View>
  41. </View>
  42. <View className="userName">
  43. <View className="uNtext">
  44. 公出企业:{v.userNames}
  45. </View>
  46. </View>
  47. <View className="userName">
  48. <View className="uNtext">
  49. 公出地点:{v.districtName}
  50. </View>
  51. </View>
  52. <View className="releaseStarts">
  53. 开始时间:{v.releaseStarts}
  54. </View>
  55. {
  56. v.status == 2 &&
  57. <View
  58. className="punchClock"
  59. onClick={() => {
  60. this.props.initiate(v.id)
  61. }}
  62. >
  63. 发起报销
  64. </View>
  65. }
  66. <View className="releaseEnds">
  67. 结束时间:{v.releaseEnds}
  68. </View>
  69. {
  70. v.assistAidName != null && v.assistAidName != "" &&
  71. <View className="coOder">
  72. 技术协单:{v.assistAidName.replace(/,/g, " ")}
  73. </View>
  74. }
  75. {
  76. v.assistantName != null && v.assistantName != "" &&
  77. <View className="coOder">
  78. 协单助手:{v.assistantName.replace(/,/g, " ")}
  79. </View>
  80. }
  81. <View className="examine">{v.adminExamine}</View>
  82. <View className="bottomContent">
  83. <View className="clockIn"
  84. style={{ color: ['red', "#6eb173", '#dbc037'][v.clockIn] }}
  85. >{['未打卡', '已打卡', '异常打卡'][v.clockIn]}</View>
  86. <View
  87. className="status"
  88. style={{ color: getClockState(v.status).color, }}
  89. >
  90. {(v.status === 0 || v.status === 4) && v.rejectName}{getClockState(v.status).title}
  91. </View>
  92. </View>
  93. </View>
  94. </View>
  95. ))}
  96. <ListBottomStart
  97. state={this.props.listState}
  98. reload={() => {
  99. this.props.onRefresh;
  100. }}
  101. />
  102. </View>
  103. {/* 发起报销类型选择 */}
  104. {/* {this.state.visible != "" &&
  105. <Select
  106. prid={this.state.id}
  107. visible={this.state.visible}
  108. onClose={this.onClose.bind(this)}
  109. />} */}
  110. </View>
  111. );
  112. }
  113. }
  114. export default List;