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

+ 251 - 163
src/pages/egressDetails/enterprise.jsx

@@ -1,124 +1,137 @@
-import React, { Component } from 'react';
-import { View, Icon } from '@tarojs/components'
-import { getUserByName, getOrderByUid } from '../../utils/servers/servers';
+import React, { Component } from "react";
+import { View, Icon } from "@tarojs/components";
+import { getUserByName, getOrderByUid } from "../../utils/servers/servers";
 
-import { AtSearchBar, AtPagination, AtListItem } from 'taro-ui'
+import { AtSearchBar, AtPagination, AtListItem } from "taro-ui";
 
-import 'taro-ui/dist/style/components/search-bar.scss';
-import 'taro-ui/dist/style/components/button.scss';
-import 'taro-ui/dist/style/components/list.scss';
-import 'taro-ui/dist/style/components/icon.scss';
-import 'taro-ui/dist/style/components/pagination.scss';
+import "taro-ui/dist/style/components/search-bar.scss";
+import "taro-ui/dist/style/components/button.scss";
+import "taro-ui/dist/style/components/list.scss";
+import "taro-ui/dist/style/components/icon.scss";
+import "taro-ui/dist/style/components/pagination.scss";
 
-import ListBottomStart from '../../components/common/listBottomStart';
+import ListBottomStart from "../../components/common/listBottomStart";
 
-import Taro from '@tarojs/taro';
+import Taro from "@tarojs/taro";
 
 class Enterprise extends Component {
   constructor(props) {
     super(props);
     this.state = {
-      value: '',
+      value: "",
       list: [],
-      listState: 'NO_DATA',
+      listState: "NO_DATA",
       selectId: 0,
       pageNo: 1,
       listVisible: false,
       listValue: {},
       orderNo: [],
-      visibles: true
-    }
+      visibles: true,
+    };
     this.onChange = this.onChange.bind(this);
   }
 
   onChange(value, lv = true) {
     this.setState({
       value,
-    })
+    });
     if (value.length < 2 && !lv) {
-      Taro.showToast({ title: '最少输入两个字符', icon: 'none' })
-      return
+      Taro.showToast({ title: "最少输入两个字符", icon: "none" });
+      return;
+    }
+    if (value.length < 4 && lv) {
+      return;
     }
-    if (value.length < 4 && lv) { return }
-    this.getList(value)
+    this.getList(value);
   }
 
   componentWillUnmount() {
     this.setState({
-      value: '',
+      value: "",
       list: [],
-      listState: 'NO_DATA',
+      listState: "NO_DATA",
       selectId: 0,
       pageNo: 1,
       totalCount: 0,
-    })
+    });
   }
   getByUid(val) {
     this.setState({
-      listState: 'LOADING'
-    })
+      listState: "LOADING",
+    });
     getOrderByUid({
-      uid: val.id
+      uid: val.id,
     }).then((msg) => {
       if (msg.error.length === 0) {
         let data = msg.data;
         this.setState({
-          listState: 'NO_MORE_DATA',
-          orderNo: data
-        })
+          listState: "NO_MORE_DATA",
+          orderNo: data,
+        });
       } else {
-        Taro.showToast({ title: msg.error[0].message, icon: 'none' });
+        Taro.showToast({ title: msg.error[0].message, icon: "none" });
         this.setState({
-          listState: msg.error[0].field === '403' ? 'NO_DATA' : 'RELOAD'
-        })
+          listState: msg.error[0].field === "403" ? "NO_DATA" : "RELOAD",
+        });
       }
