import React, { Component } from "react"; import Taro from "@tarojs/taro"; import { View, Image, Button } from "@tarojs/components"; import Skeleton from "taro-skeleton"; import { getClockState } from "../../utils/tools"; import ListBottomStart from "../../components/common/listBottomStart"; import "./index.less"; class MyList extends Component { constructor(props) { super(props); } render() { let roles = Taro.getStorageSync('roles'); return ( { this.props.list.length === 0 && this.props.listState === "LOADING" && this.props.typelist?.map((v) => ( )) } {this.props.list.length > 0 && this.props.list?.map((v, k) => ( { Taro.navigateTo({ url: `/pages/projectDetail/index?id=${v.id}`, }); }} > {v.name} 负责人:{v.adminName} 研发人员:{v.staffName} 研发时间:{v.startTime + " 至 " + v.endTime} 累积工时:{v.duration} { !roles.includes("ceo") && { e.stopPropagation(); Taro.eventCenter.trigger("GoPunchIn", v); Taro.switchTab({ url: "/pages/punchClock/index", }); }} > 去打卡 } ))} { this.props.onRefresh; }} /> ); } } export default MyList;