myList.jsx 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. class MyList extends Component {
  9. constructor(props) {
  10. super(props);
  11. }
  12. render() {
  13. let roles = Taro.getStorageSync('roles');
  14. return (
  15. <View className="indexPage">
  16. <View className="list">
  17. {
  18. this.props.list.length === 0 && this.props.listState === "LOADING" &&
  19. this.props.typelist?.map((v) => (
  20. <Skeleton key={v} title row={3} avatarShape="square" loading />
  21. ))
  22. }
  23. {this.props.list.length > 0 && this.props.list?.map((v, k) => (
  24. <View
  25. key={k}
  26. className="item"
  27. onClick={(e) => {
  28. Taro.navigateTo({
  29. url: `/pages/projectDetail/index?id=${v.id}`,
  30. });
  31. }}
  32. >
  33. <View className="infor">
  34. <View className="title">
  35. <View className="aname">
  36. {v.name}
  37. </View>
  38. </View>
  39. <View className="userName">
  40. <View className="uNtext">
  41. 负责人:{v.adminName}
  42. </View>
  43. </View>
  44. <View className="userName">
  45. <View className="uNtext">
  46. 研发人员:{v.staffName}
  47. </View>
  48. </View>
  49. <View className="userName">
  50. <View className="uNtext">
  51. 研发时间:{v.startTime + " 至 " + v.endTime}
  52. </View>
  53. </View>
  54. <View className="userName">
  55. <View className="uNtext">
  56. 累积工时:{v.duration}
  57. </View>
  58. </View>
  59. {
  60. !roles.includes("ceo") &&
  61. <View className="releaseStarts">
  62. <View
  63. className="punchClock"
  64. onClick={(e) => {
  65. e.stopPropagation();
  66. Taro.eventCenter.trigger("GoPunchIn", v);
  67. Taro.switchTab({
  68. url: "/pages/punchClock/index",
  69. });
  70. }}
  71. >
  72. 去打卡
  73. </View>
  74. </View>
  75. }
  76. </View>
  77. </View>
  78. ))}
  79. <ListBottomStart
  80. state={this.props.listState}
  81. reload={() => {
  82. this.props.onRefresh;
  83. }}
  84. />
  85. </View>
  86. </View>
  87. );
  88. }
  89. }
  90. export default MyList;