-    })
+    });
   }
   getList(value = this.state.value, pageNo = 1) {
-    Taro.showLoading({ title: '加载中...' })
+    Taro.showLoading({ title: "加载中..." });
     this.setState({
-      listState: 'LOADING'
-    })
+      listState: "LOADING",
+    });
     getUserByName({
       name: value,
       pageNo: pageNo,
       pageSize: 10,
-    }).then((msg) => {
-      Taro.hideLoading();
-      if (msg.error.length === 0) {
-        if (msg.data.totalCount === 0) {
-          this.setState({
-            listState: 'NO_DATA'
-          })
-        } else if (msg.data.totalCount === this.state.list.length && pageNo !== 1) {
-          Taro.showToast({ title: '没有更多数据了', icon: 'none' });
-          this.setState({
-            listState: 'NO_MORE_DATA'
-          })
-        } else {
-          if (msg.data.totalCount === (pageNo === 1 ? msg.data.list : this.state.list.concat(msg.data.list)).length) {
+    })
+      .then((msg) => {
+        Taro.hideLoading();
+        if (msg.error.length === 0) {
+          if (msg.data.totalCount === 0) {
+            this.setState({
+              listState: "NO_DATA",
+            });
+          } else if (
+            msg.data.totalCount === this.state.list.length &&
+            pageNo !== 1
+          ) {
+            Taro.showToast({ title: "没有更多数据了", icon: "none" });
             this.setState({
-              listState: 'NO_MORE_DATA'
-            })
+              listState: "NO_MORE_DATA",
+            });
+          } else {
+            if (
+              msg.data.totalCount ===
+              (pageNo === 1
+                ? msg.data.list
+                : this.state.list.concat(msg.data.list)
+              ).length
+            ) {
+              this.setState({
+                listState: "NO_MORE_DATA",
+              });
+            }
           }
+          this.setState({
+            list: msg.data.list,
+            pageNo: msg.data.pageNo,
+            totalCount: msg.data.totalCount,
+          });
+        } else {
+          Taro.showToast({ title: msg.error[0].message, icon: "none" });
+          this.setState({
+            listState: msg.error[0].field === "403" ? "NO_DATA" : "RELOAD",
+          });
         }
-        this.setState({
-          list: msg.data.list,
-          pageNo: msg.data.pageNo,
-          totalCount: msg.data.totalCount
-        })
-      } else {
-        Taro.showToast({ title: msg.error[0].message, icon: 'none' });
-        this.setState({
-          listState: msg.error[0].field === '403' ? 'NO_DATA' : 'RELOAD'
-        })
-      }
-    }).catch(() => {
-      Taro.hideLoading();
-      this.setState({
-        listState: 'RELOAD'
       })
-    })
+      .catch(() => {
+        Taro.hideLoading();
+        this.setState({
+          listState: "RELOAD",
+        });
+      });
   }
 
   render() {
@@ -127,81 +140,108 @@ class Enterprise extends Component {
         <AtSearchBar
           showActionButton
           value={this.state.value}
-          placeholder='请输入公出企业名称'
+          placeholder="请输入公出企业名称"
           onChange={this.onChange}
-          onActionClick={() => { this.onChange(this.state.value, false) }}
-          onConfirm={() => { this.onChange(this.state.value, false) }}
+          onActionClick={() => {
+            this.onChange(this.state.value, false);
+          }}
+          onConfirm={() => {
+            this.onChange(this.state.value, false);
+          }}
           onClear={() => {
-            this.setState({
-              value: '',
-              list: [],
-              orderNo: [],
-              listValue: {},
-              listVisible: false,
-              listState: 'NO_DATA',
-              selectId: 0,
-              pageNo: 1,
-              totalCount: 0
-            }, () => {
-              this.props.onChange({}, 0);
-            })
+            this.setState(
+              {
+                value: "",
+                list: [],
+                orderNo: [],
+                listValue: {},
+                listVisible: false,
+                listState: "NO_DATA",
+                selectId: 0,
+                pageNo: 1,
+                totalCount: 0,
+              },
+              () => {
+                this.props.onChange({}, 0);
+              }
+            );
           }}
         />
         <View>
-          {this.props.type == 0 ? <View> {this.state.list.map((v, k) => (
-            <View style={{
-              padding: '10px',
-              display: 'flex',
-              flexFlow: 'row',
-              alignItems: 'center',
-              justifyContent: 'space-between',
-              borderBottom: '1px #ece6e6 solid'
-            }} key={k} onClick={() => {
-              this.setState({
-                selectId: v.id
-              })
-              // this.getByUid(v)
-              this.props.onChange({ uid: v.id, nickname: v.name }, 0);
-            }}>
-              <View style={{ fontSize: '15px' }}>{v.name}</View>
-              {this.state.selectId === v.id ? <Icon size='20' type='success_no_circle' /> : null}
+          {this.props.type == 0 || this.props.type == 2 ? (
+            <View>
+              {" "}
+              {this.state.list.map((v, k) => (
+                <View
+                  style={{
+                    padding: "10px",
+                    display: "flex",
+                    flexFlow: "row",
+                    alignItems: "center",
+                    justifyContent: "space-between",
+                    borderBottom: "1px #ece6e6 solid",
+                  }}
+                  key={k}
+                  onClick={() => {
+                    this.setState({
+                      selectId: v.id,
+                    });
+                    // this.getByUid(v)
+                    this.props.onChange({ uid: v.id, nickname: v.name }, 0);
+                  }}
+                >
+                  <View style={{ fontSize: "15px" }}>{v.name}</View>
+                  {this.state.selectId === v.id ? (
+                    <Icon size="20" type="success_no_circle" />
+                  ) : null}
+                </View>
+              ))}{" "}
+              <ListBottomStart
+                type="pagination"
+                pageSize={10}
+                state={this.state.listState}
+                total={this.state.totalCount}
+                current={this.state.pageNo}
+                onPageChange={(type, current) => {
+                  this.getList(this.state.value, current);
+                }}
+                reload={() => {
+                  this.getList(this.state.value);
+                }}
+              />{" "}
             </View>
-          ))} <ListBottomStart
-              type='pagination'
-              pageSize={10}
-              state={this.state.listState}
-              total={this.state.totalCount}
-              current={this.state.pageNo}
-              onPageChange={(type, current) => {
-                this.getList(this.state.value, current);
-              }}
-              reload={() => {
-                this.getList(this.state.value);
-              }}
-            /> </View> :
-            !this.state.listVisible ? <View>{this.state.list.map((v, k) => (
-              <View style={{
-                padding: '10px',
-                display: 'flex',
-                flexFlow: 'row',
-                alignItems: 'center',
-                justifyContent: 'space-between',
-                borderBottom: '1px #ece6e6 solid'
-              }} key={k} onClick={() => {
-                this.setState({
-                  // selectId:v.id
-                  listValue: v,
-                  listVisible: true,
-                })
-                this.getByUid(v)
-                // this.props.onVisible()
-                // this.props.onChange({uid:v.id,nickname:v.name});
-              }}>
-                <View style={{ fontSize: '15px' }}>{v.name}</View>
-                {this.state.selectId === v.id ? <Icon size='20' type='success_no_circle' /> : null}
-              </View>
-            ))} <ListBottomStart
-                type='pagination'
+          ) : !this.state.listVisible ? (
+            <View>
+              {this.state.list.map((v, k) => (
+                <View
+                  style={{
+                    padding: "10px",
+                    display: "flex",
+                    flexFlow: "row",
+                    alignItems: "center",
+                    justifyContent: "space-between",
+                    borderBottom: "1px #ece6e6 solid",
+                  }}
+                  key={k}
+                  onClick={() => {
+                    this.setState({
+                      // selectId:v.id
+                      listValue: v,
+                      listVisible: true,
+                    });
+                    this.getByUid(v);
+                    // this.props.onVisible()
+                    // this.props.onChange({uid:v.id,nickname:v.name});
+                  }}
+                >
+                  <View style={{ fontSize: "15px" }}>{v.name}</View>
+                  {this.state.selectId === v.id ? (
+                    <Icon size="20" type="success_no_circle" />
+                  ) : null}
+                </View>
+              ))}{" "}
+              <ListBottomStart
+                type="pagination"
                 pageSize={10}
                 state={this.state.listState}
                 total={this.state.totalCount}
@@ -212,37 +252,85 @@ class Enterprise extends Component {
                 reload={() => {
                   this.getList(this.state.value);
                 }}
-              /> </View> : ''
-          }
-          {
-            this.state.listVisible && this.props.type == 1 ? (<View><AtListItem
-              title={this.state.listValue.name}
-              arrow='right'
-              iconInfo={{ size: 25, color: '#000000', value: 'bookmark', }}
-
-            />
+              />{" "}
+            </View>
+          ) : (
+            ""
+          )}
+          {this.state.listVisible && this.props.type == 1 ? (
+            <View>
+              <AtListItem
+                title={this.state.listValue.name}
+                arrow="right"
+                iconInfo={{ size: 25, color: "#000000", value: "bookmark" }}
+              />
               <View>
-                {this.state.orderNo.length > 0 ? <View> {this.state.orderNo.map((v, k) => (
-                  <View key={k} style={{ display: 'flex', justifyContent: ' center', marginBottom: '20px' }}>
-                    编号:<View>{v.contractNo}</View><View style={{ width: '60px', height: '24px', backgroundColor: '#5599FF', borderRadius: '15px', textAlign: 'center', lineHeight: '24px', marginLeft: '20px', color: 'white' }} circle onClick={() => {
-                      this.setState({
-                        listVisible: false,
-                      })
-                      v.id = this.state.listValue.id
-                      v.name = this.state.listValue.name
-                      this.props.onChange({ uid: v.id, nickname: v.name, orderNo: v.orderNo,contractNo:v.contractNo}, 1);
-                      // Taro.eventCenter.trigger('enterprise', v)
-                    }}>选择</View>
+                {this.state.orderNo.length > 0 ? (
+                  <View>
+                    {" "}
+                    {this.state.orderNo.map((v, k) => (
+                      <View
+                        key={k}
+                        style={{
+                          display: "flex",
+                          justifyContent: " center",
+                          marginBottom: "20px",
+                        }}
+                      >
+                        编号:<View>{v.contractNo}</View>
+                        <View
+                          style={{
+                            width: "60px",
+                            height: "24px",
+                            backgroundColor: "#5599FF",
+                            borderRadius: "15px",
+                            textAlign: "center",
+                            lineHeight: "24px",
+                            marginLeft: "20px",
+                            color: "white",
+                          }}
+                          circle
+                          onClick={() => {
+                            this.setState({
+                              listVisible: false,
+                            });
+                            v.id = this.state.listValue.id;
+                            v.name = this.state.listValue.name;
+                            this.props.onChange(
+                              {
+                                uid: v.id,
+                                nickname: v.name,
+                                orderNo: v.orderNo,
+                                contractNo: v.contractNo,
+                              },
+                              1
+                            );
+                            // Taro.eventCenter.trigger('enterprise', v)
+                          }}
+                        >
+                          选择
+                        </View>
+                      </View>
+                    ))}
+                    <View
+                      style={{ color: "red", width: "260px", margin: "0 auto" }}
+                    >
+                      注:请选择正确的派单编号!公出信息将统计至对应的订单中。
+                    </View>
+                  </View>
+                ) : (
+                  <View style={{ color: "red" }}>
+                    该企业暂无订单,无法技术公出!请联系营销员查询派单情况
                   </View>
-                ))}<View style={{ color: 'red', width: '260px', margin: '0 auto' }} >
-                    注:请选择正确的派单编号!公出信息将统计至对应的订单中。
-            </View></View> : <View style={{ color: 'red' }}>该企业暂无订单,无法技术公出!请联系营销员查询派单情况</View>}
+                )}
               </View>
-            </View>) : ''
-          }
+            </View>
+          ) : (
+            ""
+          )}
         </View>
       </>
-    )
+    );
   }
 }
 

+ 464 - 354
src/pages/egressDetails/index.jsx

@@ -1,29 +1,40 @@
 import React, { Component } from "react";
-import { View, Image, Button } from '@tarojs/components'
+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 {
+  AtButton,
+  AtCalendar,
+  AtIcon,
+  AtTextarea,
+  AtModal,
+  AtModalContent,
+  AtModalAction,
+} from "taro-ui";
+import Skeleton from "taro-skeleton";
 
