Bläddra i källkod

新增技术协单

dev01 2 år sedan
förälder
incheckning
c3c9663378

+ 120 - 0
src/components/common/userquery/index.jsx

@@ -0,0 +1,120 @@
+import React, { Component } from "react";
+import { View, Button } from "@tarojs/components";
+import { AtModal, AtModalContent, AtSearchBar, AtList, AtListItem } from "taro-ui";
+import { getadminByName } from "../../../utils/servers/servers";
+import './index.less';
+import "taro-ui/dist/style/components/modal.scss";
+import Taro from "@tarojs/taro";
+
+class UserQuery extends Component {
+  constructor(props) {
+    super(props);
+    this.state = {
+      value: "",
+      list: [],
+      listState: "NO_DATA",
+      pageNo: 1,
+      listVisible: false,
+      listValue: {},
+    };
+    this.onChange = this.onChange.bind(this);
+  }
+
+  onChange(value, lv = true) {
+    this.setState({
+      value,
+    });
+    if (value.length < 2 && !lv) {
+      Taro.showToast({ title: "最少输入两个字符", icon: "none" });
+      return;
+    }
+    if (value.length < 4 && lv) {
+      return;
+    }
+    this.getList(value);
+  }
+
+  getList(value = this.state.value, pageNo = 1) {
+    this.setState({
+      listState: "LOADING",
+    });
+    getadminByName({
+      adminName: value,
+      pageNo: pageNo,
+      pageSize: 10,
+    })
+      .then((msg) => {
+        if (msg.error.length === 0) {
+          this.setState({
+            list: msg.data
+          })
+        } else {
+          Taro.showToast({ title: msg.error[0].message, icon: "none" });
+          this.setState({
+            listState: msg.error[0].field === "403" ? "NO_DATA" : "RELOAD",
+          });
+        }
+      })
+      .catch(() => {
+        this.setState({
+          listState: "RELOAD",
+        });
+      });
+  }
+
+
+  render() {
+    const { coorderList, cList } = this.props
+    return (
+      <AtModal isOpened={this.props.isOpened} onClose={this.props.onDesc}>
+        <AtModalContent>
+          <AtSearchBar
+            showActionButton
+            value={this.state.value}
+            onChange={this.onChange}
+            onActionClick={() => {
+              this.onChange(this.state.value, false);
+            }}
+            onConfirm={() => {
+              this.onChange(this.state.value, false);
+            }}
+            onClear={() => {
+              this.setState({
+                value: "",
+                list: [],
+                listState: "NO_DATA",
+                pageNo: 1,
+                listVisible: false,
+              });
+            }}
+          />
+          <AtList>
+            {
+              this.state.list.map(v =>
+                <View key={v.id}>
+                  <AtListItem
+                    title={v.name}
+                    onClick={() => {
+                      console.log("coorderList==", coorderList)
+                      if (coorderList.includes(v.id)) {
+                        Taro.showToast({ title: "你已经邀请过Ta了", icon: "none" });
+                        return
+                      } else {
+                        coorderList.push(v.id);
+                        cList.push(v);
+                        this.props.setList(cList, coorderList);
+                        this.props.onDesc();
+                      }
+                    }}
+                  />
+                </View>
+              )
+            }
+          </AtList>
+        </AtModalContent>
+      </AtModal>
+    );
+  }
+}
+
+export default UserQuery;

+ 35 - 34
src/components/historicalClock/index.jsx

@@ -1,22 +1,22 @@
-import React,{Component} from "react";
-import {AtModal, AtModalAction, AtModalContent, AtIcon } from "taro-ui";
-import {Button, Image,View} from "@tarojs/components";
+import React, { Component } from "react";
+import { AtModal, AtModalAction, AtModalContent, AtIcon } from "taro-ui";
+import { Button, Image, View } from "@tarojs/components";
 import Taro from "@tarojs/taro";
 
 import './index.less';
 
-import {getListPublicReleaseLog} from '../../utils/servers/servers';
+import { getListPublicReleaseLog } from '../../utils/servers/servers';
 
 import "taro-ui/dist/style/components/icon.scss";
-import {getClockState} from "../../utils/tools";
+import { getClockState } from "../../utils/tools";
 import ImagePicker from "../common/imagePicker";
-import {resourceAddress} from "../../utils/config";
+import { resourceAddress } from "../../utils/config";
 
