123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717 |
- import React, { Component } from "react";
- import { View, Image, Button } from "@tarojs/components";
- import Taro, { getCurrentInstance } from "@tarojs/taro";
- import {
- AtButton,
- AtCalendar,
- AtIcon,
- AtTextarea,
- AtModal,
- AtModalContent,
- AtModalAction,
- } from "taro-ui";
- import Skeleton from "taro-skeleton";
- import InquiryModal from "../../components/common/inquiryModal";
- import Modify from "./modify";
- import {
- examinePublicRelease,
- getReleasetDails,
- updatePublicRelease,
- } from "../../utils/servers/servers";
- import { resourceAddress } from "../../utils/config";
- import "./index.less";
- import "taro-ui/dist/style/components/icon.scss";
- import "taro-ui/dist/style/components/textarea.scss";
- import "taro-ui/dist/style/components/modal.scss";
- import "taro-ui/dist/style/components/timeline.scss";
- import "taro-ui/dist/style/components/icon.scss";
- import "taro-ui/dist/style/components/calendar.scss";
- import Rejected from "../../image/rejected.png";
- import Passed from "../../image/passed.png";
- import Reviewed from "../../image/reviewed.png";
- import Wx from "../../image/wx.png";
- import Revoke from "../../image/revoke.png";
- import ImagePicker from "../../components/common/imagePicker";
- import MessageNoticebar from "../../components/common/messageNoticebar";
- import { getClockState } from "../../utils/tools";
- import HistoricalClock from "../../components/historicalClock";
- class EgressDetails extends Component {
- $instance = getCurrentInstance();
- constructor(props) {
- super(props);
- this.state = {
- dtails: {},
- opinion: "",
- publicReleaseLog: [],
- isDetailedOpened: false,
- isModifyOpened: false,
- reasonsInvalidation: "",
- isVerify: false, //判断是否在审核中修改
- selectArrderLocation: {},
- current: "",
- isNo: true,
- };
- this.examinePublicRelease = this.examinePublicRelease.bind(this);
- this.getReleasetDails = this.getReleasetDails.bind(this);
- this.oidApplication = this.oidApplication.bind(this);
- }
- componentDidMount() {
- this.setState({
- current: this.$instance.router.params.status || "",
- });
- this.getReleasetDails();
- }
- componentDidShow() {
- //获取地区选定数据
- const chooseLocation = requirePlugin("chooseLocation");
- const location = chooseLocation.getLocation();
- if (location) {
- this.setState({
- selectArrderLocation: location,
- });
- }
- }
- getReleasetDails() {
- getReleasetDails({
- id: this.$instance.router.params.id,
- })
- .then((v) => {
- if (v.error.length === 0) {
- if (v.data) {
- let list = [];
- for (let i of v.data.annexUrl.split(",")) {
- if (i) {
- list.push({ url: resourceAddress + i });
- }
- }
- v.data.annexUrl = list;
- this.setState({
- dtails: v.data,
- selectArrderLocation: {
- longitude: parseFloat(v.data.longitude),
- latitude: parseFloat(v.data.latitude),
- name: v.data.userName,
- },
- });
- } else {
- setTimeout(() => {
- Taro.switchTab({
- url: "/pages/punchClock/index",
- });
- }, 1800);
- Taro.showToast({
- title: "您没有权限查看此公出详情",
- icon: "none",
- duration: 1800,
- });
- }
- } else {
- Taro.showToast({ title: v.error[0].message, icon: "none" });
- }
- })
- .catch((err) => {
- Taro.showToast({ title: "系统错误,请稍后再试", icon: "none" });
- // console.log(err);
- });
- }
- // 同意
- agree() {
- if (!this.state.opinion) {
- Taro.showToast({ title: "请填写审批意见", icon: "none" });
- return;
- }
- getReleasetDails({
- id: this.$instance.router.params.id,
- })
- .then((v) => {
- if (v.error.length === 0) {
- //如果在审核期间修改过
- if (
- v.data.updateTime != null &&
- this.state.dtails.updateTime !== v.data.updateTime
- ) {
- this.setState({
- isInquiryOpened: true,
- isNo: false,
- inquiryTitle: "提醒",
- inquiryContent: "当前公出申请已修改,请重新审核",
- });
- } else {
- this.examinePublicRelease(2);
- }
- if (v.data) {
- let list = [];
- for (let i of v.data.annexUrl.split(",")) {
- if (i) {
- list.push({ url: resourceAddress + i });
- }
- }
- v.data.annexUrl = list;
- this.setState({
- dtails: v.data,
- selectArrderLocation: {
- longitude: parseFloat(v.data.longitude),
- latitude: parseFloat(v.data.latitude),
- name: v.data.userName,
- },
- });
- } else {
- setTimeout(() => {
- Taro.switchTab({
- url: "/pages/punchClock/index",
- });
- }, 1800);
- Taro.showToast({
- title: "您没有权限查看此公出详情",
- icon: "none",
- duration: 1800,
- });
- }
- } else {
- Taro.showToast({ title: v.error[0].message, icon: "none" });
- }
- })
- .catch((err) => {
- Taro.showToast({ title: "系统错误,请稍后再试", icon: "none" });
- // console.log(err);
- });
- }
- examinePublicRelease(status) {
- if (!this.state.opinion) {
- Taro.showToast({ title: "请填写审批意见", icon: "none" });
- return;
- }
- Taro.showLoading({ title: "加载中..." });
- examinePublicRelease({
- status,
- remarks: this.state.opinion,
- id: this.state.dtails.id,
- })
- .then((v) => {
- Taro.hideLoading();
- if (v.error.length === 0) {
- Taro.showToast({
- title: status === 0 ? "驳回成功" : "通过成功",
- icon: "none",
- });
- this.state.dtails.status = status;
- this.setState({
- dtails: this.state.dtails,
- });
- Taro.eventCenter.trigger("listOperation", {
- type: this.state.dtails.permission,
- index: this.$instance.router.params.index,
- status: status === 0 ? 0 : 2,
- });
- } else {
- Taro.showToast({ title: v.error[0].message, icon: "none" });
- }
- })
- .catch(() => {
- Taro.hideLoading();
- Taro.showToast({ title: "系统错误,请稍后再试", icon: "none" });
- });
- }
- onShareAppMessage() {
- return {
- title:
- this.state.dtails.status === 3
- ? this.state.dtails.aname +
- "撤销了前往" +
- this.state.dtails.userName +
- "的公出"
- : this.state.dtails.aname + "将要去" + this.state.dtails.userName,
- path: "pages/egressDetails/index?id=" + this.$instance.router.params.id,
- };
- }
- oidApplication() {
- if (!this.state.reasonsInvalidation) {
- Taro.showToast({ title: "请填写撤销原因", icon: "none" });
- return;
- }
- this.setState({
- loading: true,
- });
- updatePublicRelease({
- id: this.$instance.router.params.id,
- status: 3,
- uid: this.state.dtails.uid,
- reason: this.state.reasonsInvalidation,
- })
- .then((v) => {
- this.setState({
- loading: false,
- });
- if (v.error.length === 0) {
- Taro.showToast({
- title: "修改成功",
- });
- this.setState(
- {
- isInquiryOpened: false,
- inquiryTitle: "",
- inquiryContent: "",
- },
- () => {
- this.getReleasetDails();
- }
- );
- Taro.eventCenter.trigger("listOperation", {
- type: this.state.dtails.permission,
- index: this.$instance.router.params.index,
- status: 3,
- });
- } else {
- Taro.showToast({
- title: v.error[0].message,
- icon: "none",
- });
- }
- })
- .catch(() => {
- this.setState({
- loading: false,
- });
- });
- }
- render() {
- const { dtails, current } = this.state;
- return (
- <View className="egressDetails">
- <MessageNoticebar />
- <View
- className="titleContent"
- style={{
- padding: Object.keys(dtails).length === 0 ? "0 30px" : "20px 30px",
- }}
- >
- {Object.keys(dtails).length === 0 ? (
- <Skeleton
- title
- row={3}
- animateName="elastic"
- avatarShape="square"
- loading
- />
- ) : (
- <View>
- <View className="title">
- {dtails.aname}提交的公出申请
- {dtails.updateStatus == 1 && (
- <View className="titRight">改</View>
- )}
- </View>
- <View className="address">申请时间: {dtails.createTimes}</View>
- <View
- className="state"
- style={{
- color: getClockState(dtails.status).color,
- }}
- >
- {getClockState(dtails.status).title}
- </View>
- <Image
- src={
- dtails.status === 0
- ? Rejected
- : dtails.status === 1
- ? Reviewed
- : dtails.status === 2
- ? Passed
- : dtails.status === 3
- ? Revoke
- : ""
- }
- className="startIcon"
- />
- </View>
- )}
- </View>
- {Object.keys(dtails).length === 0 ? (
- <View style={{ margin: "20px" }}>
- <Skeleton title row={3} avatarShape="square" loading />
- </View>
- ) : (
- <View className="valueContent">
- <View className="item">
- <View className="title">
- 公出地点:
- {dtails.permission === 0 &&
- (dtails.status === 0 || dtails.status === 3) ? (
- <View
- className="edit"
- onClick={() => {
- this.setState({
- isModifyOpened: true,
- });
- }}
- >
- <View style={{ color: "#3864ef", fontSize: "15px" }}>
- 修改
- <AtIcon value="edit" size="18" color="#3864ef" />
- </View>
- </View>
- ) : null}
- </View>
- <View className="value">{dtails.userName}</View>
- <View className="timeContent">
- <View className="time">
- <View className="num">公出{dtails.duration}小时</View>
- <View
- className="journal"
- onClick={(e) => {
- e.stopPropagation();
- this.setState({
- isDetailedOpened: true,
- });
- }}
- >
- 明细
- </View>
- </View>
- <View className="timeAxis">
- <View className="startTime">
- <View className="circle" />
- {dtails.releaseStarts}
- </View>
- <View className="axis" />
- <View className="endTime">
- <View className="circle" />
- {dtails.releaseEnds}
- </View>
- </View>
- </View>
- </View>
- <AtModal
- onClose={() => {
- this.setState({
- isDetailedOpened: false,
- });
- }}
- isOpened={this.state.isDetailedOpened}
- >
- <AtModalContent>
- {dtails.validDate ? (
- <AtCalendar
- currentDate={JSON.parse(dtails.validDate)[0]["value"]}
- isSwiper={false}
- validDates={JSON.parse(dtails.validDate)}
- />
- ) : null}
- </AtModalContent>
- <AtModalAction>
- <Button
- onClick={() => {
- this.setState({
- isDetailedOpened: false,
- });
- }}
- >
- 确定
- </Button>
- </AtModalAction>
- </AtModal>
- <View className="item">
- <View className="title">公出类型:</View>
- <View className="value">
- {dtails.type == 0
- ? "业务公出"
- : dtails.type == 1
- ? "技术公出"
- : dtails.type == 2 && "行政公出"}
- </View>
- </View>
- {dtails.type == 1 ? (
- <View className="item">
- <View className="title">合同编号:</View>
- <View className="value">{dtails.contractNo}</View>
- </View>
- ) : (
- ""
- )}
- <View className="item">
- <View className="title">公出企业</View>
- <View className="value">{dtails.nickname}</View>
- </View>
- {/* 公出目标 */}
- <View className="item">
- <View className="title">公出目标</View>
- <View className="value">{dtails.remarks}</View>
- </View>
- {/* 公出计划 */}
- {dtails.type != 2 && (
- <View className="item">
- <View className="title">公出计划</View>
- <View className="value">{dtails.plan}</View>
- </View>
- )}
- {/* 预计效果 */}
- {dtails.type != 2 && (
- <View className="item">
- <View className="title">预计效果</View>
- <View className="value">{dtails.expectedEffect}</View>
- </View>
- )}
- {dtails.annexUrl && dtails.annexUrl.length > 0 ? (
- <View className="item">
- <View className="title">附件</View>
- <View className="value">
- <ImagePicker files={dtails.annexUrl} showAddBtn={false} />
- </View>
- </View>
- ) : null}
- {dtails.permission === 1 &&
- dtails.status === 1 &&
- current !== "2" ? (
- <View className="item">
- <View className="title">
- 填写审批意见
- <View className="titleTips">
- 根据公出申请记录指导怎么沟通?并提出详细指导建议
- </View>
- </View>
- <AtTextarea
- value={this.state.opinion}
- onChange={(value) => {
- this.setState({
- opinion: value,
- });
- }}
- maxLength={20}
- placeholder="请填写审批意见"
- />
- </View>
- ) : null}
- {dtails.permission === 1 &&
- dtails.status === 1 &&
- current !== "2" ? (
- <View className="operation">
- <AtButton
- type="secondary"
- circle
- loading={this.state.loading}
- onClick={() => {
- this.setState({
- isInquiryOpened: true,
- inquiryTitle: "提醒",
- inquiryContent: "您确定要驳回此申请吗?",
- inquiryFn: () => {
- this.examinePublicRelease(0);
- },
- });
- }}
- >
- 驳回
- </AtButton>
- <AtButton
- type="primary"
- loading={this.state.loading}
- circle
- onClick={() => {
- if (this.state.loading) {
- return;
- }
- this.setState({
- isInquiryOpened: true,
- inquiryTitle: "提醒",
- inquiryContent: "您确定要同意此申请吗?",
- inquiryFn: () => {
- this.agree();
- // this.examinePublicRelease(2);
- },
- });
- }}
- >
- 同意
- </AtButton>
- </View>
- ) : null}
- {dtails.permission === 0 && dtails.status !== 3 ? (
- <View className="item">
- <View className="title">修改/撤销</View>
- <AtTextarea
- value={this.state.reasonsInvalidation}
- onChange={(value) => {
- this.setState({
- reasonsInvalidation: value,
- });
- }}
- maxLength={20}
- placeholder="请填写修改或撤销的详细原因"
- />
- </View>
- ) : null}
- {dtails.permission === 0 && dtails.status !== 3 ? (
- <View className="operation">
- <Button
- type="warn"
- loading={this.state.loading}
- onClick={() => {
- if (this.state.loading) {
- return;
- }
- this.setState({
- isInquiryOpened: true,
- inquiryTitle: "提醒",
- inquiryContent: "您确定要撤销此申请吗?",
- inquiryFn: () => {
- this.oidApplication();
- },
- });
- }}
- >
- 撤销申请
- </Button>
- <Button
- style={{ color: "#fff", background: "#4876FF" }}
- loading={this.state.loading}
- onClick={() => {
- if (this.state.loading) {
- return;
- }
- this.setState({
- isInquiryOpened: true,
- inquiryTitle: "提醒",
- inquiryContent:
- "您确定修改此公出申请吗?确定修改,已完成的审核,将自动解除,重新转化为待审核状态!!!",
- inquiryFn: () => {
- if (!this.state.reasonsInvalidation) {
- Taro.showToast({
- title: "请填写修改原因",
- icon: "none",
- });
- return;
- }
- this.setState({
- isModifyOpened: true,
- isVerify: true,
- });
- },
- });
- }}
- >
- 修改申请
- </Button>
- </View>
- ) : null}
- </View>
- )}
- {Object.keys(dtails).length === 0 ? (
- <View style={{ margin: "20px" }}>
- <Skeleton title row={3} avatarShape="square" loading />
- </View>
- ) : (
- <View
- className="valueContent history"
- onClick={(e) => {
- e.stopPropagation();
- this.setState({
- historicalIsOpened: true,
- });
- }}
- >
- 查看公出申请日志
- <AtIcon value="chevron-right" size="20" color="#767272" />
- </View>
- )}
- {Object.keys(dtails).length === 0 ? (
- <View style={{ margin: "20px" }}>
- <Skeleton title row={3} avatarShape="square" loading />
- </View>
- ) : (
- <View className="valueContent history">
- <View className="shareContent">
- <Button open-type="share" className="share">
- <Image src={Wx} className="shareIcon" />
- </Button>
- <View className="shareTitle">微信分享</View>
- </View>
- </View>
- )}
- {this.state.isModifyOpened ? (
- <Modify
- permission={dtails.permission}
- index={this.$instance.router.params.index}
- dtails={dtails}
- locationInfor={this.state.selectArrderLocation}
- id={this.$instance.router.params.id}
- isOpened={this.state.isModifyOpened}
- isVerify={this.state.isVerify}
- reason={this.state.reasonsInvalidation}
- onModalClose={() => {
- this.setState({
- isModifyOpened: false,
- });
- }}
- onClose={() => {
- this.setState(
- {
- isModifyOpened: false,
- dtails: {},
- reasonsInvalidation: "",
- },
- () => {
- this.getReleasetDails();
- }
- );
- }}
- />
- ) : null}
- <InquiryModal
- isOpened={this.state.isInquiryOpened}
- title={this.state.inquiryTitle}
- content={this.state.inquiryContent}
- color={this.state.isNo ? "black" : "red"}
- isNo={this.state.isNo}
- onClose={() => {
- this.setState({
- isInquiryOpened: false,
- inquiryTitle: "",
- inquiryContent: "",
- isNo: true,
- });
- }}
- onDetermine={() => {
- this.state.inquiryFn();
- this.setState({
- isInquiryOpened: false,
- inquiryTitle: "",
- inquiryContent: "",
- isNo: true,
- inquiryFn: () => {},
- });
- }}
- />
- {this.state.historicalIsOpened ? (
- <HistoricalClock
- id={this.$instance.router.params.id}
- isOpened={this.state.historicalIsOpened}
- onClose={() => {
- this.setState({
- historicalIsOpened: false,
- });
- }}
- />
- ) : null}
- </View>
- );
- }
- }
- export default EgressDetails;
|