-import InquiryModal from '../../components/common/inquiryModal';
+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 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 "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";
@@ -31,20 +42,19 @@ import { getClockState } from "../../utils/tools";
 import HistoricalClock from "../../components/historicalClock";
 
 class EgressDetails extends Component {
-
-  $instance = getCurrentInstance()
+  $instance = getCurrentInstance();
 
   constructor(props) {
     super(props);
     this.state = {
       dtails: {},
-      opinion: '',
+      opinion: "",
       publicReleaseLog: [],
       isDetailedOpened: false,
       isModifyOpened: false,
       selectArrderLocation: {},
-      current: ''
-    }
+      current: "",
+    };
     this.examinePublicRelease = this.examinePublicRelease.bind(this);
     this.getReleasetDails = this.getReleasetDails.bind(this);
     this.oidApplication = this.oidApplication.bind(this);
@@ -52,415 +62,513 @@ class EgressDetails extends Component {
 
   componentDidMount() {
     this.setState({
-      current: this.$instance.router.params.status || '',
-    })
+      current: this.$instance.router.params.status || "",
+    });
     console.log(this.$instance.router.params.status);
     this.getReleasetDails();
   }
 
   componentDidShow() {
     //获取地区选定数据
-    const chooseLocation = requirePlugin('chooseLocation');
+    const chooseLocation = requirePlugin("chooseLocation");
     const location = chooseLocation.getLocation();
     if (location) {
       this.setState({
-        selectArrderLocation: location
-      })
+        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 })
+      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,
+            });
           }
-          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,
-          })
+          Taro.showToast({ title: v.error[0].message, icon: "none" });
         }
-      } else {
-        Taro.showToast({ title: v.error[0].message, icon: 'none' })
-      }
-    }).catch(err => {
-      Taro.showToast({ title: '系统错误,请稍后再试', icon: 'none' });
-      console.log(err)
-    })
+      })
+      .catch((err) => {
+        Taro.showToast({ title: "系统错误,请稍后再试", icon: "none" });
+        console.log(err);
+      });
   }
 
   examinePublicRelease(status) {
     if (!this.state.opinion) {
-      Taro.showToast({ title: '请填写审批意见', icon: 'none' })
+      Taro.showToast({ title: "请填写审批意见", icon: "none" });
       return;
     }
-    Taro.showLoading({ title: '加载中...' })
+    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' })
+      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
-    }
+      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' })
+      Taro.showToast({ title: "请填写撤销原因", icon: "none" });
       return;
     }
     this.setState({
-      loading: true
-    })
+      loading: true,
+    });
     updatePublicRelease({
       id: this.$instance.router.params.id,
       status: 3,
-      uid:this.state.dtails.uid,
+      uid: this.state.dtails.uid,
       reason: this.state.reasonsInvalidation,
-    }).then(v => {
-      this.setState({
-        loading: false
-      })
-      if (v.error.length === 0) {
-        Taro.showToast({
-          title: '修改成功',
-        })
+    })
+      .then((v) => {
         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
+          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;
     console.log(dtails);
     return (
-      <View className='egressDetails'>
+      <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
+          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}提交的公出申请</View>
-              <View className='address'>
-                申请时间: {dtails.createTimes}
+              <View className="title">{dtails.aname}提交的公出申请</View>
+              <View className="address">申请时间: {dtails.createTimes}</View>
+              <View
+                className="state"
+                style={{
+                  color: getClockState(dtails.status).color,
+                }}
+              >
+                {getClockState(dtails.status).title}
               </View>
-              <View className='state' style={{
-                color: getClockState(dtails.status).color
-              }}>
-                {
-                  getClockState(dtails.status).title
+              <Image
+                src={
+                  dtails.status === 0
+                    ? Rejected
+                    : dtails.status === 1
+                    ? Reviewed
+                    : dtails.status === 2
+                    ? Passed
+                    : dtails.status === 3
+                    ? Revoke
+                    : ""
                 }
-              </View>
-              <Image src={
-                dtails.status === 0 ? Rejected :
-                  dtails.status === 1 ? Reviewed :
-                    dtails.status === 2 ? Passed :
-                      dtails.status === 3 ? Revoke : ''} className='startIcon' />
+                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'>
+        {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 ?
-                  <View className='edit' onClick={() => {
-                    this.setState({
-                      isModifyOpened: true,
-                    })
-                  }}>
-                    <AtIcon value='edit' size='18' color='#3864ef' />
-                  </View> : null}
+                {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 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' />
+                <View className="timeAxis">
+                  <View className="startTime">
+                    <View className="circle" />
                     {dtails.releaseStarts}
                   </View>
-                  <View className='axis' />
-                  <View className='endTime'>
-                    <View className='circle' />
+                  <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}>
+            <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
-                }
+                {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>
+                <Button
+                  onClick={() => {
+                    this.setState({
+                      isDetailedOpened: false,
+                    });
+                  }}
+                >
+                  确定
+                </Button>
               </AtModalAction>
             </AtModal>
-            <View className='item'>
-              <View className='title'>公出类型:</View>
-              <View className='value'>{dtails.type == 1 ? '技术公出' : '业务/行政公出'}</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 className="item">
+              <View className="title">公出类型:</View>
+              <View className="value">
+                {dtails.type == 0
+                  ? "业务公出"
+                  : dtails.type == 1
+                  ? "技术公出"
+                  : dtails.type == 2 && "行政公出"}
               </View>
-              <View className='value'>
-                {dtails.nickname}
+            </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 className="item">
+              <View className="title">公出目标</View>
+              <View className="value">{dtails.remarks}</View>
             </View>
             {/* 公出计划 */}
-            <View className='item'>
-              <View className='title'>公出计划</View>
-              <View className='value'>
-                {dtails.plan}
+            {dtails.type != 2 && (
+              <View className="item">
+                <View className="title">公出计划</View>
+                <View className="value">{dtails.plan}</View>
               </View>
-            </View>
+            )}
             {/* 预计效果 */}
-            <View className='item'>
-              <View className='title'>预计效果</View>
-              <View className='value'>
-                {dtails.expectedEffect}
+            {dtails.type != 2 && (
+              <View className="item">
+                <View className="title">预计效果</View>
+                <View className="value">{dtails.expectedEffect}</View>
               </View>
-            </View>
-            {dtails.annexUrl && dtails.annexUrl.length > 0 ? <View className='item'>
-              <View className='title'>附件</View>
-              <View className='value'>
-                <ImagePicker
-                  files={dtails.annexUrl}
-                  showAddBtn={false} />
+            )}
+            {dtails.annexUrl && dtails.annexUrl.length > 0 ? (
+              <View className="item">
+                <View className="title">附件</View>
+                <View className="value">
+                  <ImagePicker files={dtails.annexUrl} showAddBtn={false} />
+                </View>
               </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={() => {
+            ) : 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: '您确定要驳回此申请吗?',
+                      inquiryTitle: "提醒",
+                      inquiryContent: "您确定要驳回此申请吗?",
                       inquiryFn: () => {
                         this.examinePublicRelease(0);
-                      }
-                    })
-                  }}>
-                    驳回
-                  </AtButton>
-                  <AtButton type='primary' loading={this.state.loading} circle onClick={() => {
-                    if (this.state.loading) { return; }
+                      },
+                    });
+                  }}
+                >
+                  驳回
+                </AtButton>
+                <AtButton
+                  type="primary"
+                  loading={this.state.loading}
+                  circle
+                  onClick={() => {
+                    if (this.state.loading) {
+                      return;
+                    }
                     this.setState({
                       isInquiryOpened: true,
-                      inquiryTitle: '提醒',
-                      inquiryContent: '您确定要同意此申请吗?',
+                      inquiryTitle: "提醒",
+                      inquiryContent: "您确定要同意此申请吗?",
                       inquiryFn: () => {
                         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; }
+                      },
+                    });
+                  }}
+                >
+                  同意
+                </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: '您确定要撤销此申请吗?',
+                      inquiryTitle: "提醒",
+                      inquiryContent: "您确定要撤销此申请吗?",
                       inquiryFn: () => {
                         this.oidApplication();
-                      }
-                    })
-                  }}>
-                    撤销申请
-                  </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
-            })
-          }}>
+                      },
+                    });
+                  }}
+                >
+                  撤销申请
+                </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' />
+            <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 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}
-          onModalClose={() => {
-            this.setState({
-              isModifyOpened: false,
-            })
-          }}
-          onClose={() => {
-            this.setState({
-              isModifyOpened: false,
-              dtails: {}
-            }, () => {
-              this.getReleasetDails();
-            })
-          }} /> : null}
+          </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}
+            onModalClose={() => {
+              this.setState({
+                isModifyOpened: false,
+              });
+            }}
+            onClose={() => {
+              this.setState(
+                {
+                  isModifyOpened: false,
+                  dtails: {},
+                },
+                () => {
+                  this.getReleasetDails();
+                }
+              );
+            }}
+          />
+        ) : null}
         <InquiryModal
           isOpened={this.state.isInquiryOpened}
           title={this.state.inquiryTitle}
