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 RevokeWhite from "../../image/revokeWhite.png"; import "./index.less"; class MyList extends Component { constructor(props) { super(props); } render() { let seeView = this.props.seeView; const { title } = this.props 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/egressDetails/index?id=" + v.id + "&index=" + k + "&status=" + title, }); }} > {v.publicAgain == 1 && 再次} {v.status === 3 && } {v.type === 3 ? v.mainName : v.aname}提交的公出申请 {v.updateStatus == 1 && } {v.createTimes} 公出企业:{v.userNames} { title == "我的公出" && (v.type === 0 || v.type === 1 || v.type === 2) && v.status !== 3 && { e.stopPropagation(); this.props.again(v) }} > 再次公出 } { (title == "我的协单" || title === "查看协单") && v.status === 2 && v.type === 3 && { e.stopPropagation(); this.props.opens(v.id) }} > 驳回协单 } 公出地点:{v.districtName} 开始时间:{v.releaseStarts} {this.props.type === 0 && v.status !== 3 ? ( { e.stopPropagation(); Taro.eventCenter.trigger("GoPunchIn", v); Taro.switchTab({ url: "/pages/punchClock/index", }); }} > {(v.clockIn === 1 || v.clockIn === 2) ? "更新打卡" : "去打卡"} ) : null} 结束时间:{v.releaseEnds} { v.assistAidName != null && v.assistAidName != "" && 技术协单:{v.assistAidName.replace(/,/g, " ")} } { v.assistantName != null && v.assistantName != "" && 协单助手:{v.assistantName.replace(/,/g, " ")} } {['未打卡', '已打卡', '异常打卡'][v.clockIn]} {(v.status === 0 || v.status === 4) && v.rejectName}{getClockState(v.status).title} ))} { this.props.onRefresh; }} /> ); } } export default MyList;