dev01 пре 3 година
родитељ
комит
964a8a9f64

+ 10 - 9
src/components/common/inquiryModal/index.jsx

@@ -1,27 +1,28 @@
-import React,{Component} from "react";
-import { Button } from '@tarojs/components'
-import { AtModal, AtModalHeader, AtModalContent, AtModalAction } from "taro-ui"
+import React, { Component } from "react";
+import { View, Button } from "@tarojs/components";
+import { AtModal, AtModalHeader, AtModalContent, AtModalAction } from "taro-ui";
 
 import "taro-ui/dist/style/components/modal.scss";
 
-class InquiryModal extends Component{
+class InquiryModal extends Component {
   constructor(props) {
     super(props);
   }
 
   render() {
-    return(
+    const { color = "black", isNo = true } = this.props;
+    return (
       <AtModal isOpened={this.props.isOpened}>
-        <AtModalHeader>{this.props.title || '提示'}</AtModalHeader>
+        <AtModalHeader>{this.props.title || "提示"}</AtModalHeader>
         <AtModalContent>
-          {this.props.content || ''}
+          <View style={{ color: color }}>{this.props.content || ""}</View>
         </AtModalContent>
         <AtModalAction>
-          <Button onClick={this.props.onClose}>取消</Button>
+          {isNo && <Button onClick={this.props.onClose}>取消</Button>}
           <Button onClick={this.props.onDetermine}>确定</Button>
         </AtModalAction>
       </AtModal>
-    )
+    );
   }
 }
 

+ 71 - 3
src/pages/egressDetails/index.jsx

@@ -56,6 +56,7 @@ class EgressDetails extends Component {
       isVerify: false, //判断是否在审核中修改
       selectArrderLocation: {},
       current: "",
+      isNo: true,
     };
     this.examinePublicRelease = this.examinePublicRelease.bind(this);
     this.getReleasetDails = this.getReleasetDails.bind(this);
@@ -70,7 +71,6 @@ class EgressDetails extends Component {
   }
 
   componentDidShow() {
-    console.log("----000.");
     //获取地区选定数据
     const chooseLocation = requirePlugin("chooseLocation");
     const location = chooseLocation.getLocation();
@@ -121,7 +121,70 @@ class EgressDetails extends Component {
       })
       .catch((err) => {
         Taro.showToast({ title: "系统错误,请稍后再试", icon: "none" });
-        console.log(err);
+        // 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);
       });
   }
 
@@ -468,7 +531,8 @@ class EgressDetails extends Component {
                       inquiryTitle: "提醒",
                       inquiryContent: "您确定要同意此申请吗?",
                       inquiryFn: () => {
-                        this.examinePublicRelease(2);
+                        this.agree();
+                        // this.examinePublicRelease(2);
                       },
                     });
                   }}
@@ -612,11 +676,14 @@ class EgressDetails extends Component {
           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={() => {
@@ -625,6 +692,7 @@ class EgressDetails extends Component {
               isInquiryOpened: false,
               inquiryTitle: "",
               inquiryContent: "",
+              isNo: true,
               inquiryFn: () => {},
             });
           }}

+ 1 - 1
src/pages/egressDetails/modify.jsx

@@ -56,7 +56,7 @@ class Modify extends Component {
   }
 
   onChange(value, visi) {
-    console.log("----", value, visi);
+    // console.log("----", value, visi);
     value.type = this.state.type;
     this.setState({
       dtails: {

+ 1 - 1
src/pages/egressDetails/publicContent.jsx

@@ -449,7 +449,7 @@ class PublicContent extends Component {
           </View>
         </View>
         <View className="formItem">
-          <View className="formName">总时长1:</View>
+          <View className="formName">总时长:</View>
           <View className="formValue">{this.state.totalDuration}小时</View>
         </View>
         {this.state.validDates.length !== 0 ? (

+ 5 - 0
src/utils/tools/config.js

@@ -49,4 +49,9 @@ export const clockJournalState = [
     id:4,
     color:'#242424'
   },
+  {
+    title:'修改',
+    id:5,
+    color:'#1E90FF'
+  },
 ];