@@ -468,31 +576,33 @@ class EgressDetails extends Component {
           onClose={() => {
             this.setState({
               isInquiryOpened: false,
-              inquiryTitle: '',
-              inquiryContent: '',
-            })
+              inquiryTitle: "",
+              inquiryContent: "",
+            });
           }}
           onDetermine={() => {
             this.state.inquiryFn();
             this.setState({
               isInquiryOpened: false,
-              inquiryTitle: '',
-              inquiryContent: '',
-              inquiryFn: () => { }
-            })
+              inquiryTitle: "",
+              inquiryContent: "",
+              inquiryFn: () => {},
+            });
           }}
         />
-        {this.state.historicalIsOpened ? <HistoricalClock
-          id={this.$instance.router.params.id}
-          isOpened={this.state.historicalIsOpened}
-          onClose={() => {
-            this.setState({
-              historicalIsOpened: false
-            })
-          }}
-        /> : null}
+        {this.state.historicalIsOpened ? (
+          <HistoricalClock
+            id={this.$instance.router.params.id}
+            isOpened={this.state.historicalIsOpened}
+            onClose={() => {
+              this.setState({
+                historicalIsOpened: false,
+              });
+            }}
+          />
+        ) : null}
       </View>
-    )
+    );
   }
 }
 

+ 97 - 60
src/pages/egressDetails/modify.jsx

@@ -1,12 +1,18 @@
 import React, { Component } from "react";
-import { AtCalendar, AtModal, AtModalAction, AtModalContent, AtButton } from "taro-ui";
+import {
+  AtCalendar,
+  AtModal,
+  AtModalAction,
+  AtModalContent,
+  AtButton,
+} from "taro-ui";
 import { Button, View } from "@tarojs/components";
-import Enterprise from './enterprise';
-import PublicContent from './publicContent';
+import Enterprise from "./enterprise";
+import PublicContent from "./publicContent";
 
-import { updatePublicRelease } from '../../utils/servers/servers';
+import { updatePublicRelease } from "../../utils/servers/servers";
 
-import 'taro-ui/dist/style/components/modal.scss';
+import "taro-ui/dist/style/components/modal.scss";
 import Taro from "@tarojs/taro";
 
 class Modify extends Component {
@@ -16,37 +22,37 @@ class Modify extends Component {
       data: {},
       dtails: props.dtails,
       modifyType: 1,
-      colors: 'primary',
-      color: 'secondary',
+      // colors: "primary",
+      // color: "secondary",
       type: 0,
-      visibles:true,
-    }
+      visibles: true,
+    };
     this.submit = this.submit.bind(this);
     this.onChange = this.onChange.bind(this);
     this.onVisible = this.onVisible.bind(this);
   }
 
   submit() {
-    if (Object.keys(this.state.data).length === 0 ) {
-      Taro.showToast({ title: '请先选择公出的企业', icon: 'none' })
+    if (Object.keys(this.state.data).length === 0) {
+      Taro.showToast({ title: "请先选择公出的企业", icon: "none" });
       return;
-    } else if(this.state.type == 1) {
-      Taro.showToast({ title: '技术公出请直接点击公出企业', icon: 'none' })
+    } else if (this.state.type == 1) {
+      Taro.showToast({ title: "技术公出请直接点击公出企业", icon: "none" });
       return;
     }
     this.setState({
-      modifyType: 2
-    })
+      modifyType: 2,
+    });
   }
-  onVisible () {
+  onVisible() {
     this.setState({
-      visibles:false
-    })
+      visibles: false,
+    });
   }
   componentWillUnmount() {
     this.setState({
-      data: {}
-    })
+      data: {},
+    });
   }
 
   onChange(value, visi) {
@@ -57,26 +63,52 @@ class Modify extends Component {
           ...value,
         },
         data: value,
-      })
+      });
     } else {
-      value.type = this.state.type
+      value.type = this.state.type;
       this.setState({
         dtails: {
           ...this.state.dtails,
           ...value,
         },
         data: value,
-        modifyType: 2
-      })
+        modifyType: 2,
+      });
     }
   }
 
   render() {
     return (
       <AtModal isOpened={this.props.isOpened} onClose={this.props.onModalClose}>
-        {
-          this.state.modifyType === 1 ? <View style={{ display: 'flex', margin: '10px 0 0 0' }}>
-            <View style={{ margin: '0 10px' }}>
+        {this.state.modifyType === 1 ? (
+          <View
+            style={{ display: "flex", margin: "10px 0 0 0", padding: "0 5px" }}
+          >
+            {[
+              { type: 0, title: "业务公出" },
+              { type: 1, title: "技术公出" },
+              { type: 2, title: "行政公出" },
+            ].map((item) => (
+              <View style={{ margin: "0 5px" }} key={item.type}>
+                <AtButton
+                  circle
+                  size="small"
+                  type={this.state.type == item.type ? "primary" : "secondary"}
+                  onClick={() => {
+                    this.setState({
+                      type: item.type,
+                    });
+                    item.type != 1 &&
+                      this.setState({
+                        visibles: true,
+                      });
+                  }}
+                >
+                  {item.title}
+                </AtButton>
+              </View>
+            ))}
+            {/* <View style={{ margin: '0 10px' }}>
               <AtButton circle size='small' type={this.state.colors} onClick={() => {
                 this.setState({
                   colors: 'primary',
@@ -92,44 +124,49 @@ class Modify extends Component {
                 color: 'primary',
                 type: 1,
               })
-            }}>技术公出</AtButton>
-            <View style={{ flex: '1' }}></View>
-          </View> : ''
-        }
+            }}>技术公出</AtButton> */}
+            <View style={{ flex: "1" }}></View>
+          </View>
+        ) : (
+          ""
+        )}
 
         <AtModalContent>
-          {
-            this.state.modifyType === 1 ?
-              <Enterprise type={this.state.type}  isOpened={this.props.isOpened} onChange={this.onChange} /> :
-              <PublicContent
-                permission={this.props.permission}
-                index={this.props.index}
-                onClose={() => {
-                  this.props.onClose();
-                }}
-                locationInfor={this.props.locationInfor}
-                dtails={this.state.dtails}
-                isOpened={this.props.isOpened}
-                onChange={this.onChange}
-              />
-          }
+          {this.state.modifyType === 1 ? (
+            <Enterprise
+              type={this.state.type}
+              isOpened={this.props.isOpened}
+              onChange={this.onChange}
+            />
+          ) : (
+            <PublicContent
+              permission={this.props.permission}
+              index={this.props.index}
+              type={this.state.type}
+              onClose={() => {
+                this.props.onClose();
+              }}
+              locationInfor={this.props.locationInfor}
+              dtails={this.state.dtails}
+              isOpened={this.props.isOpened}
+              onChange={this.onChange}
+            />
+          )}
         </AtModalContent>
-        {
-          this.state.modifyType === 1 ?
-            <AtModalAction>
-              <Button onClick={() => {
+        {this.state.modifyType === 1 ? (
+          <AtModalAction>
+            <Button
+              onClick={() => {
                 this.props.onClose();
-              }}>
-                取消
-              </Button>
-              <Button onClick={this.submit}>
-                下一步
-              </Button>
-            </AtModalAction> :
-            null
-        }
+              }}
+            >
+              取消
+            </Button>
+            <Button onClick={this.submit}>下一步</Button>
+          </AtModalAction>
+        ) : null}
       </AtModal>
-    )
+    );
   }
 }
 

+ 454 - 312
src/pages/egressDetails/publicContent.jsx

@@ -1,39 +1,42 @@
-import React, { Component } from 'react';
-import Taro from '@tarojs/taro';
-import { Text, View } from '@tarojs/components'
-import dayjs from 'dayjs';
-import './index.less';
+import React, { Component } from "react";
+import Taro from "@tarojs/taro";
+import { Text, View } from "@tarojs/components";
+import dayjs from "dayjs";
+import "./index.less";
 
-import ImagePicker from '../../components/common/imagePicker'
-import { resourceAddress } from '../../utils/config';
+import ImagePicker from "../../components/common/imagePicker";
+import { resourceAddress } from "../../utils/config";
 