-class HistoricalClock extends Component{
+class HistoricalClock extends Component {
   constructor(props) {
     super(props);
-    this.state={
-      publicReleaseLog:[]
+    this.state = {
+      publicReleaseLog: []
     }
     this.getListPublicReleaseLog = this.getListPublicReleaseLog.bind(this);
   }
@@ -25,33 +25,33 @@ class HistoricalClock extends Component{
     this.getListPublicReleaseLog();
   }
 
-  getListPublicReleaseLog(){
+  getListPublicReleaseLog() {
     Taro.showLoading({
-      title:'加载中...'
+      title: '加载中...'
     })
     getListPublicReleaseLog({
-      id:this.props.id
-    }).then(v=>{
+      id: this.props.id
+    }).then(v => {
       Taro.hideLoading();
-      if(v.error.length === 0){
-        for(let d of v.data){
+      if (v.error.length === 0) {
+        for (let d of v.data) {
           let list = [];
-          for(let i of (d.photoUrl || '').split(',')){
-            if(i){
-              list.push({'url':resourceAddress + i})
+          for (let i of (d.photoUrl || '').split(',')) {
+            if (i) {
+              list.push({ 'url': resourceAddress + i })
             }
           }
           d.photoUrl = list;
         }
         this.setState({
-          publicReleaseLog:v.data,
+          publicReleaseLog: v.data,
         })
-      }else{
-        Taro.showToast({title:v.error[0].message,icon:'none'})
+      } else {
+        Taro.showToast({ title: v.error[0].message, icon: 'none' })
       }
-    }).catch(err=>{
+    }).catch(err => {
       Taro.hideLoading();
-      Taro.showToast({title:'系统错误.请稍后重试',icon:'none'})
+      Taro.showToast({ title: '系统错误.请稍后重试', icon: 'none' })
       console.log(err)
     })
   }
@@ -59,43 +59,44 @@ class HistoricalClock extends Component{
   render() {
     return (
       <AtModal
+        width="90%"
         isOpened={this.props.isOpened}
         onClose={this.props.onClose}
         onCancel={this.props.onClose}>
         <AtModalContent>
           <View className='historicalClock'>
             {
-              this.state.publicReleaseLog.map((v,k)=>(
+              this.state.publicReleaseLog.map((v, k) => (
                 <View key={k} className='item'>
                   <View className='head'>
-                    <View className='spot'/>
+                    <View className='spot' />
                     <View className='clockTime' style={{
-                      color:getClockState(v.status,true).color
+                      color: getClockState(v.status, true).color
                     }}>
-                      {getClockState(v.status,true).title}
+                      {getClockState(v.status, true).title}
                     </View>
                   </View>
                   <View className='clockContent'>
                     <View className='verticalLine' style={{
-                      visibility:this.state.publicReleaseLog[k+1] ? 'visible' : 'hidden'
-                    }}/>
+                      visibility: this.state.publicReleaseLog[k + 1] ? 'visible' : 'hidden'
+                    }} />
                     <View className='rightContent' style={{
-                      paddingBottom:this.state.publicReleaseLog[k+1] ? '30px' : 0
+                      paddingBottom: this.state.publicReleaseLog[k + 1] ? '30px' : 0
                     }}>
                       <View className='contentItem'>
-                        <AtIcon className='atIcon' value='user' size='15' color='#999999'/>
+                        <AtIcon className='atIcon' value='user' size='15' color='#999999' />
                         操作人:{v.aname}
                       </View>
                       <View className='contentItem'>
-                        <AtIcon className='atIcon' value='clock' size='15' color='#999999'/>
+                        <AtIcon className='atIcon' value='clock' size='15' color='#999999' />
                         操作时间:{v.createTimes}
                       </View>
                       {v.remarks ? <View className='contentItem'>
-                        <AtIcon className='atIcon' value='message' size='15' color='#999999'/>
+                        <AtIcon className='atIcon' value='message' size='15' color='#999999' />
                         备注:{v.remarks}
                       </View> : null}
                       {v.photoUrl.length !== 0 ? <View className='contentItem'>
-                        <AtIcon className='atIcon' value='file-generic' size='15' color='#999999'/>
+                        <AtIcon className='atIcon' value='file-generic' size='15' color='#999999' />
                         附件:
                         <ImagePicker
                           files={v.photoUrl || []}

+ 93 - 55
src/pages/applyDepart/publicContent.jsx

@@ -1,6 +1,6 @@
 import React, { Component } from "react";
 import Taro from "@tarojs/taro";
-import { Text, View } from "@tarojs/components";
+import { Button, Text, View } from "@tarojs/components";
 import dayjs from "dayjs";
 import "./index.less";
 
@@ -27,7 +27,8 @@ import "taro-ui/dist/style/components/textarea.scss";
 import "taro-ui/dist/style/components/calendar.scss";
 
 import "./publicContent.less";
-import InquiryModal from "../../components/common/inquiryModal";
+import InquiryModal from "../../components/common/inquiryModal"; //提示弹窗
+import UserQuery from "../../components/common/userquery"; //选择协单人弹窗
 
 class PublicContent extends Component {
   constructor(props) {
@@ -46,8 +47,10 @@ class PublicContent extends Component {
       loading: false,
       workTypeList: [],
       workType: 0,
-
       isPickerRender: false,
+      coorderList: [],
+      cList: [],
+      popup: false,
     };
     this.onSubmit = this.onSubmit.bind(this);
     this.selectArrder = this.selectArrder.bind(this);
@@ -128,55 +131,41 @@ class PublicContent extends Component {
     this.setState({
       loading: true,
     });
-    let datas;
+    let datas = {
+      uid: this.props.enterpriseInfor.id,
+      releaseStarts: this.state.rangeStartMinuteVal,
+      releaseEnds: this.state.rangeEndMinuteVal,
+      remarks: this.state.reason,
+      // plan: this.state.plan,
+      // expectedEffect: this.state.expectedEffect,
+      userName: this.props.selectArrderLocation.name,
+      longitude: this.props.selectArrderLocation.longitude,
+      latitude: this.props.selectArrderLocation.latitude,
+      annexUrl: this.state.imgs.length === 0 ? "" : this.state.imgs.join(","),
+      duration: this.state.totalDuration,
+      type: this.props.enterpriseInfor.type,
+      validDate: JSON.stringify(this.state.validDates),
+      assist: this.state.coorderList.length === 0 ? 0 : 1,
+      assistAid: this.state.coorderList.length === 0 ? "" : this.state.coorderList.join(","),
+    };
     if (this.props.enterpriseInfor.type == 0) {
       datas = {
-        uid: this.props.enterpriseInfor.id,
-        releaseStarts: this.state.rangeStartMinuteVal,
-        releaseEnds: this.state.rangeEndMinuteVal,
-        remarks: this.state.reason,
-        plan: this.state.plan,
-        expectedEffect: this.state.expectedEffect,
-        userName: this.props.selectArrderLocation.name,
-        longitude: this.props.selectArrderLocation.longitude,
-        latitude: this.props.selectArrderLocation.latitude,
-        annexUrl: this.state.imgs.length === 0 ? "" : this.state.imgs.join(","),
-        duration: this.state.totalDuration,
-        type: this.props.enterpriseInfor.type,
-        validDate: JSON.stringify(this.state.validDates),
+        ...datas,
+        ...{
+          plan: this.state.plan,
+          expectedEffect: this.state.expectedEffect,
+        }
       };
     } else if (this.props.enterpriseInfor.type == 2) {
-      datas = {
-        uid: this.props.enterpriseInfor.id,
-        releaseStarts: this.state.rangeStartMinuteVal,
-        releaseEnds: this.state.rangeEndMinuteVal,
-        remarks: this.state.reason,
-        // plan: this.state.plan,
-        // expectedEffect: this.state.expectedEffect,
-        userName: this.props.selectArrderLocation.name,
-        longitude: this.props.selectArrderLocation.longitude,
-        latitude: this.props.selectArrderLocation.latitude,
-        annexUrl: this.state.imgs.length === 0 ? "" : this.state.imgs.join(","),
-        duration: this.state.totalDuration,
-        type: this.props.enterpriseInfor.type,
-        validDate: JSON.stringify(this.state.validDates),
-      };
+      datas = datas;
     } else {
       datas = {
-        uid: this.props.enterpriseInfor.id,
-        releaseStarts: this.state.rangeStartMinuteVal,
-        releaseEnds: this.state.rangeEndMinuteVal,
-        remarks: this.state.reason,
-        plan: this.state.plan,
-        expectedEffect: this.state.expectedEffect,
-        userName: this.props.selectArrderLocation.name,
-        longitude: this.props.selectArrderLocation.longitude,
-        latitude: this.props.selectArrderLocation.latitude,
-        annexUrl: this.state.imgs.length === 0 ? "" : this.state.imgs.join(","),
-        duration: this.state.totalDuration,
-        type: this.props.enterpriseInfor.type,
-        orderNo: this.props.enterpriseInfor.orderNo,
-        validDate: JSON.stringify(this.state.validDates),
+        ...datas,
+        ...{
+          plan: this.state.plan,
+          expectedEffect: this.state.expectedEffect,
+          orderNo: this.props.enterpriseInfor.orderNo,
+        }
       };
     }
     addPublicRelease(datas)
@@ -294,8 +283,22 @@ class PublicContent extends Component {
       }
     );
   }
+  // 新增技术协单
+  setList(list, arr) {
+    this.setState({
+      cList: list,
+      coorderList: arr
+    })
+  }
+  // 弹窗开关
+  popupClick() {
+    this.setState({
+      popup: !this.state.popup
+    })
+  }
 
   render() {
+    const { cList, coorderList, popup } = this.state
     return (
       <View className="publicContent">
         <View className="formItem">
@@ -306,10 +309,8 @@ class PublicContent extends Component {
           <View className="formName">公出类型:</View>
           <View className="formValue">
             {this.props.enterpriseInfor.type == 0
-              ? "业务公出"
-              : this.props.enterpriseInfor.type == 1
-              ? "技术公出"
-              : this.props.enterpriseInfor.type == 2 && "行政公出"}
+              ? "业务公出" : this.props.enterpriseInfor.type == 1
+                ? "技术公出" : this.props.enterpriseInfor.type == 2 && "行政公出"}
           </View>
         </View>
         {this.props.enterpriseInfor.contractNo ? (
@@ -369,7 +370,7 @@ class PublicContent extends Component {
               }}
             >
               {this.state.rangeStartMinuteVal &&
-              this.state.rangeEndMinuteVal ? (
+                this.state.rangeEndMinuteVal ? (
                 <View className="timeContent">
                   <View>开始时间:{this.state.rangeStartMinuteVal}</View>
                   <View>结束时间:{this.state.rangeEndMinuteVal}</View>
@@ -429,9 +430,9 @@ class PublicContent extends Component {
           >
             <View className="formName">
               <View>去除放假时间:</View>
-              <View className="tips">
-                绿色方块为公出时间,长按即可去除放假时间
-              </View>
+            </View>
+            <View className="tips">
+              绿色方块为公出时间,长按即可去除放假时间
             </View>
             <AtCalendar
               currentDate={this.state.rangeStartVal}
@@ -500,6 +501,34 @@ class PublicContent extends Component {
         <View className="tips">
           以地图为中心100米范围为可打卡区域,移动红标只需要拖动地图即可
         </View>
+        <View className="formItems" style={{ paddingBottom: 0, marginTop: 10 }}>
+          <View className="formNames">技术协单: </View>
+          <View className="formValues">
+            {
+              cList.length == 0
+                ? <Text>无</Text>
+                : cList.map((item, index) =>
+                  <View className="fitems" key={index}>
+                    {item.name}
+                    <View className="fclose"
+                      onClick={() => {
+                        coorderList.includes(item.id) &&
+                          (
+                            cList.splice(coorderList.indexOf(item.id), 1),
+                            coorderList.splice(coorderList.indexOf(item.id), 1)
+                          )
+                        this.setState({
+                          cList,
+                          coorderList,
+                        })
+                      }}
+                    ><AtIcon value="close-circle" size="15" color="#bbbbbb" /></View>
+                  </View>
+                )
+            }
+            {cList.length < 5 && <Button className="addbuttom" type='primary' onClick={this.popupClick.bind(this)}>新增技术协单</Button>}
+          </View>
+        </View>
         <View
           className="formItem"
           style={{ display: "block", paddingTop: "15px" }}
@@ -637,10 +666,19 @@ class PublicContent extends Component {
               isInquiryOpened: false,
               inquiryTitle: "",
               inquiryContent: "",
-              inquiryFn: () => {},
+              inquiryFn: () => { },
             });
           }}
         />
+        {popup &&
+          <UserQuery
+            isOpened={popup}
+            onDesc={this.popupClick.bind(this)}
+            cList={cList}
+            coorderList={coorderList}
+            setList={this.setList.bind(this)}
+          />
+        }
       </View>
     );
   }

+ 1 - 1
src/pages/applyDepart/publicContent.less

@@ -105,7 +105,7 @@
       }
 
       .addbuttom {
-        font-size: 20px;
+        font-size: 22px;
         padding: 0 10px;
         margin-left: 20px;
       }

+ 26 - 19
src/pages/egressDetails/index.jsx

@@ -232,9 +232,9 @@ class EgressDetails extends Component {
       title:
         this.state.dtails.status === 3
           ? this.state.dtails.aname +
-            "撤销了前往" +
-            this.state.dtails.userName +
-            "的公出"
+          "撤销了前往" +
+          this.state.dtails.userName +
+          "的公出"
           : this.state.dtails.aname + "将要去" + this.state.dtails.userName,
       path: "pages/egressDetails/index?id=" + this.$instance.router.params.id,
     };
@@ -332,12 +332,12 @@ class EgressDetails extends Component {
                   dtails.status === 0
                     ? Rejected
                     : dtails.status === 1
-                    ? Reviewed
-                    : dtails.status === 2
-                    ? Passed
-                    : dtails.status === 3
-                    ? Revoke
-                    : ""
+                      ? Reviewed
+                      : dtails.status === 2
+                        ? Passed
+                        : dtails.status === 3
+                          ? Revoke
+                          : ""
                 }
                 className="startIcon"
               />
@@ -354,7 +354,7 @@ class EgressDetails extends Component {
               <View className="title">
                 公出地点:
                 {dtails.permission === 0 &&
-                (dtails.status === 0 || dtails.status === 3) ? (
+                  (dtails.status === 0 || dtails.status === 3) ? (
                   <View
                     className="edit"
                     onClick={() => {
@@ -429,18 +429,18 @@ class EgressDetails extends Component {
               </AtModalAction>
             </AtModal>
             <View className="item">
-              <View className="title">公出类型:</View>
+              <View className="title">公出类型</View>
               <View className="value">
                 {dtails.type == 0
                   ? "业务公出"
                   : dtails.type == 1
-                  ? "技术公出"
-                  : dtails.type == 2 && "行政公出"}
+                    ? "技术公出"
+                    : dtails.type == 2 && "行政公出"}
               </View>
             </View>
             {dtails.type == 1 ? (
               <View className="item">
-                <View className="title">合同编号:</View>
+                <View className="title">合同编号</View>
                 <View className="value">{dtails.contractNo}</View>
               </View>
             ) : (
@@ -450,6 +450,13 @@ class EgressDetails extends Component {
               <View className="title">公出企业</View>
               <View className="value">{dtails.nickname}</View>
             </View>
+            {
+              dtails.assistAidName != null && dtails.assistAidName != "" &&
+              <View className="item">
+                <View className="title" style={{ color: "red" }}>技术协单</View>
+                <View className="value">{dtails.assistAidName.replace(",", " ")}</View>
+              </View>
+            }
             {/* 公出目标 */}
             <View className="item">
               <View className="title">公出目标</View>
@@ -478,8 +485,8 @@ class EgressDetails extends Component {
               </View>
             ) : null}
             {dtails.permission === 1 &&
-            dtails.status === 1 &&
-            current !== "2" ? (
+              dtails.status === 1 &&
+              current !== "2" ? (
               <View className="item">
                 <View className="title">
                   填写审批意见
@@ -500,8 +507,8 @@ class EgressDetails extends Component {
               </View>
             ) : null}
             {dtails.permission === 1 &&
-            dtails.status === 1 &&
-            current !== "2" ? (
+              dtails.status === 1 &&
+              current !== "2" ? (
               <View className="operation">
                 <AtButton
                   type="secondary"
@@ -696,7 +703,7 @@ class EgressDetails extends Component {
               inquiryTitle: "",
               inquiryContent: "",
               isNo: true,
-              inquiryFn: () => {},
+              inquiryFn: () => { },
             });
           }}
         />

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

@@ -1,6 +1,6 @@
 import React, { Component } from "react";
 import Taro from "@tarojs/taro";
-import { Text, View } from "@tarojs/components";
+import { Text, View, Button } from "@tarojs/components";
 import dayjs from "dayjs";
 import "./index.less";
 
@@ -25,6 +25,7 @@ import "taro-ui/dist/style/components/calendar.scss";
 
 import "./publicContent.less";
 import InquiryModal from "../../components/common/inquiryModal";
+import UserQuery from "../../components/common/userquery"; //选择协单人弹窗
 
 class PublicContent extends Component {
   constructor(props) {
@@ -44,6 +45,9 @@ class PublicContent extends Component {
       workTypeList: [],
       workType: 0,
       isPickerRender: false,
+      popup: false,
+      coorderList: [],
+      cList: [],
     };
     this.onSubmit = this.onSubmit.bind(this);
     this.selectArrder = this.selectArrder.bind(this);
@@ -56,11 +60,24 @@ class PublicContent extends Component {
   }
 
   componentDidMount() {
-    // console.log("-------", this.props.dtails);
+    const { dtails } = this.props
     let arr = [];
     for (let i of this.props.dtails.annexUrl) {
       arr.push(i.url.split(resourceAddress).join(""));
     }
+    let list = [];
+    if (!dtails.assistAid) {
+      list = []
+    } else {
+      let a = dtails.assistAid.split(",")
+      let b = dtails.assistAidName.split(",")
+      for (var i = 0; i < a.length; i++) {
+        list.push({
+          id: a[i],
+          name: b[i],
+        })
+      }
+    }
     this.setState({
       imgs: arr,
       totalDuration: this.props.dtails.duration,
@@ -78,6 +95,8 @@ class PublicContent extends Component {
       ),
       plan: this.props.dtails.plan || "",
       expectedEffect: this.props.dtails.expectedEffect || "",
+      cList: list,
+      coorderList: !dtails.assistAid ? [] : dtails.assistAid.split(","),
     });
     this.getWorkingHoursList();
   }
@@ -173,6 +192,9 @@ class PublicContent extends Component {
     this.setState({
       loading: true,
     });
+    let a = this.state.coorderList.length === 0 ? 0 : 1
+    let b = this.state.coorderList.length === 0 ? "" : this.state.coorderList.join(",")
+    console.log(a, "=====", b)
     let datas;
     if (this.props.dtails.type == 0) {
       datas = {
@@ -191,6 +213,8 @@ class PublicContent extends Component {
         validDate: JSON.stringify(this.state.validDates),
         type: this.props.dtails.type,
         status: 1,
+        assist: this.state.coorderList.length === 0 ? 0 : 1,
+        assistAid: this.state.coorderList.length === 0 ? "" : this.state.coorderList.join(","),
       };
     } else if (this.props.dtails.type == 2) {
       datas = {
@@ -210,6 +234,8 @@ class PublicContent extends Component {
         type: this.props.dtails.type,
         orderNo: this.props.dtails.orderNo,
         status: 1,
+        assist: this.state.coorderList.length === 0 ? 0 : 1,
+        assistAid: this.state.coorderList.length === 0 ? "" : this.state.coorderList.join(","),
       };
     } else {
       datas = {
@@ -229,6 +255,8 @@ class PublicContent extends Component {
         type: this.props.dtails.type,
         orderNo: this.props.dtails.orderNo,
         status: 1,
+        assist: this.state.coorderList.length === 0 ? 0 : 1,
+        assistAid: this.state.coorderList.length === 0 ? "" : this.state.coorderList.join(","),
       };
     }
     if (isVerify) {
@@ -335,10 +363,23 @@ class PublicContent extends Component {
       }
     );
   }
+  // 新增技术协单
+  setList(list, arr) {
+    this.setState({
+      cList: list,
+      coorderList: arr
+    })
+  }
+  // 弹窗开关
+  popupClick() {
+    this.setState({
+      popup: !this.state.popup
+    })
+  }
 
   render() {
     const { dtails, type } = this.props;
-    // console.log(type, "+++---", dtails);
+    const { cList, coorderList, popup } = this.state
     return (
       <View className="publicContent">
         <View className="formItem">
@@ -351,8 +392,8 @@ class PublicContent extends Component {
             {dtails.type == 0
               ? "业务公出"
               : dtails.type == 1
-              ? "技术公出"
-              : dtails.type == 2 && "行政公出"}
+                ? "技术公出"
+                : dtails.type == 2 && "行政公出"}
           </View>
         </View>
         {dtails.contractNo && dtails.type == 1 ? (
@@ -410,7 +451,7 @@ class PublicContent extends Component {
               }}
             >
               {this.state.rangeStartMinuteVal &&
-              this.state.rangeEndMinuteVal ? (
+                this.state.rangeEndMinuteVal ? (
                 <View className="timeContent">
                   <View>开始时间:{this.state.rangeStartMinuteVal}</View>
                   <View>结束时间:{this.state.rangeEndMinuteVal}</View>
@@ -463,6 +504,34 @@ class PublicContent extends Component {
           <View className="formName">总时长:</View>
           <View className="formValue">{this.state.totalDuration}小时</View>
         </View>
+        <View className="formItem" style={{ alignItems: "flex-start" }}>
+          <View className="formName">技术协单:</View>
+          <View className="formValues">
+            {
+              cList.length === 0
+                ? <Text>无</Text>
+                : cList.map((item, index) =>
+                  <View className="fitems" key={index}>
+                    {item.name}
+                    <View className="fclose"
+                      onClick={() => {
+                        coorderList.includes(item.id) &&
+                          (
+                            cList.splice(coorderList.indexOf(item.id), 1),
+                            coorderList.splice(coorderList.indexOf(item.id), 1)
+                          )
+                        this.setState({
+                          cList,
+                          coorderList,
+                        })
+                      }}
+                    ><AtIcon value="close-circle" size="15" color="#bbbbbb" /></View>
+                  </View>
+                )
+            }
+            {cList.length < 5 && <Button className="addbuttom" type='primary' onClick={this.popupClick.bind(this)}>新增技术协单</Button>}
+          </View>
+        </View>
         {this.state.validDates.length !== 0 ? (
           <View
             className="formItem"
@@ -692,10 +761,19 @@ class PublicContent extends Component {
               isInquiryOpened: false,
               inquiryTitle: "",
               inquiryContent: "",
-              inquiryFn: () => {},
+              inquiryFn: () => { },
             });
           }}
         />
+        {popup &&
+          <UserQuery
+            isOpened={popup}
+            onDesc={this.popupClick.bind(this)}
+            cList={cList}
+            coorderList={coorderList}
+            setList={this.setList.bind(this)}
+          />
+        }
       </View>
     );
   }

+ 47 - 11
src/pages/egressDetails/publicContent.less

@@ -1,31 +1,37 @@
-.publicContent{
+.publicContent {
   padding: 20px;
-  .formItem{
+
+  .formItem {
     display: flex;
     align-items: center;
     font-size: 30px;
     padding-bottom: 25px;
-    .formName{
+
+    .formName {
       white-space: nowrap;
-      .formNameTips{
+
+      .formNameTips {
         color: #ff0000;
         font-size: 20px;
         padding-left: 10px;
       }
-      .tips{
+
+      .tips {
         color: #ff0000;
         font-size: 20px;
         padding-bottom: 20px;
       }
     }
-    .formValue{
+
+    .formValue {
       text-align: right;
       flex: 1;
       display: flex;
       flex-flow: row nowrap;
       align-items: center;
       justify-content: flex-end;
-      .formValueText{
+
+      .formValueText {
         display: block;
         width: 452px;
         text-overflow: ellipsis;
@@ -33,17 +39,47 @@
         white-space: nowrap;
       }
     }
+
+    .formValues {
+      display: flex;
+      flex-direction: row;
+      flex-wrap: wrap;
+
+      .fitems {
+        margin-left: 20px;
+        margin-bottom: 20px;
+        display: flex;
+        flex-direction: row;
+        position: relative;
+        padding-right: 40px;
+
+        .fclose {
+          position: absolute;
+          right: 0;
+          top: -20px;
+        }
+      }
+
+      .addbuttom {
+        font-size: 22px;
+        padding: 0 10px;
+        margin-left: 20px;
+      }
+    }
   }
-  .tips{
+
+  .tips {
     font-size: 20px;
     text-align: left;
     color: #f00;
   }
-  .operation{
+
+  .operation {
     display: flex;
     flex-flow: row nowrap;
   }
-  .at-image-picker__remove-btn{
+
+  .at-image-picker__remove-btn {
     display: block !important;
   }
-}
+}

+ 335 - 152
src/pages/examine/index.jsx

@@ -35,34 +35,45 @@ class Examine extends Component {
       list: [],
       pageNo: 1,
       listState: 'LOADING',
+      starts: {},
+      clockInStarts: '',
+      rangeEndVal: '',
+      rangeStartVal: '',
+      rangeEndMinuteVal: '',
+      rangeStartMinuteVal: '',
 
       examinelist: [],
       examinePageNo: 1,
-      seePageNo: 1,
-      seeList: [],
       examineListState: 'LOADING',
-      seeListState: 'LOADING',
-      starts: {},
-      clockInStarts: '',
+      starts1: {},
+      clockInStarts1: '',
+      rangeEndVal1: '',
+      rangeStartVal1: '',
+      rangeEndMinuteVal1: '',
+      rangeStartMinuteVal1: '',
 
-      rangeStartVal2:'',
-      rangeEndVal2: '',
+      seeList: [],
+      seePageNo: 1,
+      seeListState: 'LOADING',
       starts2: {},
       clockInStarts2: '',
-      rangeStartVal1: '',
-      rangeEndVal1: '',
-      starts1: {},
-      clockInStarts1: '',
-      isPickerRender:false,
-      rangeStartMinuteVal:'',
-      rangeEndMinuteVal1:'',
-      rangeStartMinuteVal1:'',
-      rangeEndMinuteVal2:'',
-      rangeStartMinuteVal2:'',
-      rangeEndMinuteVal:'',
-      rangeEndVal:'',
-      rangeStartVal:'',
-      validDates:''
+      rangeEndVal2: '',
+      rangeStartVal2: '',
+      rangeEndMinuteVal2: '',
+      rangeStartMinuteVal2: '',
+
+      coList: [],
+      coPageNo: 1,
+      coListState: 'LOADING',
+      starts3: {},
+      clockInStarts3: '',
+      rangeEndVal3: '',
+      rangeStartVal3: '',
+      rangeEndMinuteVal3: '',
+      rangeStartMinuteVal3: '',
+
+      isPickerRender: false,
+      validDates: ''
     }
     this.getPublicReleaseList = this.getPublicReleaseList.bind(this);
     this.getMyList = this.getMyList.bind(this);
@@ -92,7 +103,7 @@ class Examine extends Component {
         this.setState({
           list: arr
         })
-      } else if(data.type === 2 && (!isNaN(parseInt(data.index)))) {
+      } else if (data.type === 2 && (!isNaN(parseInt(data.index)))) {
         let arr = this.state.seeList.concat([]);
         arr[data.index] = {
           ...arr[data.index],
@@ -101,6 +112,15 @@ class Examine extends Component {
         this.setState({
           seeList: arr
         })
+      } else if (data.type === 3 && (!isNaN(parseInt(data.index)))) {
+        let arr = this.state.coList.concat([]);
+        arr[data.index] = {
+          ...arr[data.index],
+          ...data
+        }
+        this.setState({
+          coList: arr
+        })
       }
     })
   }
@@ -122,38 +142,47 @@ class Examine extends Component {
       this.onTabTap();
     }
   }
-  onPickerHide(){
+
+  onPickerHide() {
     this.setState({
       isPickerRender: false,
     });
   }
 
-async  onSetPickerTime(val){
+  async onSetPickerTime(val) {
     let data = val.detail;
-    if(this.state.current === 0) {
-    await  this.setState({
+    if (this.state.current === 0) {
+      await this.setState({
         rangeStartMinuteVal: dayjs(data.selectStartTime).format("YYYY-MM-DD"),
         rangeEndMinuteVal: dayjs(data.selectEndTime).format("YYYY-MM-DD")
       })
       await this.getMyList(1);
-    }else if(this.state.current === 1){
-      await  this.setState({
+    } else if (this.state.current === 1) {
+      await this.setState({
         rangeStartMinuteVal1: dayjs(data.selectStartTime).format("YYYY-MM-DD"),
         rangeEndMinuteVal1: dayjs(data.selectEndTime).format("YYYY-MM-DD")
       })
       await this.getExamineList(1);
-    }else if(this.state.current === 2) {
-      await  this.setState({
+    } else if (this.state.current === 2) {
+      await this.setState({
         rangeStartMinuteVal2: dayjs(data.selectStartTime).format("YYYY-MM-DD"),
         rangeEndMinuteVal2: dayjs(data.selectEndTime).format("YYYY-MM-DD")
       })
       await this.getSeeList(1);
-    } 
+    } else if (this.state.current === 3) {
+      await this.setState({
+        rangeStartMinuteVal3: dayjs(data.selectStartTime).format("YYYY-MM-DD"),
+        rangeEndMinuteVal3: dayjs(data.selectEndTime).format("YYYY-MM-DD")
+      })
+      await this.getSeeList(1);
+    }
   }
+
   async onTabTap() {
     await this.getMyList(1);
     await this.getExamineList(1);
     await this.getSeeList(1);
+    await this.grtCoOrder(1);
   }
 
   async getPublicReleaseList(lv) {
@@ -164,9 +193,11 @@ async  onSetPickerTime(val){
       await this.getExamineList(lv ? this.state.examinePageNo + 1 : 1);
       Taro.stopPullDownRefresh();
     } else if (this.state.current === 2) {
-      console.log(lv,this.state.seePageNo);
       await this.getSeeList(lv ? this.state.seePageNo + 1 : 1);
       Taro.stopPullDownRefresh();
+    } else if (this.state.current === 3) {
+      await this.grtCoOrder(lv ? this.state.coPageNo + 1 : 1);
+      Taro.stopPullDownRefresh();
     }
   }
 
@@ -273,7 +304,6 @@ async  onSetPickerTime(val){
   }
   // 查看
   async getSeeList(pageNo) {
-    console.log(pageNo);
     this.setState({
       seeListState: 'LOADING',
     })
@@ -324,6 +354,59 @@ async  onSetPickerTime(val){
     }
     Taro.stopPullDownRefresh();
   }
+
+  async grtCoOrder(pageNo) {
+    this.setState({
+      coListState: 'LOADING',
+    })
+    console.log(this.state.clockInStarts3);
+    let data = {
+      pageNo: pageNo,
+      pageSize: 10,
+      type: '3',
+
+      releaseStarts: this.state.rangeStartMinuteVal3 || null,
+      releaseEnds: this.state.rangeEndMinuteVal3 || null,
+      status: isNaN(parseInt(this.state.starts3.id)) ? undefined : String(this.state.starts3.id),
+      clockIn: this.state.clockInStarts3 || null,
+      userName: this.state.searchValue3 || undefined,
+    }
+    for (let i in data) {
+      if (!data[i]) {
+        delete data[i]
+      }
+    }
+    let msg = await getPublicReleaseList(data);
+    if (msg.error.length === 0) {
+      if (msg.data.totalCount === 0) {
+        this.setState({
+          coListState: 'NO_DATA'
+        })
+      } else if (msg.data.totalCount === this.state.coList.length && pageNo !== 1) {
+        Taro.showToast({ title: '没有更多数据了', icon: 'none' });
+        this.setState({
+          coListState: 'NO_MORE_DATA'
+        })
+      } else {
+        if (msg.data.totalCount === (pageNo === 1 ? msg.data.list : this.state.coList.concat(msg.data.list)).length) {
+          this.setState({
+            coListState: 'NO_MORE_DATA'
+          })
+        }
+      }
+      this.setState({
+        coList: pageNo === 1 ? msg.data.list : this.state.coList.concat(msg.data.list),
+        coPageNo: msg.data.pageNo
+      })
+    } else {
+      Taro.showToast({ title: msg.error[0].message, icon: 'none' });
+      this.setState({
+        coListState: msg.error[0].field === '403' ? 'NO_DATA' : 'RELOAD'
+      })
+    }
+    Taro.stopPullDownRefresh();
+  }
+
   onPageScroll(event) {
     let touchMove = event.scrollTop;
     if (touchMove >= 37) {
@@ -355,14 +438,18 @@ async  onSetPickerTime(val){
                   this.setState({
                     searchValue: value
                   })
-                } else if(this.state.current === 1) {
+                } else if (this.state.current === 1) {
                   this.setState({
                     searchValue1: value
                   })
-                } else if(this.state.current === 2) {
+                } else if (this.state.current === 2) {
                   this.setState({
                     searchValue2: value
                   })
+                } else if (this.state.current === 3) {
+                  this.setState({
+                    searchValue3: value
+                  })
                 }
               }}
               onClear={() => {
@@ -370,14 +457,18 @@ async  onSetPickerTime(val){
                   this.setState({
                     searchValue: ''
                   })
-                } else if(this.state.current === 1) {
+                } else if (this.state.current === 1) {
                   this.setState({
                     searchValue1: ''
                   })
-                } else if(this.state.current === 2) {
+                } else if (this.state.current === 2) {
                   this.setState({
                     searchValue2: ''
                   })
+                } else if (this.state.current === 3) {
+                  this.setState({
+                    searchValue3: ''
+                  })
                 }
               }}
             />
@@ -385,43 +476,63 @@ async  onSetPickerTime(val){
           <ScrollView className={this.state.openSearch ? 'searchBottomLOL' : ''} scrollX style={{ width: '100%' }}>
             <View className='searchBottom'>
               <View className='searchItem' style={{ paddingLeft: '5px' }}>
-                <Picker value={this.state.current === 0 ? this.state.starts.id : this.state.current === 1 ? this.state.starts1.id : this.state.starts2.id } range={clockState} rangeKey='title' mode='selector' onChange={(e) => {
-                  if (this.state.current === 0) {
-                    this.setState({
-                      starts: clockState[e.detail.value],
-                    }, () => {
-                      this.getPublicReleaseList();
-                    })
-                  } else if(this.state.current === 1) {
-                    this.setState({
-                      starts1: clockState[e.detail.value],
-                    }, () => {
-                      this.getPublicReleaseList();
-                    })
-                  } else if(this.state.current === 2){
-                    this.setState({
-                      starts2: clockState[e.detail.value],
-                    }, () => {
-                      this.getPublicReleaseList();
-                    })
-                  }
-                }}>
+                <Picker
+                  value={this.state.current === 0
+                    ? this.state.starts.id : this.state.current === 1
+                      ? this.state.starts1.id : this.state.current === 2
+                        ? this.state.starts2.id : this.state.current === 3 && this.state.starts3.id}
+                  range={clockState} rangeKey='title' mode='selector' onChange={(e) => {
+                    if (this.state.current === 0) {
+                      this.setState({
+                        starts: clockState[e.detail.value],
+                      }, () => {
+                        this.getPublicReleaseList();
+                      })
+                    } else if (this.state.current === 1) {
+                      this.setState({
+                        starts1: clockState[e.detail.value],
+                      }, () => {
+                        this.getPublicReleaseList();
+                      })
+                    } else if (this.state.current === 2) {
+                      this.setState({
+                        starts2: clockState[e.detail.value],
+                      }, () => {
+                        this.getPublicReleaseList();
+                      })
+                    } else if (this.state.current === 3) {
+                      this.setState({
+                        starts3: clockState[e.detail.value],
+                      }, () => {
+                        this.getPublicReleaseList();
+                      })
+                    }
+                  }}>
                   {
-                    (this.state.current === 0 && !this.state.starts.title) || (this.state.current === 1 && !this.state.starts1.title) || (this.state.current === 2 && !this.state.starts2.title) ?
+                    (this.state.current === 0 && !this.state.starts.title) ||
+                      (this.state.current === 1 && !this.state.starts1.title) ||
+                      (this.state.current === 2 && !this.state.starts2.title) ||
+                      (this.state.current === 3 && !this.state.starts3.title) ?
                       <View className='shortValuecontent'>
                         <View className='selectTitle'>审核状态</View>
                         <View className='iconContent'><AtIcon value='chevron-down' size='10' color='#FFFFFF' /></View>
                       </View> :
                       <View className='shortValuecontent'>
                         <View className='selectValue'>
-                          {this.state.current === 0 ? this.state.starts.title : this.state.current === 1 ? this.state.starts1.title : this.state.starts2.title}
+                          {this.state.current === 0
+                            ? this.state.starts.title : this.state.current === 1
+                              ? this.state.starts1.title : this.state.current === 2
+                                ? this.state.starts2.title : this.state.current === 3 && this.state.starts3.title}
                         </View>
                         <View className='iconContent' />
                       </View>
                   }
                 </Picker>
                 {
-                  (this.state.current === 0 && this.state.starts.title) || (this.state.current === 1 && this.state.starts1.title) || (this.state.current === 2 && this.state.starts2.title) ?
+                  (this.state.current === 0 && this.state.starts.title) ||
+                    (this.state.current === 1 && this.state.starts1.title) ||
+                    (this.state.current === 2 && this.state.starts2.title) ||
+                    (this.state.current === 3 && this.state.starts3.title) ?
                     <View className='searchSelectContent'>
                       <View className='selectIcon' onClick={(e) => {
                         e.stopPropagation();
@@ -431,18 +542,24 @@ async  onSetPickerTime(val){
                           }, () => {
                             this.getPublicReleaseList();
                           })
-                        } else if(this.state.current === 1) {
+                        } else if (this.state.current === 1) {
                           this.setState({
                             starts1: {}
                           }, () => {
                             this.getPublicReleaseList();
                           })
-                        }else if(this.state.current === 2) {
+                        } else if (this.state.current === 2) {
                           this.setState({
                             starts2: {}
                           }, () => {
                             this.getPublicReleaseList();
                           })
+                        } else if (this.state.current === 3) {
+                          this.setState({
+                            starts3: {}
+                          }, () => {
+                            this.getPublicReleaseList();
+                          })
                         }
                       }}>
                         <AtIcon value='close-circle' size='10' color='#FFFFFF' />
@@ -451,51 +568,81 @@ async  onSetPickerTime(val){
                 }
               </View>
               <View className='searchItem' >
-                <Picker value={this.state.current === 0 ? this.state.clockInStarts : this.state.current === 1 ? this.state.clockInStarts1 : this.state.clockInStarts2} range={[
-                  '未打卡',
-                  '已打卡'
-                ]} mode='selector' onChange={(e) => {
-                  if (this.state.current === 0) {
-                    this.setState({
-                      clockInStarts: String(e.detail.value)
-                    }, () => {
-                      this.getPublicReleaseList();
-                    })
-                  } else if(this.state.current === 1){
-                    this.setState({
-                      clockInStarts1: String(e.detail.value)
-                    }, () => {
-                      this.getPublicReleaseList();
-                    })
-                  } else if(this.state.current === 2) {
-                    this.setState({
-                      clockInStarts2: String(e.detail.value)
-                    }, () => {
-                      this.getPublicReleaseList();
-                    })
-                  }
-                }}>
+                <Picker
+                  value={this.state.current === 0
+                    ? this.state.clockInStarts : this.state.current === 1
+                      ? this.state.clockInStarts1 : this.state.current === 2
+                        ? this.state.clockInStarts2 : this.state.current === 3 && this.state.clockInStarts3}
+                  range={[
+                    '未打卡',
+                    '已打卡'
+                  ]} mode='selector' onChange={(e) => {
+                    if (this.state.current === 0) {
+                      this.setState({
+                        clockInStarts: String(e.detail.value)
+                      }, () => {
+                        this.getPublicReleaseList();
+                      })
+                    } else if (this.state.current === 1) {
+                      this.setState({
+                        clockInStarts1: String(e.detail.value)
+                      }, () => {
+                        this.getPublicReleaseList();
+                      })
+                    } else if (this.state.current === 2) {
+                      this.setState({
+                        clockInStarts2: String(e.detail.value)
+                      }, () => {
+                        this.getPublicReleaseList();
+                      })
+                    } else if (this.state.current === 3) {
+                      this.setState({
+                        clockInStarts3: String(e.detail.value)
+                      }, () => {
+                        this.getPublicReleaseList();
+                      })
+                    }
+                  }}>
                   {
-                    (this.state.current === 0 && !this.state.clockInStarts) || (this.state.current === 1 && !this.state.clockInStarts1) || (this.state.current === 2 && !this.state.clockInStarts2) ?
+                    (this.state.current === 0 && !this.state.clockInStarts) ||
+                      (this.state.current === 1 && !this.state.clockInStarts1) ||
+                      (this.state.current === 2 && !this.state.clockInStarts2) ||
+                      (this.state.current === 3 && !this.state.clockInStarts3) ?
                       <View className='shortValuecontent'>
                         <View className='selectTitle'>打卡状态</View>
                         <View className='iconContent'><AtIcon value='chevron-down' size='10' color='#FFFFFF' /></View>
                       </View> :
                       <View className='shortValuecontent'>
                         <View className='selectValue'>
-                          {this.state.current === 0 ? (
-                            this.state.clockInStarts === '1' ? '已打卡' :
-                              this.state.clockInStarts === '0' ? '未打卡' : ''
-                          ) : this.state.current === 1 ? (this.state.clockInStarts1 === '1' ? '已打卡' :
-                              this.state.clockInStarts1 === '0' ? '未打卡' : '') : this.state.clockInStarts2 === '1' ? '已打卡' :
-                              this.state.clockInStarts2 === '0' ? '未打卡' : ''}
+                          {
+                            this.state.current === 0
+                              ? (
+                                this.state.clockInStarts === '1' ? '已打卡' :
+                                  this.state.clockInStarts === '0' ? '未打卡' : ''
+                              ) :
+                              this.state.current === 1
+                                ? (
+                                  this.state.clockInStarts1 === '1' ? '已打卡' :
+                                    this.state.clockInStarts1 === '0' ? '未打卡' : ''
+                                ) :
+                                this.state.current === 2
+                                  ? (
+                                    this.state.clockInStarts2 === '1' ? '已打卡' :
+                                      this.state.clockInStarts3 === '0' ? '未打卡' : ''
+                                  ) :
+                                  this.state.clockInStarts3 === '1' ? '已打卡' :
+                                    this.state.clockInStarts4 === '0' ? '未打卡' : ''
+                          }
                         </View>
                         <View className='iconContent' />
                       </View>
                   }
                 </Picker>
                 {
-                  (this.state.current === 0 && this.state.clockInStarts) || (this.state.current === 1 && this.state.clockInStarts1) || (this.state.current === 2 && this.state.clockInStarts2) ? 
+                  (this.state.current === 0 && this.state.clockInStarts) ||
+                    (this.state.current === 1 && this.state.clockInStarts1) ||
+                    (this.state.current === 2 && this.state.clockInStarts2) ||
+                    (this.state.current === 3 && this.state.clockInStarts3) ?
                     <View className='searchSelectContent'>
                       <View className='selectIcon' onClick={(e) => {
                         e.stopPropagation();
@@ -505,18 +652,24 @@ async  onSetPickerTime(val){
                           }, () => {
                             this.getPublicReleaseList();
                           })
-                        } else if(this.state.current === 1){
+                        } else if (this.state.current === 1) {
                           this.setState({
                             clockInStarts1: '',
                           }, () => {
                             this.getPublicReleaseList();
                           })
-                        } else if(this.state.current === 2) {
+                        } else if (this.state.current === 2) {
                           this.setState({
                             clockInStarts2: '',
                           }, () => {
                             this.getPublicReleaseList();
                           })
+                        } else if (this.state.current === 3) {
+                          this.setState({
+                            clockInStarts3: '',
+                          }, () => {
+                            this.getPublicReleaseList();
+                          })
                         }
                       }}>
                         <AtIcon value='close-circle' size='10' color='#FFFFFF' />
@@ -526,30 +679,37 @@ async  onSetPickerTime(val){
               </View>
               {/*  */}
               {/* 多选时间框 */}
-              <View  className='searchItem' onClick={()=>{
+              <View className='searchItem' onClick={() => {
                 this.setState({
-                  isPickerRender:true
+                  isPickerRender: true
                 })
               }}>
-              <View>
-                 {
-                    (this.state.current === 0 && !this.state.rangeStartMinuteVal) || (this.state.current === 1 && !this.state.rangeStartMinuteVal1) || 
-                    (this.state.current === 2 && !this.state.rangeStartMinuteVal2) ?
-                      <View className='valuecontent' style={{width:'200px'}}>
-                        <View className='selectTitle' style={{paddingLeft:'50px'}}>开始及结束时间</View>
-                        <View className='iconContent' style={{paddingLeft:'20px'}}><AtIcon value='chevron-down' size='10' color='#FFFFFF' /></View>
+                <View>
+                  {
+                    (this.state.current === 0 && !this.state.rangeStartMinuteVal) ||
+                      (this.state.current === 1 && !this.state.rangeStartMinuteVal1) ||
+                      (this.state.current === 2 && !this.state.rangeStartMinuteVal2) ||
+                      (this.state.current === 3 && !this.state.rangeStartMinuteVal3) ?
+                      <View className='valuecontent' style={{ width: '200px' }}>
+                        <View className='selectTitle' style={{ paddingLeft: '50px' }}>开始及结束时间</View>
+                        <View className='iconContent' style={{ paddingLeft: '20px' }}><AtIcon value='chevron-down' size='10' color='#FFFFFF' /></View>
                       </View> :
-                      <View className='valuecontent' style={{width:'200px'}}>
+                      <View className='valuecontent' style={{ width: '200px' }}>
                         <View className='selectValue' >
-                          {this.state.current === 0 ? this.state.rangeStartMinuteVal +"~"+ this.state.rangeEndMinuteVal : this.state.current === 1 ? this.state.rangeStartMinuteVal1 +"~"+ this.state.rangeEndMinuteVal1 : this.state.rangeStartMinuteVal2 +"~"+ this.state.rangeEndMinuteVal2}
+                          {this.state.current === 0
+                            ? this.state.rangeStartMinuteVal + "~" + this.state.rangeEndMinuteVal : this.state.current === 1
+                              ? this.state.rangeStartMinuteVal1 + "~" + this.state.rangeEndMinuteVal1 : this.state.current === 2
+                                ? this.state.rangeStartMinuteVal2 + "~" + this.state.rangeEndMinuteVal2 : this.state.rangeStartMinuteVal3 + "~" + this.state.rangeEndMinuteVal3}
                         </View>
                         <View className='iconContent' />
                       </View>
                   }
-            </View>
-            {
-                  (this.state.current === 0 && this.state.rangeStartMinuteVal) || (this.state.current === 1 && this.state.rangeStartMinuteVal1) 
-                  || (this.state.current === 2 && this.state.rangeStartMinuteVal2) ?
+                </View>
+                {
+                  (this.state.current === 0 && this.state.rangeStartMinuteVal) ||
+                    (this.state.current === 1 && this.state.rangeStartMinuteVal1) ||
+                    (this.state.current === 2 && this.state.rangeStartMinuteVal2) ||
+                    (this.state.current === 3 && this.state.rangeStartMinuteVal3) ?
                     <View className='searchSelectContent'>
                       <View className='selectIcon' onClick={(e) => {
                         e.stopPropagation();
@@ -560,56 +720,63 @@ async  onSetPickerTime(val){
                           }, () => {
                             this.getPublicReleaseList();
                           })
-                        } else if(this.state.current === 1) {
+                        } else if (this.state.current === 1) {
                           this.setState({
                             rangeStartMinuteVal1: '',
                             rangeEndMinuteVal1: '',
                           }, () => {
                             this.getPublicReleaseList();
                           })
-                        } else if(this.state.current === 2) {
+                        } else if (this.state.current === 2) {
                           this.setState({
                             rangeStartMinuteVal2: '',
                             rangeEndMinuteVal2: '',
                           }, () => {
                             this.getPublicReleaseList();
                           })
+                        } else if (this.state.current === 3) {
+                          this.setState({
+                            rangeStartMinuteVal3: '',
+                            rangeEndMinuteVal3: '',
+                          }, () => {
+                            this.getPublicReleaseList();
+                          })
                         }
                       }}>
                         <AtIcon value='close-circle' size='10' color='#FFFFFF' />
                       </View>
                     </View> : null
                 }
-                </View>
+              </View>
               <timePicker
-              config={{
-                endDate: true,
-                column: "minute",
-                dateLimit: false,
-                // initStartTime: "2019-01-01 12:32:44", //默认开始时间
-                // initEndTime: "2019-12-01 12:32:44",   //默认结束时间
-                limitStartTime: dayjs().subtract(3,'year').format('YYYY-MM-DD '),
-                limitEndTime: dayjs().add(3,'year').format('YYYY-MM-DD ')
-              }}
-              isPartition
-              pickerShow={this.state.isPickerRender}
-              onconditionaljudgment={(v)=>{
-                // let a = dayjs(dayjs(v.detail.endTime).second(0).format('YYYY-MM-DD'));
-                // let b = dayjs(dayjs().second(0).format('YYYY-MM-DD'))
-                // if(a.isBefore(b)){
-                //   Taro.showToast({
-                //     title:'结束时间不能小于当前时间',
-                //     icon:'none'
-                //   })
-                //   v.detail.setLv(false);
-                // }
-              }}
-              onhidepicker={()=>{
-                this.onPickerHide()
-              }}
-              onsetpickertime={(v)=>{
-                this.onSetPickerTime(v)
-              }}>
+                config={{
+                  endDate: true,
+                  column: "minute",
+                  dateLimit: false,
+                  // initStartTime: "2019-01-01 12:32:44", //默认开始时间
+                  // initEndTime: "2019-12-01 12:32:44",   //默认结束时间
+                  limitStartTime: dayjs().subtract(3, 'year').format('YYYY-MM-DD '),
+                  limitEndTime: dayjs().add(3, 'year').format('YYYY-MM-DD ')
+                }}
+                isPartition
+                pickerShow={this.state.isPickerRender}
+                onconditionaljudgment={(v) => {
+                  // let a = dayjs(dayjs(v.detail.endTime).second(0).format('YYYY-MM-DD'));
+                  // let b = dayjs(dayjs().second(0).format('YYYY-MM-DD'))
+                  // if(a.isBefore(b)){
+                  //   Taro.showToast({
+                  //     title:'结束时间不能小于当前时间',
+                  //     icon:'none'
+                  //   })
+                  //   v.detail.setLv(false);
+                  // }
+                }}
+                onhidepicker={() => {
+                  this.onPickerHide()
+                }}
+                onsetpickertime={(v) => {
+                  this.onSetPickerTime(v)
+                }}>
               </timePicker>
               {/* <View className='searchItem'>
                 <Picker mode='date' onChange={(e) => {
@@ -748,15 +915,21 @@ async  onSetPickerTime(val){
             </View>
           </ScrollView>
         </View>
-        <AtTabs current={this.state.current || 0} tabList={[{ title: '我的' }, { title: '审核' }, { title: '查看' }]} onClick={(current) => {
-          this.setState({
-            current,
-          }, () => {
-            if ((current === 0 && this.state.pageNo === 1) || (current === 1 && this.state.examinePageNo === 1) || (current === 2 && this.state.seePageNo === 1)) {
-              this.getPublicReleaseList();
-            }
-          })
-        }}>
+        <AtTabs
+          current={this.state.current || 0}
+          tabList={[{ title: '我的' }, { title: '审核' }, { title: '查看' }, { title: '协单' }]}
+          onClick={(current) => {
+            this.setState({
+              current,
+            }, () => {
+              if ((current === 0 && this.state.pageNo === 1) ||
+                (current === 1 && this.state.examinePageNo === 1) ||
+                (current === 2 && this.state.seePageNo === 1) ||
+                (current === 3 && this.state.coPageNo === 1)) {
+                this.getPublicReleaseList();
+              }
+            })
+          }}>
           <AtTabsPane current={this.state.current} index={0} >
             <MyList
               type={0}
@@ -787,6 +960,16 @@ async  onSetPickerTime(val){
                 this.getPublicReleaseList(true);
               }} />
           </AtTabsPane>
+          <AtTabsPane current={this.state.current} index={3}>
+            <MyList
+              type={3}
+              seeView={this.state.current}
+              list={this.state.coList}
+              listState={this.state.coListState}
+              onRefresh={() => {
+                this.getPublicReleaseList(true);
+              }} />
+          </AtTabsPane>
         </AtTabs>
       </View>
     )

+ 5 - 2
src/pages/examine/index.less

@@ -227,6 +227,11 @@
           justify-content: space-between;
           padding-bottom: 25px;
         }
+        .coOder{
+          font-size: 25px;
+          color: #6eb173;
+          padding-bottom: 25px;
+        }
         .bottomContent{
           display: flex;
           flex-flow: row nowrap;
@@ -236,9 +241,7 @@
             font-size: 28px;
           }
           .clockIn{
-            padding: 3px 8px;
             font-size: 28px;
-            border-radius: 6px;
           }
         }
       }

+ 9 - 4
src/pages/examine/myList.jsx

@@ -17,14 +17,13 @@ class MyList extends Component {
 
   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 />
-              ))
+              <Skeleton key={v} title row={3} avatarShape="square" loading />
+            ))
             : null}
           {this.props.list.map((v, k) => (
             <View
@@ -69,7 +68,7 @@ class MyList extends Component {
                 </View>
                 <View className="releaseStarts">
                   开始时间:{v.releaseStarts}
-                  {this.props.type === 0 && v.status !== 3 ? (
+                  {(this.props.type === 0 || this.props.type === 3) && v.status !== 3 ? (
                     <View
                       className="punchClock"
                       onClick={(e) => {
@@ -85,6 +84,12 @@ class MyList extends Component {
                   ) : null}
                 </View>
                 <View className="releaseEnds">结束时间:{v.releaseEnds}</View>
+                {
+                  v.assistAidName != null && v.assistAidName != "" &&
+                  <View className="coOder">
+                    技术协单:{v.assistAidName.replace(",", " ")}
+                  </View>
+                }
                 <View className="bottomContent">
                   {v.clockIn === 1 ? (
                     <View className="clockIn" style={{ color: "#6eb173" }}>

+ 86 - 45
src/pages/punchClock/index.less

@@ -1,49 +1,65 @@
-.punchClock{
+.punchClock {
   position: relative;
   background: #F5F5F5;
   min-height: calc(100vh - 50px);
   padding: 25px;
-  .header{
+
+  .header {
     background: #FFFFFF;
     padding: 30px;
     border-radius: 30px;
     margin-bottom: 20px;
-    .skeleton{
+
+    .skeleton {
       padding: 0;
     }
-    .headerContent{
+
+    .headerContent {
       display: flex;
       flex-flow: row nowrap;
       align-items: center;
     }
-    .userAvatarUrl{
+
+    .userAvatarUrl {
       width: 100px;
       height: 100px;
       border-radius: 20px;
       overflow: hidden;
     }
-    .infor{
+
+    .infor {
       padding-left: 15px;
-      .name{
+
+      .name {
         font-size: 28px;
-        padding-bottom: 18px;
+        padding-bottom: 15px;
       }
-      .address{
+
+      .address {
         font-size: 25px;
         color: #8e8d8d;
         display: flex;
         align-items: center;
-        .nickname{
+
+        .nickname {
           color: #4564DC;
         }
       }
+
+      .types {
+        font-size: 28px;
+        color: red;
+        margin-top: 10px;
+      }
     }
-    .state{
+
+    .state {
       margin-left: auto;
       font-size: 25px;
       align-self: flex-start;
     }
-    .switchContent{
+
+    .switchContent {
       display: flex;
       align-items: center;
       align-content: center;
@@ -51,18 +67,21 @@
       border: 1px #999999 solid;
       padding: 11px 10px;
       margin-top: 28px;
-      .switchTitle{
+
+      .switchTitle {
         font-size: 18px;
         color: #999999;
         padding-right: 10px;
       }
-      .switchItem{
+
+      .switchItem {
         width: 25px;
         height: 25px;
       }
     }
   }
-  .content{
+
+  .content {
     background: #FFFFFF;
     padding: 30px;
     border-radius: 30px;
@@ -70,7 +89,8 @@
     display: flex;
     flex-flow: column nowrap;
     align-items: center;
-    .history{
+
+    .history {
       display: flex;
       flex-flow: row nowrap;
       justify-content: space-between;
@@ -78,7 +98,8 @@
       font-size: 30px;
       width: 100%;
     }
-    .noData{
+
+    .noData {
       display: flex;
       flex-flow: column nowrap;
       align-items: center;
@@ -86,55 +107,65 @@
       width: 100%;
       margin-top: -20px;
       padding-bottom: 225px;
-      .tipsNoData{
+
+      .tipsNoData {
         font-size: 28px;
         color: #969696;
         padding-bottom: 20px;
       }
-      .goOut{
+
+      .goOut {
         font-size: 28px;
         color: #007aff;
       }
     }
-    .timeContent{
+
+    .timeContent {
       width: 100%;
       padding-top: 20px;
       display: flex;
       flex-flow: row nowrap;
       justify-content: space-between;
       padding-bottom: 30px;
-      .timeItem{
+
+      .timeItem {
         background: #eae8e8;
         padding: 20px;
         border-radius: 20px;
-        .timeTitle{
+
+        .timeTitle {
           font-size: 30px;
           padding-bottom: 8px;
         }
-        .timeValue{
+
+        .timeValue {
           font-size: 27px;
           color: #767272;
         }
       }
     }
-    .map{
+
+    .map {
       position: relative;
-      height:600px;
-      width:100%;
+      height: 600px;
+      width: 100%;
       border-radius: 20px;
       overflow: hidden;
-      #map{
-        height:600px;
-        width:100%
+
+      #map {
+        height: 600px;
+        width: 100%
       }
     }
-    .tips{
+
+    .tips {
       color: #999999;
       font-size: 18px;
       padding-top: 10px;
       align-self: flex-start;
     }
-    .punchClockContent{
+
+    .punchClockContent {
       width: 250px;
       height: 250px;
       border-radius: 250px;
@@ -144,22 +175,26 @@
       justify-content: center;
       align-items: center;
       margin-bottom: 75px;
-      .punchClockTitle{
+
+      .punchClockTitle {
         color: white;
         font-size: 35px;
         padding-bottom: 8px;
       }
-      .punchClockTime{
+
+      .punchClockTime {
         color: #e8e6e6;
         font-size: 25px;
         padding-bottom: 8px;
       }
-      .refreshClock{
+
+      .refreshClock {
         color: #f5f6f8;
         font-size: 25px;
       }
     }
-    .photographContent{
+
+    .photographContent {
       display: flex;
       flex-flow: row nowrap;
       align-items: center;
@@ -168,44 +203,50 @@
       padding-left: 20px;
       padding-right: 20px;
       padding-bottom: 25px;
-      .photographTitle{
+
+      .photographTitle {
         font-size: 30px;
-        .tips{
+
+        .tips {
           font-size: 18px;
           color: #999999;
         }
       }
-      .photograph{
 
-      }
+      .photograph {}
     }
   }
-  .locationContent{
+
+  .locationContent {
     position: absolute;
     display: flex;
     flex-flow: column nowrap;
     padding: 35px;
     z-index: 999;
-    .location{
+
+    .location {
       display: inline-block;
       padding: 15px 15px 10px 15px;
       background: #FFFFFF;
       border-radius: 150px;
       margin-bottom: 30px;
-      .locationIcon{
+
+      .locationIcon {
         width: 50px;
         height: 50px;
       }
     }
-    .punchRange{
+
+    .punchRange {
       display: inline-block;
       padding: 15px 15px 10px 15px;
       background: #FFFFFF;
       border-radius: 150px;
-      .punchRangeIcon{
+
+      .punchRangeIcon {
         width: 50px;
         height: 50px;
       }
     }
   }
-}
+}

+ 234 - 196
src/pages/punchClock/punchClocks.jsx

@@ -1,8 +1,8 @@
 import React, { Component } from 'react'
 import { connect } from 'react-redux'
-import {Map, OpenData, View, Image, Text} from '@tarojs/components'
+import { Map, OpenData, View, Image, Text } from '@tarojs/components'
 import Taro from '@tarojs/taro';
-import {AtIcon, AtModal} from "taro-ui";
+import { AtIcon, AtModal } from "taro-ui";
 import dayjs from 'dayjs';
 import Skeleton from 'taro-skeleton'
 
@@ -12,7 +12,7 @@ import ImagePicker from '../../components/common/imagePicker';
 
 import { add, minus, asyncAdd } from '../../actions/counter'
 
-import {getPublicReleaseList,publicReleaseClockIn} from '../../utils/servers/servers';
+import { getPublicReleaseList, publicReleaseClockIn } from '../../utils/servers/servers';
 
 import './index.less'
 
@@ -23,39 +23,40 @@ import PunchRange from '../../image/punchRange.png';
 import 'taro-ui/dist/style/components/noticebar.scss';
 import 'taro-ui/dist/style/components/icon.scss';
 import 'taro-ui/dist/style/components/list.scss';
-import {getClockState} from "../../utils/tools";
+import { getClockState } from "../../utils/tools";
 
 const QQMapWX = require('../../components/common/mapSDK/qqmap-wx-jssdk.min.js');
 
 @connect(({ counter }) => ({
   counter
 }), (dispatch) => ({
-  add () {
+  add() {
     dispatch(add())
   },
-  dec () {
+  dec() {
     dispatch(minus())
   },
-  asyncAdd () {
+  asyncAdd() {
     dispatch(asyncAdd())
   }
 }))
+
 class PunchClocks extends Component {
   constructor(props) {
     super(props);
-    this.state={
-      imgs:[],
-      nowTime:'00:00:00',
-      newArrder:{},
-      addressLatitude:'',
-      addressLongitude:'',
-      distance:'',
-      dtails:{},
-      loading:true
+    this.state = {
+      imgs: [],
+      nowTime: '00:00:00',
+      newArrder: {},
+      addressLatitude: '',
+      addressLongitude: '',
+      distance: '',
+      dtails: {},
+      loading: true
     }
     this.onChange = this.onChange.bind(this);
     this.getSpacing = this.getSpacing.bind(this);
-    this.getPublicReleaseList = this.getPublicReleaseList.bind(this);
+    this.getData = this.getData.bind(this);
     this.publicReleaseClockIn = this.publicReleaseClockIn.bind(this);
     this.refresh = this.refresh.bind(this);
     this.getDtails = this.getDtails.bind(this);
@@ -63,7 +64,7 @@ class PunchClocks extends Component {
 
   nowTime = null;
 
-  wxConfig= null;
+  wxConfig = null;
 
   mapCtx = Taro.createMapContext('map');
 
@@ -71,31 +72,30 @@ class PunchClocks extends Component {
     key: 'AWBBZ-GRAC2-JFYUO-CLA7I-JAHXK-YFFGT'
   });
 
-  componentDidMount(){
+  componentDidMount() {
     this.getDtails();
   }
 
-  getDtails(){
-    this.getPublicReleaseList(()=>{
+  getDtails() {
+    this.getData(() => {
       Taro.startLocationUpdate({
-        success:()=>{
-          Taro.onLocationChange((v)=>{
-            this.getSpacing(v.latitude,v.longitude)
+        success: () => {
+          Taro.onLocationChange((v) => {
+            this.getSpacing(v.latitude, v.longitude)
           })
         },
-        fail:(err)=>{
-          console.log(err,'err')
+        fail: (err) => {
           Taro.getSetting({
-            success:(res)=>{
+            success: (res) => {
               if (!res.authSetting['scope.userLocation']) {
                 Taro.authorize({
                   scope: 'scope.userLocation',
-                  success:()=>{
+                  success: () => {
 
                   },
-                  fail:()=>{
+                  fail: () => {
                     this.setState({
-                      isOpened:true
+                      isOpened: true
                     })
                   }
                 })
@@ -103,7 +103,7 @@ class PunchClocks extends Component {
             }
           })
           this.setState({
-            loading:false
+            loading: false
           })
         }
       })
@@ -116,12 +116,12 @@ class PunchClocks extends Component {
     //获得当前位置
     Taro.getLocation({
       type: 'gcj02',
-      isHighAccuracy:true,
-      success: (res)=> {
+      isHighAccuracy: true,
+      success: (res) => {
         const latitude = res.latitude
         const longitude = res.longitude
         this.setState({
-          newArrder:{
+          newArrder: {
             latitude,
             longitude
           },
@@ -129,34 +129,34 @@ class PunchClocks extends Component {
       }
     })
 
-    this.nowTime = setInterval(()=>{
+    this.nowTime = setInterval(() => {
       this.setState({
-        nowTime:dayjs().format('HH:mm:ss')
+        nowTime: dayjs().format('HH:mm:ss')
       })
-    },1000)
+    }, 1000)
 
     Taro.eventCenter.on('punchClockComponentDidShow', () => {
-      if(Object.keys(this.state.dtails).length === 0){
+      if (Object.keys(this.state.dtails).length === 0) {
         this.getDtails();
       }
     })
 
     Taro.eventCenter.on('GoPunchIn', (arg) => {
       this.setState({
-        dtails:arg,
-        addressLatitude:parseFloat(arg.latitude),
-        addressLongitude:parseFloat(arg.longitude),
-      },()=>{
-        Taro.showToast({title:'切换成功'});
+        dtails: arg,
+        addressLatitude: parseFloat(arg.latitude),
+        addressLongitude: parseFloat(arg.longitude),
+      }, () => {
+        Taro.showToast({ title: '切换成功' });
         Taro.startLocationUpdate({
-          success:()=>{
-            Taro.onLocationChange((v)=>{
-              this.getSpacing(v.latitude,v.longitude)
+          success: () => {
+            Taro.onLocationChange((v) => {
+              this.getSpacing(v.latitude, v.longitude)
             })
           },
-          fail:()=>{
+          fail: () => {
             this.setState({
-              loading:false
+              loading: false
             })
           }
         })
@@ -169,142 +169,177 @@ class PunchClocks extends Component {
     this.nowTime && this.nowTime.clearTimeout();
   }
 
-  publicReleaseClockIn(){
-    if(this.state.dtails.status === 3){
+  publicReleaseClockIn() {
+    if (this.state.dtails.status === 3) {
       Taro.hideLoading()
-      Taro.showToast({title:'申请已撤销,无法打卡',icon:'none'});
-      return ;
+      Taro.showToast({ title: '申请已撤销,无法打卡', icon: 'none' });
+      return;
     }
-    if(Object.keys(this.state.dtails).length === 0){
+    if (Object.keys(this.state.dtails).length === 0) {
       Taro.hideLoading()
-      Taro.showToast({title:'暂无公出申请,无法打卡',icon:'none'});
-      return ;
+      Taro.showToast({ title: '暂无公出申请,无法打卡', icon: 'none' });
+      return;
     }
-    if(isNaN(parseInt(this.state.distance))){
+    if (isNaN(parseInt(this.state.distance))) {
       Taro.hideLoading()
-      Taro.showToast({title:'定位错误,请联系管理员',icon:'none'})
-      return ;
+      Taro.showToast({ title: '定位错误,请联系管理员', icon: 'none' })
+      return;
     }
-    if(dayjs().isBefore(this.state.dtails.releaseStarts) || dayjs().isAfter(this.state.dtails.releaseEnds)){
+    if (dayjs().isBefore(this.state.dtails.releaseStarts) || dayjs().isAfter(this.state.dtails.releaseEnds)) {
       Taro.hideLoading()
-      Taro.showToast({title:'当前时间不在打卡时间范围内,无法打卡',icon:'none'})
-      return ;
+      Taro.showToast({ title: '当前时间不在打卡时间范围内,无法打卡', icon: 'none' })
+      return;
     }
-    if(!(this.state.distance <=this.wxConfig.clockInRange && this.state.distance >= 0)){
+    if (!(this.state.distance <= this.wxConfig.clockInRange && this.state.distance >= 0)) {
       Taro.hideLoading()
-      Taro.showToast({title:'当前位置未处于可打卡范围,无法打卡',icon:'none'})
-      return ;
+      Taro.showToast({ title: '当前位置未处于可打卡范围,无法打卡', icon: 'none' })
+      return;
     }
-    if(this.state.imgs.length === 0){
+    if (this.state.imgs.length === 0) {
       Taro.hideLoading()
-      Taro.showToast({title:'请上传打卡照片',icon:'none'})
-      return ;
+      Taro.showToast({ title: '请上传打卡照片', icon: 'none' })
+      return;
     }
     publicReleaseClockIn({
-      id:this.state.dtails.id,
-      photoUrl:this.state.imgs.join(',')
-    }).then(v=>{
+      id: this.state.dtails.id,
+      photoUrl: this.state.imgs.join(',')
+    }).then(v => {
       Taro.hideLoading()
-      if(v.error.length === 0){
-        Taro.showToast({title:'打卡成功',icon:'none'});
+      if (v.error.length === 0) {
+        Taro.showToast({ title: '打卡成功', icon: 'none' });
         this.imagePicker.clear();
         this.state.dtails.clockIn = 1;
         this.setState({
-          dtails:this.state.dtails,
-          imgs:[]
+          dtails: this.state.dtails,
+          imgs: []
         })
-      }else{
-        Taro.showToast({title:v.error[0].message,icon:'none'})
+      } else {
+        Taro.showToast({ title: v.error[0].message, icon: 'none' })
       }
-    }).catch(()=>{
+    }).catch(() => {
       Taro.hideLoading()
       Taro.showToast({
-        title:'系统错误,请稍后再试',
-        icon:'none'
+        title: '系统错误,请稍后再试',
+        icon: 'none'
       })
     })
   }
 
-  getPublicReleaseList(fn){
+  getData(fn) {
     this.setState({
-      loading:true
+      loading: true
     })
+    // 获取最近的打卡信息
     getPublicReleaseList({
-      type:0,
-      clockTime:dayjs().format('YYYY-MM-DD HH:mm:ss')
-    }).then(v=>{
-      if(v.error.length === 0){
-        if(v.data.list.length === 0){
+      type: 0,
+      clockTime: dayjs().format('YYYY-MM-DD HH:mm:ss')
+    }).then(v => {
+      if (v.error.length === 0) {
+        if (v.data.list.length === 0) {
+          // 如果没有数据,则选择 -我的列表- 的打卡信息
           getPublicReleaseList({
-            type:0,
-          }).then(value=>{
-            if(value.error.length === 0){
-              if(value.data.list.length === 0){
-                this.setState({
-                  dtails: {},
-                  loading:false
+            type: 0,
+          }).then(value => {
+            if (value.error.length === 0) {
+              if (value.data.list.length === 0) {
+                // 如果 -我的列表- 也没数据,则选择 -协单列表- 的打卡信息
+                getPublicReleaseList({
+                  type: 3,
+                }).then(ve => {
+                  if (ve.error.length === 0) {
+                    if (ve.data.list.length === 0) {
+                      this.setState({
+                        dtails: {},
+                        loading: false
+                      })
+                    } else {
+                      this.setState({
+                        dtails: ve.data.list[0],
+                        addressLatitude: ve.data.list[0].latitude,
+                        addressLongitude: ve.data.list[0].longitude,
+                      }, () => {
+                        fn();
+                      })
+                    }
+                  } else {
+                    this.setState({
+                      loading: false
+                    })
+                    Taro.showToast({
+                      title: ve.error[0].message,
+                      icon: 'none'
+                    })
+                  }
+                }).catch(() => {
+                  this.setState({
+                    loading: false
+                  })
+                  Taro.showToast({
+                    title: '系统错误,请稍后再试',
+                    icon: 'none'
+                  })
                 })
-              }else{
+              } else {
                 this.setState({
-                  dtails:value.data.list[0],
-                  addressLatitude:value.data.list[0].latitude,
-                  addressLongitude:value.data.list[0].longitude,
-                },()=>{
+                  dtails: value.data.list[0],
+                  addressLatitude: value.data.list[0].latitude,
+                  addressLongitude: value.data.list[0].longitude,
+                }, () => {
                   fn();
                 })
               }
-            }else{
+            } else {
               this.setState({
-                loading:false
+                loading: false
               })
               Taro.showToast({
-                title:v.error[0].message,
-                icon:'none'
+                title: v.error[0].message,
+                icon: 'none'
               })
             }
-          }).catch(()=>{
+          }).catch(() => {
             this.setState({
-              loading:false
+              loading: false
             })
             Taro.showToast({
-              title:'系统错误,请稍后再试',
-              icon:'none'
+              title: '系统错误,请稍后再试',
+              icon: 'none'
             })
           })
-        }else{
+        } else {
           this.setState({
-            dtails:v.data.list[0],
-            addressLatitude:v.data.list[0].latitude,
-            addressLongitude:v.data.list[0].longitude,
-          },()=>{
+            dtails: v.data.list[0],
+            addressLatitude: v.data.list[0].latitude,
+            addressLongitude: v.data.list[0].longitude,
+          }, () => {
             fn();
           })
         }
-      }else{
+      } else {
         this.setState({
-          loading:false
+          loading: false
         })
         Taro.showToast({
-          title:v.error[0].message,
-          icon:'none'
+          title: v.error[0].message,
+          icon: 'none'
         })
       }
-    }).catch((err)=>{
+    }).catch((err) => {
       console.log(err)
       this.setState({
-        loading:false
+        loading: false
       })
       Taro.showToast({
-        title:'系统错误,请稍后再试',
-        icon:'none'
+        title: '系统错误,请稍后再试',
+        icon: 'none'
       })
     })
   }
 
-  getSpacing(latitude,longitude){
+  getSpacing(latitude, longitude) {
     let _this = this;
     this.qqmapsdk.calculateDistance({
-      mode:'straight',
+      mode: 'straight',
       from: {
         latitude: this.state.addressLatitude,
         longitude: this.state.addressLongitude,
@@ -315,70 +350,70 @@ class PunchClocks extends Component {
           longitude,
         }
       ],
-      success: function(res) {//成功后的回调
+      success: function (res) {//成功后的回调
         _this.setState({
-          distance:res.result.elements[0].distance,
-          loading:false
+          distance: res.result.elements[0].distance,
+          loading: false
         })
       },
-      fail: function(error) {
+      fail: function (error) {
         _this.setState({
-          loading:false
+          loading: false
         })
         console.error(error);
       },
-      complete: function(res) {
+      complete: function (res) {
 
       }
     });
   }
 
-  onChange(value,type){
+  onChange(value, type) {
     let arr = this.state.imgs.concat([]);
-    if(type === 'add'){
+    if (type === 'add') {
       arr.push(value)
-    }else if(type === 'remove'){
-      arr.splice(value,1)
+    } else if (type === 'remove') {
+      arr.splice(value, 1)
     }
     this.setState({
       imgs: arr,
     })
   }
 
-  refresh(){
-    this.getPublicReleaseList(()=>{
+  refresh() {
+    this.getData(() => {
       Taro.startLocationUpdate({
-        success:()=>{
-          Taro.onLocationChange((v)=>{
-            this.getSpacing(v.latitude,v.longitude)
+        success: () => {
+          Taro.onLocationChange((v) => {
+            this.getSpacing(v.latitude, v.longitude)
           })
         }
       })
     });
   }
 
-  render () {
-    const {dtails} = this.state;
+  render() {
+    const { dtails } = this.state;
     return (
       <View className='punchClock'>
         <View className='header'>
           <Skeleton
             title
             avatar
-            row={1}
+            row={2}
             animateName='elastic'
             avatarShape='square'
             loading={this.state.loading}
           >
             <View className='headerContent'>
               <View className='userAvatarUrl'>
-                <OpenData type='userAvatarUrl'/>
+                <OpenData type='userAvatarUrl' />
               </View>
               <View className='infor'>
                 <View className='name'>
                   {
                     Object.keys(this.state.dtails).length <= 0 ?
-                      Taro.getStorageSync('userInfor').name:
+                      Taro.getStorageSync('userInfor').name :
                       dtails.aname
                   }
                 </View>
@@ -387,38 +422,41 @@ class PunchClocks extends Component {
                   <View className='nickname'>
                     {
                       Object.keys(this.state.dtails).length <= 0 ?
-                        '无':
+                        '无' :
                         dtails.nickname
                     }
                   </View>
                 </View>
+                <View className='types'>
+                  {["业务公出", "技术公出", "行政公出", "技术协单"][dtails.type]}
+                </View>
               </View>
               {
                 Object.keys(this.state.dtails).length <= 0 ?
                   <View onClick={this.refresh} className='state' style={{
                     alignSelf: 'center',
-                    textAlign:'center',
-                    color:'#b6b5b5',
-                    fontSize:'11px'
+                    textAlign: 'center',
+                    color: '#b6b5b5',
+                    fontSize: '11px'
                   }}>
-                    <AtIcon value='reload' size='20'/>
+                    <AtIcon value='reload' size='20' />
                     <View>刷新</View>
                   </View> :
                   <View className='state' style={{
-                    color:getClockState(dtails.status).color
+                    color: getClockState(dtails.status).color
                   }}>
-                    <View style={{textAlign:'right'}}>
+                    <View style={{ textAlign: 'right' }}>
                       {
                         getClockState(dtails.status).title
                       }
                     </View>
-                    <View className='switchContent' onClick={()=>{
+                    <View className='switchContent' onClick={() => {
                       Taro.switchTab({
                         url: '/pages/examine/index',
                       })
                     }}>
                       <View className='switchTitle'>切换打卡</View>
-                      <Image src={switchIocn} className='switchItem'/>
+                      <Image src={switchIocn} className='switchItem' />
                     </View>
                   </View>
               }
@@ -428,8 +466,8 @@ class PunchClocks extends Component {
         {
           Object.keys(this.state.dtails).length <= 0 ?
             <View className='content'>
-              <View className='punchClockContent'  onClick={this.publicReleaseClockIn} style={{
-                boxShadow:  '1px 1px 15px 1px #acb8ad',
+              <View className='punchClockContent' onClick={this.publicReleaseClockIn} style={{
+                boxShadow: '1px 1px 15px 1px #acb8ad',
                 background: '#828e83',
                 marginTop: '85px',
               }}>
@@ -440,7 +478,7 @@ class PunchClocks extends Component {
                 <View className='tipsNoData'>
                   暂无公出申请
                 </View>
-                <View className='goOut' onClick={()=>{
+                <View className='goOut' onClick={() => {
                   Taro.switchTab({
                     url: '/pages/applyDepart/index',
                   })
@@ -448,7 +486,7 @@ class PunchClocks extends Component {
                   点击前往申请公出
                 </View>
               </View>
-            </View>:
+            </View> :
             <View>
               <View className='content'>
                 <View className='timeContent'>
@@ -463,41 +501,41 @@ class PunchClocks extends Component {
                 </View>
                 <View className='photographContent'>
                   <View className='photographTitle'>打卡拍照<Text className='tips'>〔可以上传多张〕</Text></View>
-                  <AtIcon onClick={()=>{
+                  <AtIcon onClick={() => {
                     Taro.chooseImage({
                       count: 1,
                       sizeType: ['compressed'],
                       sourceType: ['camera'],
-                      success:(res)=> {
+                      success: (res) => {
                         // tempFilePath可以作为img标签的src属性显示图片
                         const tempFilePaths = res.tempFilePaths
-                        this.imagePicker.onImgChange([{url:tempFilePaths[0]}],'add',0,'camera')
+                        this.imagePicker.onImgChange([{ url: tempFilePaths[0] }], 'add', 0, 'camera')
                       }
                     })
-                  }} value='camera' size='25' color='#4395ff'/>
+                  }} value='camera' size='25' color='#4395ff' />
                 </View>
-                <View style={{alignSelf:'flex-start',width:'100%'}}>
-                  <ImagePicker ref={ref => this.imagePicker = ref} url='/api/admin/release/upload' showAddBtn={false} onChange={this.onChange}/>
+                <View style={{ alignSelf: 'flex-start', width: '100%' }}>
+                  <ImagePicker ref={ref => this.imagePicker = ref} url='/api/admin/release/upload' showAddBtn={false} onChange={this.onChange} />
                 </View>
-                <View className='punchClockContent' onClick={()=>{
+                <View className='punchClockContent' onClick={() => {
                   let _this = this;
-                  Taro.showLoading({title:'加载中...'})
+                  Taro.showLoading({ title: '加载中...' })
                   Taro.getSetting({
-                    success:(res)=>{
+                    success: (res) => {
                       if (!res.authSetting['scope.userLocation']) {
                         Taro.authorize({
                           scope: 'scope.userLocation',
-                          success:()=>{
+                          success: () => {
                             _this.publicReleaseClockIn();
                           },
-                          fail:()=>{
+                          fail: () => {
                             Taro.hideLoading()
                             this.setState({
-                              isOpened:true
+                              isOpened: true
                             })
                           }
                         })
-                      }else{
+                      } else {
                         _this.publicReleaseClockIn();
                       }
                     }
@@ -505,16 +543,16 @@ class PunchClocks extends Component {
                 }} style={{
                   boxShadow:
                     (!isNaN(parseInt(this.state.distance)))
-                    && this.state.distance <=this.wxConfig.clockInRange && this.state.distance >= 0 &&
-                    !(dayjs().isBefore(this.state.dtails.releaseStarts) || dayjs().isAfter(this.state.dtails.releaseEnds)) &&
-                    dtails.status !== 3
+                      && this.state.distance <= this.wxConfig.clockInRange && this.state.distance >= 0 &&
+                      !(dayjs().isBefore(this.state.dtails.releaseStarts) || dayjs().isAfter(this.state.dtails.releaseEnds)) &&
+                      dtails.status !== 3
                       ? (dtails.clockIn === 1 ? '1px 1px 15px 1px #3f82e8' : '1px 1px 15px 1px #659268') : '1px 1px 15px 1px #828e83',
                   background: (!isNaN(parseInt(this.state.distance)))
-                  &&
-                  this.state.distance <=this.wxConfig.clockInRange &&
-                  this.state.distance >= 0 &&
-                  !(dayjs().isBefore(this.state.dtails.releaseStarts) || dayjs().isAfter(this.state.dtails.releaseEnds))&&
-                  dtails.status !== 3
+                    &&
+                    this.state.distance <= this.wxConfig.clockInRange &&
+                    this.state.distance >= 0 &&
+                    !(dayjs().isBefore(this.state.dtails.releaseStarts) || dayjs().isAfter(this.state.dtails.releaseEnds)) &&
+                    dtails.status !== 3
                     ? (dtails.clockIn === 1 ? '#3f82e8' : '#72cb78') : '#828e83'
                 }}>
                   <View className='punchClockTitle'>
@@ -527,18 +565,18 @@ class PunchClocks extends Component {
                 </View>
                 <View className='map'>
                   <View className='locationContent'>
-                    <View className='location' onClick={()=>{
+                    <View className='location' onClick={() => {
                       this.mapCtx.moveToLocation();
                     }}>
-                      <Image src={Location} className='locationIcon'/>
+                      <Image src={Location} className='locationIcon' />
                     </View>
-                    <View className='punchRange' onClick={()=>{
+                    <View className='punchRange' onClick={() => {
                       this.mapCtx.moveToLocation({
                         latitude: this.state.addressLatitude,
                         longitude: this.state.addressLongitude,
                       });
                     }}>
-                      <Image src={PunchRange} className='punchRangeIcon'/>
+                      <Image src={PunchRange} className='punchRangeIcon' />
                     </View>
                   </View>
                   <Map
@@ -559,14 +597,14 @@ class PunchClocks extends Component {
                 </View>
                 <View className='tips'>紫色区域为可打卡区域</View>
               </View>
-              <View className='content' onClick={()=>{
+              <View className='content' onClick={() => {
                 this.setState({
-                  historicalIsOpened:true
+                  historicalIsOpened: true
                 })
               }}>
                 <View className='history'>
                   <View>查看公出申请日志</View>
-                  <AtIcon value='chevron-right' size='20' color='#767272'/>
+                  <AtIcon value='chevron-right' size='20' color='#767272' />
                 </View>
               </View>
             </View>
@@ -576,31 +614,31 @@ class PunchClocks extends Component {
           title='提醒'
           cancelText='取消'
           confirmText='确认'
-          onClose={()=>{
+          onClose={() => {
             this.setState({
-              isOpened:false,
+              isOpened: false,
             })
           }}
-          onCancel={()=>{
+          onCancel={() => {
             this.setState({
-              isOpened:false,
+              isOpened: false,
             })
           }}
-          onConfirm={()=>{
+          onConfirm={() => {
             this.setState({
-              isOpened:false,
-            },()=>{
+              isOpened: false,
+            }, () => {
               Taro.openSetting({
-                success:(value)=> {
-                  if(value.authSetting['scope.userLocation']){
+                success: (value) => {
+                  if (value.authSetting['scope.userLocation']) {
                     Taro.getLocation({
                       type: 'gcj02',
-                      isHighAccuracy:true,
-                      success: (res)=> {
+                      isHighAccuracy: true,
+                      success: (res) => {
                         const latitude = res.latitude
                         const longitude = res.longitude
                         this.setState({
-                          newArrder:{
+                          newArrder: {
                             latitude,
                             longitude
                           },
@@ -618,9 +656,9 @@ class PunchClocks extends Component {
         {this.state.historicalIsOpened ? <HistoricalClock
           id={dtails.id}
           isOpened={this.state.historicalIsOpened}
-          onClose={()=>{
+          onClose={() => {
             this.setState({
-              historicalIsOpened:false
+              historicalIsOpened: false
             })
           }}
         /> : null}

+ 73 - 57
src/utils/tools/index.js

@@ -1,12 +1,12 @@
-import {clockState,clockJournalState} from './config';
+import { clockState, clockJournalState } from './config';
 import dayjs from "dayjs";
 import Taro from "@tarojs/taro";
 
-export const getClockState = (id,journal = false) => {
-  let arr = journal ? clockJournalState.filter(v=>v.id === id) : clockState.filter(v=>v.id === id);
-  if(arr.length > 0){
+export const getClockState = (id, journal = false) => {
+  let arr = journal ? clockJournalState.filter(v => v.id === id) : clockState.filter(v => v.id === id);
+  if (arr.length > 0) {
     return arr[0];
-  }else{
+  } else {
     return {};
   }
 }
@@ -18,88 +18,88 @@ export const getUserWordTimes = () => {
 }
 
 //获取当天公出小时数
-export const getHours = (startTime,endTime) => {
-  const {restStart,restEnd} = getUserWordTimes();
+export const getHours = (startTime, endTime) => {
+  const { restStart, restEnd } = getUserWordTimes();
   let a1 = dayjs(startTime);
   let b1 = dayjs(endTime);
-  let c1 = b1.diff(a1,'minutes');
-  let hourse = parseInt(c1/60);
-  let minutes = c1%60
-  let minutes1 = parseInt(minutes / 30)*0.5;
+  let c1 = b1.diff(a1, 'minutes');
+  let hourse = parseInt(c1 / 60);
+  let minutes = c1 % 60
+  let minutes1 = parseInt(minutes / 30) * 0.5;
 
   //开始时间在12:00之前 包括12:00
-  if(!a1.isAfter(dayjs(a1.format('YYYY-MM-DD')+restStart))){
-    if(b1.isAfter(dayjs(b1.format('YYYY-MM-DD')+restEnd))){
-      return hourse+minutes1-1.5
-    }else if(!b1.isAfter(dayjs(b1.format('YYYY-MM-DD')+restStart))){
-      return hourse+minutes1
-    }else{
+  if (!a1.isAfter(dayjs(a1.format('YYYY-MM-DD') + restStart))) {
+    if (b1.isAfter(dayjs(b1.format('YYYY-MM-DD') + restEnd))) {
+      return hourse + minutes1 - 1.5
+    } else if (!b1.isAfter(dayjs(b1.format('YYYY-MM-DD') + restStart))) {
+      return hourse + minutes1
+    } else {
       let a2 = dayjs(startTime);
-      let b2 = dayjs(b1.format('YYYY-MM-DD')+restStart);
-      let c2 = b2.diff(a2,'minutes');
-      let hourse2 = parseInt(c2/60);
-      let minutes2 = c2%60
-      let minutes3 = parseInt(minutes2 / 30)*0.5;
-      return hourse2+minutes3
+      let b2 = dayjs(b1.format('YYYY-MM-DD') + restStart);
+      let c2 = b2.diff(a2, 'minutes');
+      let hourse2 = parseInt(c2 / 60);
+      let minutes2 = c2 % 60
+      let minutes3 = parseInt(minutes2 / 30) * 0.5;
+      return hourse2 + minutes3
     }
     //  开始时间在12:00之后13:30之前
-  }else if(a1.isBefore(dayjs(a1.format('YYYY-MM-DD')+restEnd)) && a1.isAfter(dayjs(a1.format('YYYY-MM-DD')+restStart))){
-    if(b1.isAfter(dayjs(b1.format('YYYY-MM-DD')+restEnd))){
-      let a2 = dayjs(a1.format('YYYY-MM-DD')+restEnd);
+  } else if (a1.isBefore(dayjs(a1.format('YYYY-MM-DD') + restEnd)) && a1.isAfter(dayjs(a1.format('YYYY-MM-DD') + restStart))) {
+    if (b1.isAfter(dayjs(b1.format('YYYY-MM-DD') + restEnd))) {
+      let a2 = dayjs(a1.format('YYYY-MM-DD') + restEnd);
       let b2 = dayjs(endTime);
-      let c2 = b2.diff(a2,'minutes');
-      let hourse2 = parseInt(c2/60);
-      let minutes2 = c2%60
-      let minutes3 = parseInt(minutes2 / 30)*0.5;
-      return hourse2+minutes3
-    }else{
+      let c2 = b2.diff(a2, 'minutes');
+      let hourse2 = parseInt(c2 / 60);
+      let minutes2 = c2 % 60
+      let minutes3 = parseInt(minutes2 / 30) * 0.5;
+      return hourse2 + minutes3
+    } else {
       return 0;
     }
     //开始时间在13:30之后 包括13:30
-  }else if(!a1.isBefore(dayjs(a1.format('YYYY-MM-DD')+restEnd))){
-    return hourse+minutes1
+  } else if (!a1.isBefore(dayjs(a1.format('YYYY-MM-DD') + restEnd))) {
+    return hourse + minutes1
   }
 }
 
 //获取总时长
-export const getNumHourse = (startTimeValue,endTimeValue,days) =>{
-  const {start,end} = getUserWordTimes();
+export const getNumHourse = (startTimeValue, endTimeValue, days) => {
+  const { start, end } = getUserWordTimes();
 
   //开始时间 向下取整   结束时间向上取整
-  let startTimeArr = [parseInt(dayjs(startTimeValue).format('HH')),parseInt(dayjs(startTimeValue).format('mm'))];
-  let endTimeArr = [parseInt(dayjs(endTimeValue).format('HH')),parseInt(dayjs(endTimeValue).format('mm'))];
+  let startTimeArr = [parseInt(dayjs(startTimeValue).format('HH')), parseInt(dayjs(startTimeValue).format('mm'))];
+  let endTimeArr = [parseInt(dayjs(endTimeValue).format('HH')), parseInt(dayjs(endTimeValue).format('mm'))];
 
-  if(startTimeArr[1]>0 && startTimeArr[1]<30){
+  if (startTimeArr[1] > 0 && startTimeArr[1] < 30) {
     startTimeArr[1] = 30;
-  }else if(startTimeArr[1]>30){
-    startTimeArr[0] = startTimeArr[0]+1;
+  } else if (startTimeArr[1] > 30) {
+    startTimeArr[0] = startTimeArr[0] + 1;
     startTimeArr[1] = 0;
   }
 
-  if(endTimeArr[1]>0 && endTimeArr[1]<30){
+  if (endTimeArr[1] > 0 && endTimeArr[1] < 30) {
     endTimeArr[1] = 0;
-  }else if(startTimeArr[1]>30){
+  } else if (startTimeArr[1] > 30) {
     endTimeArr[1] = 30;
   }
 
-  let startTime = dayjs(startTimeValue).format('YYYY-MM-DD') + ' '+startTimeArr.join(':')
-  let endTime = dayjs(endTimeValue).format('YYYY-MM-DD') + ' '+endTimeArr.join(':')
+  let startTime = dayjs(startTimeValue).format('YYYY-MM-DD') + ' ' + startTimeArr.join(':')
+  let endTime = dayjs(endTimeValue).format('YYYY-MM-DD') + ' ' + endTimeArr.join(':')
 
-  if(dayjs(dayjs(startTime).format('YYYY-MM-DD')).isSame(dayjs(dayjs(endTime).format('YYYY-MM-DD')))){
-    let num = getHours(startTime,endTime)
-    if(num < 0){
+  if (dayjs(dayjs(startTime).format('YYYY-MM-DD')).isSame(dayjs(dayjs(endTime).format('YYYY-MM-DD')))) {
+    let num = getHours(startTime, endTime)
+    if (num < 0) {
       return 0
-    }else{
-      return getHours(startTime,endTime)
+    } else {
+      return getHours(startTime, endTime)
     }
-  }else{
-    let a = getHours(startTime,dayjs(dayjs(startTime).format('YYYY-MM-DD')+end));
-    let b = getHours(dayjs(dayjs(endTime).format('YYYY-MM-DD')+start),endTime);
+  } else {
+    let a = getHours(startTime, dayjs(dayjs(startTime).format('YYYY-MM-DD') + end));
+    let b = getHours(dayjs(dayjs(endTime).format('YYYY-MM-DD') + start), endTime);
 
-    let totalDuration = getHours(dayjs(startTime).format('YYYY-MM-DD')+start,dayjs(dayjs(startTime).format('YYYY-MM-DD')+end));   //一天工作时长
+    let totalDuration = getHours(dayjs(startTime).format('YYYY-MM-DD') + start, dayjs(dayjs(startTime).format('YYYY-MM-DD') + end));   //一天工作时长
 
-    let c = (days-2)*totalDuration;
-    return a+b+c;
+    let c = (days - 2) * totalDuration;
+    return a + b + c;
   }
 }
 
@@ -116,5 +116,21 @@ export const formatDate = (year, month, day, hour, minute) => {
   return year + '-' + newmonth + '-' + newday + ' ' + newhour + ":" + newminute;
 };
 
-
+export const deepClone1 = (obj) => {
+  //判断拷贝的要进行深拷贝的是数组还是对象,是数组的话进行数组拷贝,对象的话进行对象拷贝
+  var objClone = Array.isArray(obj) ? [] : {};
+  //进行深拷贝的不能为空,并且是对象或者是
+  if (obj && typeof obj === "object") {
+    for (key in obj) {
+      if (obj.hasOwnProperty(key)) {
+        if (obj[key] && typeof obj[key] === "object") {
+          objClone[key] = deepClone1(obj[key]);
+        } else {
+          objClone[key] = obj[key];
+        }
+      }
+    }
+  }
+  return objClone;
+}