import React, { Component } from "react"; import Taro, { getCurrentInstance } from "@tarojs/taro"; import { View, Text, Image, } from "@tarojs/components"; import { AtButton, AtTextarea, } from "taro-ui"; import Skeleton from "taro-skeleton"; import { recordDetails, examineRecord, } from "../../utils/servers/servers"; import InquiryModal from "../../components/common/inquiryModal"; import ImagePicker from "../../components/common/imagePicker"; import HistoricalClock from '../../components/historicalClock'; import { resourceAddress } from "../../utils/config"; import { getStageState } from "../../utils/tools"; import Un from "../../image/un.png"; import Ok from "../../image/ok.png"; import './index.less' class Detail extends Component { $instance = getCurrentInstance(); constructor(props) { super(props); this.state = { opinion: "", attachmentUrl: [], data: {}, historicalIsOpened: false, isOpened: false, } this.getReleasetDails = this.getReleasetDails.bind(this); } componentDidMount() { this.getReleasetDails(); } componentDidShow() { this.setState({ isOpened: false }, () => { this.getReleasetDails(); }) } // 项目详情 getReleasetDails() { recordDetails({ id: this.$instance.router.params.id, }).then((v) => { if (v.code === 200) { if (v.data) { let list = []; for (let i of (v.data.annexUrl || '').split(',')) { if (i) { list.push({ 'url': resourceAddress + i }) } } this.setState({ data: v.data, attachmentUrl: list, isOpened: true, }) } else { setTimeout(() => { Taro.switchTab({ url: "/pages/mybusiness/index", }); }, 1800); Taro.showToast({ title: "您没有权限查看此详情", icon: "none", duration: 1800, }); } } else { Taro.showToast({ title: v.msg, icon: "none" }); } }) .catch((err) => { Taro.showToast({ title: "系统错误,请稍后再试", icon: "none" }); // console.log(err); }); } // 同意/驳回 agree(sta) { if (!this.state.opinion) { Taro.showToast({ title: "请填写审批意见", icon: "none" }); return; } examineRecord({ id: this.$instance.router.params.id, processStatus: sta, content: this.state.opinion, }) .then((v) => { if (v.code === 200) { Taro.showToast({ title: "操作成功", icon: "none", }); this.getReleasetDails(); } else { Taro.showToast({ title: v.msg, icon: "none" }); } }) .catch((err) => { Taro.showToast({ title: "系统错误,请稍后再试", icon: "none" }); // console.log(err); }); } render() { const { data, attachmentUrl } = this.state return ( {Object.keys(data).length === 0 ? : { // 我的打卡 this.$instance.router.params.type == 0 && {data.processStatus == 1 && } {data.processStatus == 2 && } {data.projectName} 创建时间:{data.createTime} 打卡人员:{data.name} 打卡时间:{data.recordTime} 研发工时:{data.duration} 研发阶段:{getStageState(data.projectStatus)} 研发记录:{data.content} 附件: {this.state.isOpened && } 当前审核状态: {["", "待审核", "审核通过", "审核驳回"][data.processStatus]} { this.setState({ historicalIsOpened: true }) }}>查看审核日志 { data.processStatus == 3 && { Taro.navigateTo({ url: `/pages/reclockin/index?id=${this.$instance.router.params.id}`, }); }} > 重新发起 } } { // 审核 this.$instance.router.params.type == 1 && {data.projectName} 负责人:{data.adminName} 研发人员:{data.name} 打卡工时:{data.duration} 附件: {attachmentUrl && attachmentUrl.length > 0 && } 审核状态: {["", "待审核", "审核通过", "审核驳回"][data.processStatus]} { this.setState({ historicalIsOpened: true }) }}>查看审核日志 {data.processStatus == 1 && { this.setState({ opinion: value, }); }} maxLength={100} placeholder="请填写审批意见" /> { this.setState({ isInquiryOpened: true, inquiryTitle: "提醒", inquiryContent: "您确定要驳回此申请吗?", inquiryFn: () => { this.agree(3); }, }); }} > 驳回 { if (this.state.loading) { return; } this.setState({ isInquiryOpened: true, inquiryTitle: "提醒", inquiryContent: "您确定要同意此申请吗?", inquiryFn: () => { this.agree(2); }, }); }} > 同意 } } } { this.setState({ isInquiryOpened: false, inquiryTitle: "", inquiryContent: "", isNo: true, }); }} onDetermine={() => { this.state.inquiryFn(); this.setState({ isInquiryOpened: false, inquiryTitle: "", inquiryContent: "", isNo: true, inquiryFn: () => { }, }); }} /> { this.state.historicalIsOpened && { this.setState({ historicalIsOpened: false }) }} /> } ); } } export default Detail;