-import { AtButton, AtTextarea, AtIcon, AtCalendar } from 'taro-ui'
-import { updatePublicRelease, getWorkingHoursList } from '../../utils/servers/servers';
+import { AtButton, AtTextarea, AtIcon, AtCalendar } from "taro-ui";
+import {
+  updatePublicRelease,
+  getWorkingHoursList,
+} from "../../utils/servers/servers";
 
-import { getHours, getNumHourse, getUserWordTimes } from '../../utils/tools';
+import { getHours, getNumHourse, getUserWordTimes } from "../../utils/tools";
 
-import 'taro-ui/dist/style/components/form.scss';
-import 'taro-ui/dist/style/components/button.scss';
-import 'taro-ui/dist/style/components/loading.scss';
-import 'taro-ui/dist/style/components/icon.scss';
-import 'taro-ui/dist/style/components/icon.scss';
-import 'taro-ui/dist/style/components/textarea.scss';
-import 'taro-ui/dist/style/components/calendar.scss';
+import "taro-ui/dist/style/components/form.scss";
+import "taro-ui/dist/style/components/button.scss";
+import "taro-ui/dist/style/components/loading.scss";
+import "taro-ui/dist/style/components/icon.scss";
+import "taro-ui/dist/style/components/icon.scss";
+import "taro-ui/dist/style/components/textarea.scss";
+import "taro-ui/dist/style/components/calendar.scss";
 
-import './publicContent.less';
+import "./publicContent.less";
 import InquiryModal from "../../components/common/inquiryModal";
 
 class PublicContent extends Component {
   constructor(props) {
     super(props);
     this.state = {
-      rangeStartVal: '',
-      rangeEndVal: '',
-      rangeEndMinuteVal: '',
-      rangeStartMinuteVal: '',
-      reason: '',
-      plan: '',
-      expectedEffect: '',
+      rangeStartVal: "",
+      rangeEndVal: "",
+      rangeEndMinuteVal: "",
+      rangeStartMinuteVal: "",
+      reason: "",
+      plan: "",
+      expectedEffect: "",
       imgs: [],
       validDates: [],
       totalDuration: 0,
@@ -41,7 +44,7 @@ class PublicContent extends Component {
       workTypeList: [],
       workType: 0,
       isPickerRender: false,
-    }
+    };
     this.onSubmit = this.onSubmit.bind(this);
     this.selectArrder = this.selectArrder.bind(this);
     this.onChange = this.onChange.bind(this);
@@ -55,101 +58,116 @@ class PublicContent extends Component {
   componentDidMount() {
     let arr = [];
     for (let i of this.props.dtails.annexUrl) {
-      arr.push(i.url.split(resourceAddress).join(""))
+      arr.push(i.url.split(resourceAddress).join(""));
     }
     this.setState({
       imgs: arr,
       totalDuration: this.props.dtails.duration,
       reason: this.props.dtails.remarks,
       validDates: JSON.parse(this.props.dtails.validDate),
-      rangeEndVal: dayjs(this.props.dtails.releaseEnds).format('YYYY-MM-DD'),
-      rangeEndMinuteVal: dayjs(this.props.dtails.releaseEnds).format('YYYY-MM-DD HH:mm:ss'),
-      rangeStartVal: dayjs(this.props.dtails.releaseStarts).format('YYYY-MM-DD'),
-      rangeStartMinuteVal: dayjs(this.props.dtails.releaseStarts).format('YYYY-MM-DD HH:mm:ss'),
+      rangeEndVal: dayjs(this.props.dtails.releaseEnds).format("YYYY-MM-DD"),
+      rangeEndMinuteVal: dayjs(this.props.dtails.releaseEnds).format(
+        "YYYY-MM-DD HH:mm:ss"
+      ),
+      rangeStartVal: dayjs(this.props.dtails.releaseStarts).format(
+        "YYYY-MM-DD"
+      ),
+      rangeStartMinuteVal: dayjs(this.props.dtails.releaseStarts).format(
+        "YYYY-MM-DD HH:mm:ss"
+      ),
       plan: this.props.dtails.plan,
       expectedEffect: this.props.dtails.expectedEffect,
-    })
+    });
     this.getWorkingHoursList();
   }
 
   componentWillUnmount() {
     this.imagePickerRef && this.imagePickerRef.clear();
     this.setState({
-      rangeStartVal: '',
-      rangeEndVal: '',
-      rangeEndMinuteVal: '',
-      rangeStartMinuteVal: '',
-      reason: '',
-      plan: '',
-      expectedEffect: '',
+      rangeStartVal: "",
+      rangeEndVal: "",
+      rangeEndMinuteVal: "",
+      rangeStartMinuteVal: "",
+      reason: "",
+      plan: "",
+      expectedEffect: "",
       imgs: [],
       validDates: [],
       totalDuration: 0,
       loading: false,
-    })
+    });
   }
 
   getWorkingHoursList() {
-    getWorkingHoursList({}).then((v) => {
-      if (v.error.length === 0) {
-        let obj = Taro.getStorageSync('userInfor');
-        let index = v.data.findIndex(value => value.type === obj.workTimeInfor.type);
-        this.setState({
-          workType: index !== -1 ? index : 0
-        })
-        this.setState({
-          workTypeList: v.data
-        })
-      } else {
-        Taro.showToast({
-          title: v.error[0].message,
-          icon: 'none'
-        })
-      }
-    }).catch(err => {
-      console.log(err)
-    })
+    getWorkingHoursList({})
+      .then((v) => {
+        if (v.error.length === 0) {
+          let obj = Taro.getStorageSync("userInfor");
+          let index = v.data.findIndex(
+            (value) => value.type === obj.workTimeInfor.type
+          );
+          this.setState({
+            workType: index !== -1 ? index : 0,
+          });
+          this.setState({
+            workTypeList: v.data,
+          });
+        } else {
+          Taro.showToast({
+            title: v.error[0].message,
+            icon: "none",
+          });
+        }
+      })
+      .catch((err) => {
+        console.log(err);
+      });
   }
 
   getNumHourse(startTime, endTime) {
     this.setState({
-      totalDuration: getNumHourse(startTime, endTime, this.state.validDates.length)
-    })
+      totalDuration: getNumHourse(
+        startTime,
+        endTime,
+        this.state.validDates.length
+      ),
+    });
   }
 
