dev01 před 3 roky
rodič
revize
7d2cb44304

+ 11 - 0
src/pages/egressDetails/index.css

@@ -12,6 +12,17 @@
 .egressDetails .titleContent .title {
   font-weight: bolder;
   padding-bottom: 20px;
+  display: flex;
+  flex-direction: row;
+  align-items: center;
+}
+.egressDetails .titleContent .title .titRight {
+  background: #1E90FF;
+  color: white;
+  padding: 5px 8px;
+  border-radius: 4px;
+  margin-left: 10px;
+  font-size: 25px;
 }
 .egressDetails .titleContent .address {
   font-size: 25px;

+ 44 - 5
src/pages/egressDetails/index.jsx

@@ -52,6 +52,8 @@ class EgressDetails extends Component {
       publicReleaseLog: [],
       isDetailedOpened: false,
       isModifyOpened: false,
+      reasonsInvalidation: "",
+      isVerify: false, //判断是否在审核中修改
       selectArrderLocation: {},
       current: "",
     };
@@ -64,11 +66,11 @@ class EgressDetails extends Component {
     this.setState({
       current: this.$instance.router.params.status || "",
     });
-    console.log(this.$instance.router.params.status);
     this.getReleasetDails();
   }
 
   componentDidShow() {
+    console.log("----000.");
     //获取地区选定数据
     const chooseLocation = requirePlugin("chooseLocation");
     const location = chooseLocation.getLocation();
@@ -226,7 +228,6 @@ class EgressDetails extends Component {
 
   render() {
     const { dtails, current } = this.state;
-    console.log(dtails);
     return (
       <View className="egressDetails">
         <MessageNoticebar />
@@ -246,7 +247,12 @@ class EgressDetails extends Component {
             />
           ) : (
             <View>
-              <View className="title">{dtails.aname}提交的公出申请</View>
+              <View className="title">
+                {dtails.aname}提交的公出申请
+                {dtails.updateStatus == 1 && (
+                  <View className="titRight">改</View>
+                )}
+              </View>
               <View className="address">申请时间: {dtails.createTimes}</View>
               <View
                 className="state"
@@ -473,7 +479,7 @@ class EgressDetails extends Component {
             ) : null}
             {dtails.permission === 0 && dtails.status !== 3 ? (
               <View className="item">
-                <View className="title">撤销申请</View>
+                <View className="title">修改/撤销</View>
                 <AtTextarea
                   value={this.state.reasonsInvalidation}
                   onChange={(value) => {
@@ -482,7 +488,7 @@ class EgressDetails extends Component {
                     });
                   }}
                   maxLength={20}
-                  placeholder="请填写撤销申请原因"
+                  placeholder="请填写修改或撤销的详细原因"
                 />
               </View>
             ) : null}
@@ -507,6 +513,36 @@ class EgressDetails extends Component {
                 >
                   撤销申请
                 </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>
@@ -551,6 +587,8 @@ class EgressDetails extends Component {
             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,
@@ -561,6 +599,7 @@ class EgressDetails extends Component {
                 {
                   isModifyOpened: false,
                   dtails: {},
+                  reasonsInvalidation: "",
                 },
                 () => {
                   this.getReleasetDails();

+ 12 - 0
src/pages/egressDetails/index.less

@@ -10,6 +10,18 @@
     .title{
       font-weight: bolder;
       padding-bottom: 20px;
+      display: flex;
+      flex-direction: row;
+      align-items: center;
+      .titRight{
+        background: #1E90FF;
+        color: white;
+        padding: 5px 8px;
+        border-radius: 4px;
+        margin-left: 10px;
+        font-size: 25px;
+      }
+
     }
     .address{
       font-size: 25px;

+ 3 - 0
src/pages/egressDetails/modify.jsx

@@ -147,6 +147,7 @@ class Modify extends Component {
             <Enterprise
               type={this.state.type}
               isOpened={this.props.isOpened}
+              isVerify={this.props.isVerify} //判断是否在审核中修改
               onChange={this.onChange}
             />
           ) : (
@@ -160,6 +161,8 @@ class Modify extends Component {
               locationInfor={this.props.locationInfor}
               dtails={this.state.dtails}
               isOpened={this.props.isOpened}
+              isVerify={this.props.isVerify}
+              reason={this.props.reason}//修改原因
               onChange={this.onChange}
               onBack={() => {
                 this.setState({

+ 8 - 7
src/pages/egressDetails/publicContent.jsx

@@ -56,7 +56,7 @@ class PublicContent extends Component {
   }
 
   componentDidMount() {
-    console.log("-------", this.props.dtails);
+    // console.log("-------", this.props.dtails);
     let arr = [];
     for (let i of this.props.dtails.annexUrl) {
       arr.push(i.url.split(resourceAddress).join(""));
@@ -134,8 +134,9 @@ class PublicContent extends Component {
       ),
     });
   }
-
+  
   onSubmit() {
+    const { isVerify = false } = this.props;
     if (!this.state.rangeStartMinuteVal) {
       Taro.showToast({ title: "请选择公出时间", icon: "none" });
       return;
@@ -186,7 +187,6 @@ class PublicContent extends Component {
         duration: this.state.totalDuration,
         validDate: JSON.stringify(this.state.validDates),
         type: this.props.dtails.type,
-        // type: this.props.type,
       };
     } else if (this.props.dtails.type == 2) {
       datas = {
@@ -204,7 +204,6 @@ class PublicContent extends Component {
         duration: this.state.totalDuration,
         validDate: JSON.stringify(this.state.validDates),
         type: this.props.dtails.type,
-        //type: this.props.type,
         orderNo: this.props.dtails.orderNo,
       };
     } else {
@@ -223,10 +222,12 @@ class PublicContent extends Component {
         duration: this.state.totalDuration,
         validDate: JSON.stringify(this.state.validDates),
         type: this.props.dtails.type,
-        //type: this.props.type,
         orderNo: this.props.dtails.orderNo,
       };
     }
+    if(isVerify){
+      datas = { ...datas, ...{ reason: this.props.reason } };
+    }
     updatePublicRelease(datas)
       .then((v) => {
         this.setState({
@@ -326,7 +327,7 @@ class PublicContent extends Component {
 
   render() {
     const { dtails, type } = this.props;
-    console.log(type, "+++---", dtails);
+    // console.log(type, "+++---", dtails);
     return (
       <View className="publicContent">
         <View className="formItem">
@@ -448,7 +449,7 @@ class PublicContent extends Component {
           </View>
         </View>
         <View className="formItem">
-          <View className="formName">总时长:</View>
+          <View className="formName">总时长1:</View>
           <View className="formValue">{this.state.totalDuration}小时</View>
         </View>
         {this.state.validDates.length !== 0 ? (

+ 251 - 0
src/pages/examine/index.css

@@ -0,0 +1,251 @@
+.indexPage {
+  position: relative;
+  z-index: 1;
+  background: #F5F5F5;
+  min-height: calc(100vh - 52px);
+}
+.indexPage .item-content__info-title {
+  font-size: 28px;
+  color: #9BA0AA;
+}
+.indexPage .item-extra__info {
+  font-size: 28px;
+  color: #9BA0AA;
+}
+.indexPage .at-list__item::after {
+  border-bottom: 0;
+}
+.indexPage .at-list::after {
+  border-top: 0;
+}
+.indexPage .indexPage .at-list::after {
+  border: 0;
+}
+.indexPage .searchContent {
+  position: relative;
+  background: white;
+}
+.indexPage .searchContent .searchTop {
+  z-index: 1000;
+}
+.indexPage .searchContent .searchBottom {
+  display: flex;
+  align-items: center;
+  justify-content: space-between;
+  background: #FFFFFF;
+  border-bottom-left-radius: 10px;
+  border-bottom-right-radius: 10px;
+  padding: 10px 0 10px 0;
+}
+.indexPage .searchContent .searchBottom .searchBottomBack {
+  position: fixed;
+  z-index: -1;
+  left: 0;
+  right: 0;
+  bottom: 0;
+  top: 100px;
+  background: rgba(0, 0, 0, 0.7);
+}
+.indexPage .searchContent .searchBottom .searchItem {
+  position: relative;
+  font-size: 25px;
+  color: #FFFFFF;
+}
+.indexPage .searchContent .searchBottom .searchItem .shortValuecontent {
+  position: relative;
+  display: flex;
+  align-items: center;
+  width: 155px;
+  background: #6190E8;
+  border-radius: 100px;
+  padding: 10px 0;
+  margin-right: 5px;
+}
+.indexPage .searchContent .searchBottom .searchItem .shortValuecontent .selectValue {
+  width: 110px;
+  padding-left: 15px;
+  white-space: nowrap;
+}
+.indexPage .searchContent .searchBottom .searchItem .shortValuecontent .selectTitle {
+  padding-left: 15px;
+  white-space: nowrap;
+  width: 110px;
+}
+.indexPage .searchContent .searchBottom .searchItem .shortValuecontent .iconContent {
+  width: 45px;
+  padding-right: 20px;
+  text-align: right;
+}
+.indexPage .searchContent .searchBottom .searchItem .valuecontent {
+  position: relative;
+  display: flex;
+  align-items: center;
+  width: 190px;
+  background: #6190E8;
+  border-radius: 100px;
+  padding: 10px 0;
+  margin-right: 5px;
+}
+.indexPage .searchContent .searchBottom .searchItem .valuecontent .selectValue {
+  padding-left: 15px;
+  width: 145px;
+  white-space: nowrap;
+}
+.indexPage .searchContent .searchBottom .searchItem .valuecontent .selectTitle {
+  padding-left: 15px;
+  white-space: nowrap;
+  width: 145px;
+}
+.indexPage .searchContent .searchBottom .searchItem .valuecontent .iconContent {
+  width: 45px;
+  padding-right: 20px;
+  text-align: right;
+}
+.indexPage .searchContent .searchBottom .searchItem .searchSelectContent {
+  position: absolute;
+  right: 0;
+  top: 0;
+  bottom: 0;
+  z-index: 1;
+  width: 45px;
+  padding-right: 20px;
+  text-align: right;
+  display: flex;
+  justify-content: flex-end;
+  align-items: center;
+  padding-bottom: 3px;
+}
+.indexPage .searchContent .searchBottom .searchItem .closeIcon {
+  background: #F00;
+  width: 60px;
+  height: 46px;
+  display: flex;
+  padding-left: 20px;
+  align-items: center;
+}
+.indexPage .searchContent .searchBottomLOL {
+  position: fixed;
+  z-index: 1000;
+  top: 0;
+  left: 0;
+  right: 0;
+  box-shadow: 0px 6px 27px 16px #8e8d8d;
+  background: #FFFFFF;
+}
+.indexPage .list {
+  padding: 20px 23px 52px 23px;
+}
+.indexPage .list .item {
+  border-radius: 6px;
+  padding: 31px;
+  background: #FFFFFF;
+  display: flex;
+  flex-flow: row nowrap;
+  margin-bottom: 17px;
+  position: relative;
+  overflow: hidden;
+}
+.indexPage .list .item .revoke {
+  position: absolute;
+  top: 0;
+  left: 0;
+  right: 0;
+  bottom: 0;
+  background: rgba(0, 0, 0, 0.7);
+  z-index: 999;
+  display: flex;
+  flex-flow: row nowrap;
+  align-items: center;
+  justify-content: center;
+}
+.indexPage .list .item .revoke .revokeImg {
+  width: 250px;
+  height: 250px;
+}
+.indexPage .list .item .infor {
+  width: 100%;
+  position: relative;
+}
+.indexPage .list .item .infor .title {
+  display: flex;
+  flex-flow: row nowrap;
+  justify-content: space-between;
+  align-items: center;
+  padding-bottom: 20px;
+}
+.indexPage .list .item .infor .title .aname {
+  flex: 1;
+  padding-right: 20px;
+  font-weight: bolder;
+  display: flex;
+  flex-direction: row;
+  align-items: center;
+}
+.indexPage .list .item .infor .title .aname .aIcon {
+  background: #1E90FF;
+  color: white;
+  padding: 5px 8px;
+  border-radius: 4px;
+  margin-left: 10px;
+  font-size: 25px;
+}
+.indexPage .list .item .infor .title .createTimes {
+  font-size: 20px;
+  color: #999999;
+  white-space: nowrap;
+}
+.indexPage .list .item .infor .userName {
+  font-size: 25px;
+  color: #999999;
+  padding-bottom: 15px;
+}
+.indexPage .list .item .infor .releaseStarts {
+  font-size: 25px;
+  color: #999999;
+  padding-bottom: 15px;
+  display: flex;
+  flex-flow: row nowrap;
+  align-items: center;
+  justify-content: space-between;
+  position: relative;
+}
+.indexPage .list .item .infor .releaseStarts .punchClock {
+  position: absolute;
+  border-bottom-left-radius: 100px;
+  border-top-left-radius: 100px;
+  padding: 20px 30px;
+  background: #f1662f;
+  color: white;
+  display: flex;
+  justify-content: center;
+  align-items: center;
+  right: -31px;
+  top: -10px;
+}
+.indexPage .list .item .infor .releaseEnds {
+  font-size: 25px;
+  color: #999999;
+  display: flex;
+  flex-flow: row nowrap;
+  align-items: center;
+  justify-content: space-between;
+  padding-bottom: 25px;
+}
+.indexPage .list .item .infor .bottomContent {
+  display: flex;
+  flex-flow: row nowrap;
+  justify-content: space-between;
+  align-items: center;
+}
+.indexPage .list .item .infor .bottomContent .status {
+  font-size: 28px;
+}
+.indexPage .list .item .infor .bottomContent .clockIn {
+  padding: 3px 8px;
+  font-size: 28px;
+  border-radius: 6px;
+}
+.indexPage .skeleton {
+  border-radius: 11px;
+  margin-bottom: 20px;
+}

+ 11 - 0
src/pages/examine/index.less

@@ -172,6 +172,17 @@
             flex: 1;
             padding-right: 20px;
             font-weight: bolder;
+            display: flex;
+            flex-direction: row;
+            align-items: center;
+            .aIcon{
+              background: #1E90FF;
+              color: white;
+              padding: 5px 8px;
+              border-radius: 4px;
+              margin-left: 10px;
+              font-size: 25px;
+            }
           }
           .createTimes{
             font-size: 20px;

+ 94 - 84
src/pages/examine/myList.jsx

@@ -1,112 +1,122 @@
-import React, { Component } from 'react';
-import Taro from '@tarojs/taro';
-import { View,Image } from '@tarojs/components'
-import Skeleton from 'taro-skeleton';
-import {getClockState} from '../../utils/tools';
+import React, { Component } from "react";
+import Taro from "@tarojs/taro";
+import { View, Image } from "@tarojs/components";
+import Skeleton from "taro-skeleton";
+import { getClockState } from "../../utils/tools";
 
-import ListBottomStart  from '../../components/common/listBottomStart';
+import ListBottomStart from "../../components/common/listBottomStart";
 
-import RevokeWhite from '../../image/revokeWhite.png';
+import RevokeWhite from "../../image/revokeWhite.png";
 
-import './index.less';
+import "./index.less";
 
 class MyList extends Component {
-
   constructor(props) {
     super(props);
   }
 
-  render () {
-    let seeView = this.props.seeView
+  render() {
+    let seeView = this.props.seeView;
     // console.log(this.props.seeView);
     return (
-      <View className='indexPage'>
-        <View className='list'>
-          {
-            this.props.list.length === 0 && this.props.listState === 'LOADING' ?
-              [0,1,2,3].map(v=>(
-                <Skeleton
-                  key={v}
-                  title
-                  row={3}
-                  avatarShape='square'
-                  loading
-                />
-              )):
-              null
-          }
-          {
-            this.props.list.map((v,k)=>(
-              <View key={k} className='item' onClick={()=>{
+      <View className="indexPage">
+        <View className="list">
+          {this.props.list.length === 0 && this.props.listState === "LOADING"
+            ? [0, 1, 2, 3].map((v) => (
+                <Skeleton key={v} title row={3} avatarShape="square" loading />
+              ))
+            : null}
+          {this.props.list.map((v, k) => (
+            <View
+              key={k}
+              className="item"
+              onClick={() => {
                 Taro.navigateTo({
-                  url:'/pages/egressDetails/index?id='+v.id+'&index='+k+'&status='+seeView,
+                  url:
+                    "/pages/egressDetails/index?id=" +
+                    v.id +
+                    "&index=" +
+                    k +
+                    "&status=" +
+                    seeView,
                   // success: function (res) {
                   //   // 通过eventChannel向被打开页面传送数据
                   //   res.eventChannel.emit('seeView', { data:seeView })
                   // }
-                })
-              }}>
-                {v.status === 3 ? <View className='revoke'>
-                  <Image src={RevokeWhite} className='revokeImg'/>
-                </View> : null}
-                <View className='infor'>
-                  <View className='title'>
-                    <View className='aname'>{v.aname}提交的公出申请</View>
-                    <View className='createTimes'>{v.createTimes}</View>
-                  </View>
-                  <View className='userName'>
-                    公出企业:
-                    {v.nickname}
-                  </View>
-                  <View className='userName'>
-                    公出地点:
-                    {v.userName}
-                  </View>
-                  <View className='releaseStarts'>
-                    开始时间:{v.releaseStarts}
-                    {this.props.type === 0 && v.status !== 3? <View className='punchClock' onClick={(e)=>{
-                      e.stopPropagation();
-                      Taro.eventCenter.trigger('GoPunchIn',v)
-                      Taro.switchTab({
-                        url: '/pages/punchClock/index',
-                      })
-                    }}>
-                      {v.clockIn === 1 ? '更新打卡' : '去打卡'}
-                    </View> : null}
-                  </View>
-                  <View className='releaseEnds'>
-                    结束时间:{v.releaseEnds}
+                });
+              }}
+            >
+              {v.status === 3 ? (
+                <View className="revoke">
+                  <Image src={RevokeWhite} className="revokeImg" />
+                </View>
+              ) : null}
+              <View className="infor">
+                <View className="title">
+                  <View className="aname">
+                    {v.aname}提交的公出申请
+                    {v.updateStatus == 1 && <View className="aIcon">改</View>}
                   </View>
-                  <View className='bottomContent'>
-                    {
-                      v.clockIn === 1 ?
-                        <View className='clockIn' style={{color:'#6eb173'}}>
-                          已打卡
-                        </View> : <View className='clockIn' style={{color:'#dbc037'}}>
-                          未打卡
-                        </View>
-                    }
-                    <View className='status' style={{
-                      color:getClockState(v.status).color
-                    }}>
-                      {
-                        getClockState(v.status).title
-                      }
+                  <View className="createTimes">{v.createTimes}</View>
+                </View>
+                <View className="userName">
+                  公出企业:
+                  {v.nickname}
+                </View>
+                <View className="userName">
+                  公出地点:
+                  {v.userName}
+                </View>
+                <View className="releaseStarts">
+                  开始时间:{v.releaseStarts}
+                  {this.props.type === 0 && v.status !== 3 ? (
+                    <View
+                      className="punchClock"
+                      onClick={(e) => {
+                        e.stopPropagation();
+                        Taro.eventCenter.trigger("GoPunchIn", v);
+                        Taro.switchTab({
+                          url: "/pages/punchClock/index",
+                        });
+                      }}
+                    >
+                      {v.clockIn === 1 ? "更新打卡" : "去打卡"}
+                    </View>
+                  ) : null}
+                </View>
+                <View className="releaseEnds">结束时间:{v.releaseEnds}</View>
+                <View className="bottomContent">
+                  {v.clockIn === 1 ? (
+                    <View className="clockIn" style={{ color: "#6eb173" }}>
+                      已打卡
+                    </View>
+                  ) : (
+                    <View className="clockIn" style={{ color: "#dbc037" }}>
+                      未打卡
                     </View>
+                  )}
+                  <View
+                    className="status"
+                    style={{
+                      color: getClockState(v.status).color,
+                    }}
+                  >
+                    {getClockState(v.status).title}
                   </View>
                 </View>
               </View>
-            ))
-          }
+            </View>
+          ))}
           <ListBottomStart
             state={this.props.listState}
-            reload={()=>{
-              this.props.onRefresh
-            }}/>
+            reload={() => {
+              this.props.onRefresh;
+            }}
+          />
         </View>
       </View>
-    )
+    );
   }
 }
 
-export default MyList
+export default MyList;