-
   onSubmit() {
     if (!this.state.rangeStartMinuteVal) {
-      Taro.showToast({ title: '请选择公出时间', icon: 'none' })
+      Taro.showToast({ title: "请选择公出时间", icon: "none" });
       return;
     }
     if (!this.state.rangeEndMinuteVal) {
-      Taro.showToast({ title: '请选择公出时间', icon: 'none' })
+      Taro.showToast({ title: "请选择公出时间", icon: "none" });
       return;
     }
-    if (!(this.props.locationInfor.longitude && this.props.locationInfor.latitude)) {
-      Taro.showToast({ title: '请选择公出地点', icon: 'none' })
+    if (
+      !(this.props.locationInfor.longitude && this.props.locationInfor.latitude)
+    ) {
+      Taro.showToast({ title: "请选择公出地点", icon: "none" });
       return;
     }
     if (!this.state.reason) {
-      Taro.showToast({ title: '请输入公出目标', icon: 'none' })
+      Taro.showToast({ title: "请输入公出目标", icon: "none" });
       return;
     }
     if (!this.state.plan) {
-      Taro.showToast({ title: '请输入公出计划', icon: 'none' })
+      Taro.showToast({ title: "请输入公出计划", icon: "none" });
       return;
     }
     if (!this.state.expectedEffect) {
-      Taro.showToast({ title: '请输入预计效果', icon: 'none' })
+      Taro.showToast({ title: "请输入预计效果", icon: "none" });
       return;
     }
     if (this.state.totalDuration === 0) {
-      Taro.showToast({ title: '公出时间不足0小时', icon: 'none' })
+      Taro.showToast({ title: "公出时间不足0小时", icon: "none" });
       return;
     }
     this.setState({
-      loading: true
-    })
+      loading: true,
+    });
     let datas;
     if (this.props.dtails.type == 0) {
       datas = {
@@ -163,11 +181,31 @@ class PublicContent extends Component {
         userName: this.props.locationInfor.name,
         longitude: this.props.locationInfor.longitude,
         latitude: this.props.locationInfor.latitude,
-        annexUrl: this.state.imgs.length === 0 ? '' : this.state.imgs.join(','),
+        annexUrl: this.state.imgs.length === 0 ? "" : this.state.imgs.join(","),
         duration: this.state.totalDuration,
         validDate: JSON.stringify(this.state.validDates),
-        type: this.props.dtails.type,
-      }
+        // type: this.props.dtails.type,
+        type: this.props.type,
+      };
+    } else if (this.props.dtails.type == 2) {
+      datas = {
+        id: this.props.dtails.id,
+        uid: this.props.dtails.uid,
+        releaseStarts: this.state.rangeStartMinuteVal,
+        releaseEnds: this.state.rangeEndMinuteVal,
+        remarks: this.state.reason,
+        // plan: this.state.plan,
+        // expectedEffect: this.state.expectedEffect,
+        userName: this.props.locationInfor.name,
+        longitude: this.props.locationInfor.longitude,
+        latitude: this.props.locationInfor.latitude,
+        annexUrl: this.state.imgs.length === 0 ? "" : this.state.imgs.join(","),
+        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 {
       datas = {
         id: this.props.dtails.id,
@@ -180,62 +218,71 @@ class PublicContent extends Component {
         userName: this.props.locationInfor.name,
         longitude: this.props.locationInfor.longitude,
         latitude: this.props.locationInfor.latitude,
-        annexUrl: this.state.imgs.length === 0 ? '' : this.state.imgs.join(','),
+        annexUrl: this.state.imgs.length === 0 ? "" : this.state.imgs.join(","),
         duration: this.state.totalDuration,
         validDate: JSON.stringify(this.state.validDates),
-        type: this.props.dtails.type,
+        // type: this.props.dtails.type,
+        type: this.props.type,
         orderNo: this.props.dtails.orderNo,
-      }
+      };
     }
-    updatePublicRelease(datas).then(v => {
-      this.setState({
-        loading: false
-      })
-      if (v.error.length === 0) {
-        Taro.showToast({
-          title: '修改成功',
-        })
-        Taro.eventCenter.trigger('listOperation', {
-          type: this.props.permission,
-          index: this.props.index,
-          status: 1,
-          userName: this.props.locationInfor.name,
-          releaseStarts: this.state.rangeStartMinuteVal,
-          releaseEnds: this.state.rangeEndMinuteVal,
-        })
-        this.props.onClose();
-      } else {
-        Taro.showToast({
-          title: v.error[0].message,
-          icon: 'none'
-        })
-      }
-    }).catch(() => {
-      this.setState({
-        loading: false
+    updatePublicRelease(datas)
+      .then((v) => {
+        this.setState({
+          loading: false,
+        });
+        if (v.error.length === 0) {
+          Taro.showToast({
+            title: "修改成功",
+          });
+          Taro.eventCenter.trigger("listOperation", {
+            type: this.props.permission,
+            index: this.props.index,
+            status: 1,
+            userName: this.props.locationInfor.name,
+            releaseStarts: this.state.rangeStartMinuteVal,
+            releaseEnds: this.state.rangeEndMinuteVal,
+          });
+          this.props.onClose();
+        } else {
+          Taro.showToast({
+            title: v.error[0].message,
+            icon: "none",
+          });
+        }
       })
-    });
+      .catch(() => {
+        this.setState({
+          loading: false,
+        });
+      });
   }
 
   selectArrder() {
-    const key = 'AWBBZ-GRAC2-JFYUO-CLA7I-JAHXK-YFFGT'; //使用在腾讯位置服务申请的key
-    const referer = '科德打卡定位'; //调用插件的app的名称
-    const category = '公司企业,房产小区';
+    const key = "AWBBZ-GRAC2-JFYUO-CLA7I-JAHXK-YFFGT"; //使用在腾讯位置服务申请的key
+    const referer = "科德打卡定位"; //调用插件的app的名称
+    const category = "公司企业,房产小区";
     Taro.navigateTo({
-      url: 'plugin://chooseLocation/index?key=' + key + '&referer=' + referer + '&category=' + category
+      url:
+        "plugin://chooseLocation/index?key=" +
+        key +
+        "&referer=" +
+        referer +
+        "&category=" +
+        category,
     });
   }
 
   onChange(value, type) {
     let arr = this.state.imgs.concat([]);
-    if (type === 'add') {
-      arr.push(value)
-    } else if (type === 'remove') {
-      arr.splice(value, 1)
+    if (type === "add") {
+      arr.push(value);
+    } else if (type === "remove") {
+      arr.splice(value, 1);
     }
     this.setState({
       imgs: arr,
-    })
+    });
   }
 
   onPickerHide() {
@@ -248,94 +295,118 @@ class PublicContent extends Component {
     let data = val.detail;
     this.setState({
       rangeStartMinuteVal: data.selectStartTime,
-      rangeEndMinuteVal: data.selectEndTime
+      rangeEndMinuteVal: data.selectEndTime,
     });
 
     let arr = [];
     if (data.startTime && data.endTime) {
       let a = dayjs(data.startTime);
       let b = dayjs(data.endTime);
-      let num = b.diff(a, 'day') + 1;
+      let num = b.diff(a, "day") + 1;
       let strAdd = data.startTime;
       for (let i = 0; i < num; i++) {
-        let time = dayjs(strAdd).add(i, 'days').format('YYYY-MM-DD');
+        let time = dayjs(strAdd).add(i, "days").format("YYYY-MM-DD");
         arr.push({ value: time });
       }
     }
-    this.setState({
-      rangeEndVal: dayjs(data.endTime).format('YYYY-MM-DD'),
-      rangeStartVal: dayjs(data.startTime).format('YYYY-MM-DD'),
-      validDates: arr,
-    }, () => {
-      let a1 = dayjs(dayjs(data.endTime).format('YYYY-MM-DD HH:mm:ss'));
-      let b1 = dayjs(dayjs(data.startTime).format('YYYY-MM-DD  HH:mm:ss'));
-      this.getNumHourse(b1, a1)
-    })
+    this.setState(
+      {
+        rangeEndVal: dayjs(data.endTime).format("YYYY-MM-DD"),
+        rangeStartVal: dayjs(data.startTime).format("YYYY-MM-DD"),
+        validDates: arr,
+      },
+      () => {
+        let a1 = dayjs(dayjs(data.endTime).format("YYYY-MM-DD HH:mm:ss"));
+        let b1 = dayjs(dayjs(data.startTime).format("YYYY-MM-DD  HH:mm:ss"));
+        this.getNumHourse(b1, a1);
+      }
+    );
   }
 
   render() {
-    const { dtails } = this.props;
-    console.log(dtails);
+    const { dtails, type } = this.props;
+    console.log(type, "+++---", dtails);
     return (
-      <View className='publicContent'>
-        <View className='formItem'>
-          <View className='formName'>公出企业:</View>
-          <View className='formValue'>{dtails.nickname}</View>
+      <View className="publicContent">
+        <View className="formItem">
+          <View className="formName">
+            公出企业:
+          </View>
+          <View className="formValue">{dtails.nickname}</View>
         </View>
-        <View className='formItem'>
-          <View className='formName'>公出类型:</View>
-          <View className='formValue'>{dtails.type == 1 ? '技术公出' : '业务/行政公出'}</View>
-        </View> 
-       { dtails.contractNo ? <View className='formItem'>
-          <View className='formName'>合同编号:</View>
-          <View className='formValue'>{dtails.contractNo}</View>
-        </View> : ''}
-        <View className='formItem'>
-          <View className='formName'>作息时间类型:</View>
-          <View className='formValue'>
-            <picker onChange={(e) => {
-              this.setState({
-                workType: e.detail.value
-              })
-              if (this.state.workTypeList[e.detail.value]) {
-                let obj = Taro.getStorageSync('userInfor');
-                obj.workTimeInfor = this.state.workTypeList[e.detail.value];
-                Taro.setStorageSync('userInfor', obj);
+        <View className="formItem">
+          <View className="formName">公出类型:</View>
+          <View className="formValue">
+            {type == 0
+              ? "业务公出"
+              : type == 1
+              ? "技术公出"
+              : type == 2 && "行政公出"}
+          </View>
+        </View>
+        {dtails.contractNo ? (
+          <View className="formItem">
+            <View className="formName">合同编号:</View>
+            <View className="formValue">{dtails.contractNo}</View>
+          </View>
+        ) : (
+          ""
+        )}
+        <View className="formItem">
+          <View className="formName">作息时间类型:</View>
+          <View className="formValue">
+            <picker
+              onChange={(e) => {
                 this.setState({
-                  rangeStartVal: '',
-                  rangeStartMinuteVal: '',
-                  rangeEndMinuteVal: '',
-                  rangeEndVal: '',
-                  validDates: [],
-                  totalDuration: 0
-                })
-              }
-            }} value={this.state.workType} rangeKey='name' range={this.state.workTypeList}>
-              <view style={{ display: 'flex', alignItems: 'center' }}>
-                {this.state.workTypeList[this.state.workType] ? this.state.workTypeList[this.state.workType].name : ''}
-                <AtIcon value='chevron-right' size='20' color='#bbbbbb' />
+                  workType: e.detail.value,
+                });
+                if (this.state.workTypeList[e.detail.value]) {
+                  let obj = Taro.getStorageSync("userInfor");
+                  obj.workTimeInfor = this.state.workTypeList[e.detail.value];
+                  Taro.setStorageSync("userInfor", obj);
+                  this.setState({
+                    rangeStartVal: "",
+                    rangeStartMinuteVal: "",
+                    rangeEndMinuteVal: "",
+                    rangeEndVal: "",
+                    validDates: [],
+                    totalDuration: 0,
+                  });
+                }
+              }}
+              value={this.state.workType}
+              rangeKey="name"
+              range={this.state.workTypeList}
+            >
+              <view style={{ display: "flex", alignItems: "center" }}>
+                {this.state.workTypeList[this.state.workType]
+                  ? this.state.workTypeList[this.state.workType].name
+                  : ""}
+                <AtIcon value="chevron-right" size="20" color="#bbbbbb" />
               </view>
             </picker>
           </View>
         </View>
-        <View className='formItem'>
-          <View className='formName'>公出时间:</View>
-          <View className='formValue'>
-            <View className='time' onClick={() => {
-              this.setState({
-                isPickerRender: true
-              })
-            }}>
-              {
-                this.state.rangeStartMinuteVal && this.state.rangeEndMinuteVal ? <View className='timeContent'>
-                  <View>
-                    开始时间:{this.state.rangeStartMinuteVal}
-                  </View>
-                  <View>
-                    结束时间:{this.state.rangeEndMinuteVal}
-                  </View>
-                </View> : '请选择公出时间'
-              }
+        <View className="formItem">
+          <View className="formName">公出时间:</View>
+          <View className="formValue">
+            <View
+              className="time"
+              onClick={() => {
+                this.setState({
+                  isPickerRender: true,
+                });
+              }}
+            >
+              {this.state.rangeStartMinuteVal &&
+              this.state.rangeEndMinuteVal ? (
+                <View className="timeContent">
+                  <View>开始时间:{this.state.rangeStartMinuteVal}</View>
+                  <View>结束时间:{this.state.rangeEndMinuteVal}</View>
+                </View>
+              ) : (
+                "请选择公出时间"
+              )}
             </View>
             <timePicker
               config={{
@@ -343,168 +414,239 @@ class PublicContent extends Component {
                 column: "minute",
                 dateLimit: false,
                 initStartTime: this.state.rangeStartMinuteVal, //默认开始时间
-                initEndTime: this.state.rangeEndMinuteVal,   //默认结束时间
-                limitStartTime: dayjs().subtract(3, 'year').format('YYYY-MM-DD HH:mm:ss'),
-                limitEndTime: dayjs().add(3, 'year').format('YYYY-MM-DD HH:mm:ss')
+                initEndTime: this.state.rangeEndMinuteVal, //默认结束时间
+                limitStartTime: dayjs()
+                  .subtract(3, "year")
+                  .format("YYYY-MM-DD HH:mm:ss"),
+                limitEndTime: dayjs()
+                  .add(3, "year")
+                  .format("YYYY-MM-DD HH:mm:ss"),
               }}
               isPartition
               pickerShow={this.state.isPickerRender}
               onconditionaljudgment={(v) => {
-                let a = dayjs(dayjs(v.detail.endTime).second(0).format('YYYY-MM-DD HH:mm:ss'));
-                let b = dayjs(dayjs().second(0).format('YYYY-MM-DD HH:mm:ss'))
+                let a = dayjs(
+                  dayjs(v.detail.endTime)
+                    .second(0)
+                    .format("YYYY-MM-DD HH:mm:ss")
+                );
+                let b = dayjs(dayjs().second(0).format("YYYY-MM-DD HH:mm:ss"));
                 if (a.isBefore(b)) {
                   Taro.showToast({
-                    title: '结束时间不能小于当前时间',
-                    icon: 'none'
-                  })
+                    title: "结束时间不能小于当前时间",
+                    icon: "none",
+                  });
                   v.detail.setLv(false);
                 }
               }}
               onhidepicker={() => {
-                this.onPickerHide()
+                this.onPickerHide();
               }}
               onsetpickertime={(v) => {
-                this.onSetPickerTime(v)
-              }} />
+                this.onSetPickerTime(v);
+              }}
+            />
           </View>
         </View>
-        <View className='formItem'>
-          <View className='formName'>总时长:</View>
-          <View className='formValue'>
-            {this.state.totalDuration}小时
-          </View>
+        <View className="formItem">
+          <View className="formName">总时长:</View>
+          <View className="formValue">{this.state.totalDuration}小时</View>
         </View>
-        {this.state.validDates.length !== 0 ? <View className='formItem' style={{ display: 'block', paddingTop: '15px' }}>
-          <View className='formName'>
-            <View>去除放假时间:</View>
-            <View className='tips'>绿色方块为公出时间,长按即可去除放假时间</View>
-          </View>
-          <AtCalendar
-            currentDate={this.state.rangeStartVal}
-            minDate={this.state.rangeStartVal}
-            maxDate={this.state.rangeEndVal}
-            isSwiper={false}
-            validDates={this.state.validDates}
-            onDayLongClick={(item) => {
-              if (!(dayjs(item.value).isSame(this.state.rangeStartVal) || dayjs(item.value).isSame(this.state.rangeEndVal))) {
-                if (!(dayjs(item.value).isAfter(this.state.rangeStartVal) && dayjs(item.value).isBefore(this.state.rangeEndVal))) {
+        {this.state.validDates.length !== 0 ? (
+          <View
+            className="formItem"
+            style={{ display: "block", paddingTop: "15px" }}
+          >
+            <View className="formName">
+              <View>去除放假时间:</View>
+              <View className="tips">
+                绿色方块为公出时间,长按即可去除放假时间
+              </View>
+            </View>
+            <AtCalendar
+              currentDate={this.state.rangeStartVal}
+              minDate={this.state.rangeStartVal}
+              maxDate={this.state.rangeEndVal}
+              isSwiper={false}
+              validDates={this.state.validDates}
+              onDayLongClick={(item) => {
+                if (
+                  !(
+                    dayjs(item.value).isSame(this.state.rangeStartVal) ||
+                    dayjs(item.value).isSame(this.state.rangeEndVal)
+                  )
+                ) {
+                  if (
+                    !(
+                      dayjs(item.value).isAfter(this.state.rangeStartVal) &&
+                      dayjs(item.value).isBefore(this.state.rangeEndVal)
+                    )
+                  ) {
+                    return;
+                  }
+                } else {
+                  Taro.showToast({
+                    title: "开始结束时间不能取消",
+                    icon: "none",
+                  });
                   return;
                 }
-              } else {
-                Taro.showToast({ title: '开始结束时间不能取消', icon: 'none' })
-                return
-              }
-              let index = this.state.validDates.findIndex(v => {
-                let lv = dayjs(v.value).isSame(item.value);
-                return lv
-              })
-              const { start, end } = getUserWordTimes();
-              let totalDuration = getHours(dayjs().format('YYYY-MM-DD') + start, dayjs(dayjs().format('YYYY-MM-DD') + end));   //一天工作时长
-              if (index < 0) {
-                let arr = item.value.split('-');
-                this.state.validDates.push({ value: arr.join('-') })
-                this.setState({
-                  validDates: this.state.validDates,
-                  totalDuration: this.state.totalDuration + totalDuration
-                })
-              } else {
-                this.state.validDates.splice(index, 1)
-                this.setState({
-                  validDates: this.state.validDates,
-                  totalDuration: this.state.totalDuration - totalDuration
-                })
-              }
-            }}
-          />
-        </View> : null}
-        <View className='formItem' style={{
-          paddingBottom: 0
-        }}>
-          <View className='formName'>公出地点:</View>
-          <View className='formValue' onClick={this.selectArrder}>
-            <Text className='formValueText'>{this.props.locationInfor.name}</Text>
-            <AtIcon value='chevron-right' size='30' color='#bbbbbb' />
+                let index = this.state.validDates.findIndex((v) => {
+                  let lv = dayjs(v.value).isSame(item.value);
+                  return lv;
+                });
+                const { start, end } = getUserWordTimes();
+                let totalDuration = getHours(
+                  dayjs().format("YYYY-MM-DD") + start,
+                  dayjs(dayjs().format("YYYY-MM-DD") + end)
+                ); //一天工作时长
+                if (index < 0) {
+                  let arr = item.value.split("-");
+                  this.state.validDates.push({ value: arr.join("-") });
+                  this.setState({
+                    validDates: this.state.validDates,
+                    totalDuration: this.state.totalDuration + totalDuration,
+                  });
+                } else {
+                  this.state.validDates.splice(index, 1);
+                  this.setState({
+                    validDates: this.state.validDates,
+                    totalDuration: this.state.totalDuration - totalDuration,
+                  });
+                }
+              }}
+            />
           </View>
+        ) : null}
+        <View
+          className="formItem"
+          style={{
+            paddingBottom: 0,
+          }}
+        >
+          <View className="formName">公出地点:</View>
+          <View className="formValue" onClick={this.selectArrder}>
+            <Text className="formValueText">
+              {this.props.locationInfor.name}
+            </Text>
+            <AtIcon value="chevron-right" size="30" color="#bbbbbb" />
+          </View>
+        </View>
+        <View className="tips">
+          以地图为中心100米范围为可打卡区域,移动红标只需要拖动地图即可
         </View>
-        <View className='tips'>以地图为中心100米范围为可打卡区域,移动红标只需要拖动地图即可</View>
-        <View className='formItem' style={{ display: 'block', paddingTop: '15px' }}>
+        <View
+          className="formItem"
+          style={{ display: "block", paddingTop: "15px" }}
+        >
           {/* 公出目标 */}
-          <View className='formName'><Text style={{ color: 'red' }}>*公出目标:</Text>
-            <View className='formValue' style={{ paddingTop: '10px', textAlign: 'left' }}>
+          <View className="formName">
+            <Text style={{ color: "red" }}>*公出目标:</Text>
+            <View
+              className="formValue"
+              style={{ paddingTop: "10px", textAlign: "left" }}
+            >
               <AtTextarea
                 height={46}
                 value={this.state.reason}
                 onChange={(v) => {
                   this.setState({
-                    reason: v
-                  })
+                    reason: v,
+                  });
                 }}
                 maxLength={200}
-                placeholder='本次公出目标,谈的思路与步骤?'
+                placeholder="本次公出目标,谈的思路与步骤?"
               />
             </View>
           </View>
           {/* 公出计划 */}
-          <View className='formName'><Text style={{ color: 'red' }}>*公出计划:</Text>
-            <View className='formValue' style={{ paddingTop: '10px', textAlign: 'left' }}>
-              <AtTextarea
-                height={46}
-                value={this.state.plan}
-                onChange={(v) => {
-                  this.setState({
-                    plan: v
-                  })
-                }}
-                maxLength={200}
-                placeholder='本次公出准备工作'
-              />
+          {type != 2 && (
+            <View className="formName">
+              <Text style={{ color: "red" }}>*公出计划:</Text>
+              <View
+                className="formValue"
+                style={{ paddingTop: "10px", textAlign: "left" }}
+              >
+                <AtTextarea
+                  height={46}
+                  value={this.state.plan}
+                  onChange={(v) => {
+                    this.setState({
+                      plan: v,
+                    });
+                  }}
+                  maxLength={200}
+                  placeholder="本次公出准备工作"
+                />
+              </View>
             </View>
-          </View>
+          )}
           {/* 预计效果 */}
-          <View className='formName'><Text style={{ color: 'red' }}>*预计效果:</Text>
-            <View className='formValue' style={{ paddingTop: '10px', textAlign: 'left' }}>
-              <AtTextarea
-                height={46}
-                value={this.state.expectedEffect}
-                onChange={(v) => {
-                  this.setState({
-                    expectedEffect: v
-                  })
-                }}
-                maxLength={200}
-                placeholder='预计本次公出效果'
-              />
+          {type != 2 && (
+            <View className="formName">
+              <Text style={{ color: "red" }}>*预计效果:</Text>
+              <View
+                className="formValue"
+                style={{ paddingTop: "10px", textAlign: "left" }}
+              >
+                <AtTextarea
+                  height={46}
+                  value={this.state.expectedEffect}
+                  onChange={(v) => {
+                    this.setState({
+                      expectedEffect: v,
+                    });
+                  }}
+                  maxLength={200}
+                  placeholder="预计本次公出效果"
+                />
+              </View>
             </View>
-          </View>
+          )}
         </View>
-        <View className='formItem' style={{ display: 'block' }}>
-          <View className='formName'>附件:</View>
-          <View className='formValue' style={{ paddingTop: '10px', textAlign: 'left' }}>
-            {dtails.annexUrl && this.props.isOpened ? <ImagePicker
-              files={dtails.annexUrl}
-              showAddBtn={true}
-              ref={ref => this.imagePickerRef = ref}
-              url='/api/admin/release/upload'
-              onChange={this.onChange}
-            /> : null}
+        <View className="formItem" style={{ display: "block" }}>
+          <View className="formName">附件:</View>
+          <View
+            className="formValue"
+            style={{ paddingTop: "10px", textAlign: "left" }}
+          >
+            {dtails.annexUrl && this.props.isOpened ? (
+              <ImagePicker
+                files={dtails.annexUrl}
+                showAddBtn={true}
+                ref={(ref) => (this.imagePickerRef = ref)}
+                url="/api/admin/release/upload"
+                onChange={this.onChange}
+              />
+            ) : null}
           </View>
         </View>
-        <View className='operation'>
-          <AtButton disabled={this.state.loading} type='secondary' circle onClick={() => {
-            this.props.onClose();
-          }}>
+        <View className="operation">
+          <AtButton
+            disabled={this.state.loading}
+            type="secondary"
+            circle
+            onClick={() => {
+              this.props.onClose();
+            }}
+          >
             取消
           </AtButton>
-          <AtButton type='primary' loading={this.state.loading} circle onClick={() => {
-            this.setState({
-              isInquiryOpened: true,
-              inquiryTitle: '提醒',
-              inquiryContent: '您确定要修改此申请吗?',
-              inquiryFn: () => {
-                this.onSubmit();
-              }
-            })
-          }}>
+          <AtButton
+            type="primary"
+            loading={this.state.loading}
+            circle
+            onClick={() => {
+              this.setState({
+                isInquiryOpened: true,
+                inquiryTitle: "提醒",
+                inquiryContent: "您确定要修改此申请吗?",
+                inquiryFn: () => {
+                  this.onSubmit();
+                },
+              });
+            }}
+          >
             确定修改
           </AtButton>
         </View>
@@ -515,22 +657,22 @@ class PublicContent extends Component {
           onClose={() => {
             this.setState({
               isInquiryOpened: false,
-              inquiryTitle: '',
-              inquiryContent: '',
-            })
+              inquiryTitle: "",
+              inquiryContent: "",
+            });
           }}
           onDetermine={() => {
             this.state.inquiryFn();
             this.setState({
               isInquiryOpened: false,
-              inquiryTitle: '',
-              inquiryContent: '',
-              inquiryFn: () => { }
-            })
+              inquiryTitle: "",
+              inquiryContent: "",
+              inquiryFn: () => {},
+            });
           }}
         />
       </View>
-    )
+    );
   }
 }