dev01 1 éve%!(EXTRA string=óta)
szülő
commit
a7b81160c0

+ 4 - 2
src/app.config.js

@@ -5,6 +5,7 @@ export default {
     'pages/login/index', // 登录
     'pages/mybusiness/index', // 审核
     'pages/detail/index', //项目详情
+    'pages/reclockin/index', // 重新打卡
     // 'pages/projectAdd/index',// 新增项目
   ],
   tabBar: {
@@ -25,7 +26,7 @@ export default {
         iconPath: './image/my.png',
         selectedIconPath: './image/myselect.png',
         pagePath: 'pages/mybusiness/index',
-        text: '审核'
+        text: '我的'
       }],
     'color': '#515151',
     'selectedColor': '#56abe4',
@@ -55,5 +56,6 @@ export default {
   //     desc: "你的位置信息将用于小程序定位"
   //   }
   // },
-  "lazyCodeLoading": "requiredComponents"
+  "lazyCodeLoading": "requiredComponents",
+  "__usePrivacyCheck__": true,
 }

+ 57 - 57
src/components/common/timePicker/timePicker.js

@@ -1,17 +1,17 @@
 import dayjs from "dayjs";
-import {getUserWordTimes,formatDate} from "../../../utils/tools";
+import { getUserWordTimes, formatDate } from "../../../utils/tools";
 Component({
   /**
    * 组件的属性列表
    */
   properties: {
-    isPartition:{
+    isPartition: {
       type: Boolean,
     },
     pickerShow: {
       type: Boolean,
-      observer:function(val){   //弹出动画
-        if(val){
+      observer: function (val) {   //弹出动画
+        if (val) {
           let animation = wx.createAnimation({
             duration: 500,
             timingFunction: "ease"
@@ -28,7 +28,7 @@ Component({
               animationData: animation.export()
             })
           }, 0);
-        }else{
+        } else {
           let animation = wx.createAnimation({
             duration: 100,
             timingFunction: "ease"
@@ -47,7 +47,7 @@ Component({
 
         // 在picker滚动未停止前点确定,会使startValue数组各项归零,发生错误,这里判断并重新初始化
         // 微信新增了picker滚动的回调函数,已进行兼容
-        if(this.data.startValue&&this.data.endValue){
+        if (this.data.startValue && this.data.endValue) {
           let s = 0, e = 0;
           let conf = this.data.config;
 
@@ -61,13 +61,13 @@ Component({
               e++;
             }
           });
-          let tmp={
-            hour:4,
-            minute:5,
-            second:6
+          let tmp = {
+            hour: 4,
+            minute: 5,
+            second: 6
           }
           let n = tmp[conf.column];
-          if (s>=n || e>=n) {
+          if (s >= n || e >= n) {
             this.initPick(this.data.config);
             this.setData({
               startValue: this.data.startValue,
@@ -90,11 +90,11 @@ Component({
     // yearStart:2000,
     // yearEnd:2100
   },
-  detached: function() {
+  detached: function () {
     //console.log("dele");
   },
-  attached: function() {},
-  ready: function() {
+  attached: function () { },
+  ready: function () {
     this.readConfig();
     this.initPick(this.data.config || {});
     this.setData({
@@ -125,9 +125,9 @@ Component({
           limitStartTime =
             new Date().getTime() - 1000 * 60 * 60 * 24 * conf.dateLimit;
         }
-        if(conf.limitStartTime){
+        if (conf.limitStartTime) {
 
-          limitStartTime = new Date(conf.limitStartTime.replace(/-/g,'/')).getTime();
+          limitStartTime = new Date(conf.limitStartTime.replace(/-/g, '/')).getTime();
         }
 
         if (conf.limitEndTime) {
@@ -159,56 +159,56 @@ Component({
       });
     },
     //滚动开始
-    handlePickStart:function(e){
+    handlePickStart: function (e) {
       this.setData({
-        isPicking:true
+        isPicking: true
       })
     },
     //滚动结束
-    handlePickEnd:function(e){
+    handlePickEnd: function (e) {
       this.setData({
-        isPicking:false
+        isPicking: false
       })
     },
-    partitionTimeHandle(time){
+    partitionTimeHandle(time) {
       let year = dayjs(time).year();
-      let month = dayjs(time).month()+1;
+      let month = dayjs(time).month() + 1;
       let day = dayjs(time).date();
       let hour = dayjs(time).hour();
       let minute = dayjs(time).minute();
 
       let current = formatDate(year, month, day, hour, minute);
-      const {start,restStart,restEnd,end} = getUserWordTimes();
+      const { start = "8:30", restStart = "12:00", restEnd = "13:30", end = "17:30" } = getUserWordTimes();
       let startArr = start.split(':');
       let endArr = end.split(':');
       let restEndArr = restEnd.split(':');
 
-      if(dayjs(dayjs(current).format('YYYY-MM-DD HH:mm')).isBefore(dayjs(dayjs(current).format('YYYY-MM-DD')+start))){
-        current = formatDate(year, month, day,parseInt(startArr[0]), parseInt(startArr[1]));
-      }else if(dayjs(dayjs(current).format('YYYY-MM-DD HH:mm')).isAfter(dayjs(dayjs(current).format('YYYY-MM-DD')+end))){
-        current = formatDate(year, month, day,parseInt(endArr[0]), parseInt(endArr[1]));
-      }else if(
-        dayjs(dayjs(current).format('YYYY-MM-DD HH:mm')).isAfter(dayjs(dayjs(current).format('YYYY-MM-DD')+restStart))
+      if (dayjs(dayjs(current).format('YYYY-MM-DD HH:mm')).isBefore(dayjs(dayjs(current).format('YYYY-MM-DD') + start))) {
+        current = formatDate(year, month, day, parseInt(startArr[0]), parseInt(startArr[1]));
+      } else if (dayjs(dayjs(current).format('YYYY-MM-DD HH:mm')).isAfter(dayjs(dayjs(current).format('YYYY-MM-DD') + end))) {
+        current = formatDate(year, month, day, parseInt(endArr[0]), parseInt(endArr[1]));
+      } else if (
+        dayjs(dayjs(current).format('YYYY-MM-DD HH:mm')).isAfter(dayjs(dayjs(current).format('YYYY-MM-DD') + restStart))
         &&
-        dayjs(dayjs(current).format('YYYY-MM-DD HH:mm')).isBefore(dayjs(dayjs(current).format('YYYY-MM-DD')+restEnd))
-      ){
-        current = formatDate(year, month, day,parseInt(restEndArr[0]), parseInt(restEndArr[1]));
+        dayjs(dayjs(current).format('YYYY-MM-DD HH:mm')).isBefore(dayjs(dayjs(current).format('YYYY-MM-DD') + restEnd))
+      ) {
+        current = formatDate(year, month, day, parseInt(restEndArr[0]), parseInt(restEndArr[1]));
       }
       return current;
     },
-    onConfirm: function() {
+    onConfirm: function () {
       //滚动未结束时不能确认
-      if(this.data.isPicking){return}
+      if (this.data.isPicking) { return }
       let startTime = new Date(this.data.startPickTime.replace(/-/g, "/"));
       let endTime = new Date(this.data.endPickTime.replace(/-/g, "/"));
       let lv = true;
       this.triggerEvent("conditionaljudgment", {
         startTime,
         endTime,
-        setLv:(v)=>{lv = v}
+        setLv: (v) => { lv = v }
       });//条件判断
       wx.nextTick(() => {
-        if(!lv){return}
+        if (!lv) { return }
         if (startTime <= endTime || !this.data.endDate) {
           this.setData({
             startTime,
@@ -216,8 +216,8 @@ Component({
           });
           let startArr = formatTime(startTime).arr;
           let endArr = formatTime(endTime).arr;
-          let format0 = function(num){
-            return num<10?'0'+num:num
+          let format0 = function (num) {
+            return num < 10 ? '0' + num : num
           }
 
           let startTimeBack =
@@ -252,7 +252,7 @@ Component({
           };
           //触发自定义事件
           //isPartition是否按地区判断工作开始结束时间
-          if(this.data.isPartition){
+          if (this.data.isPartition) {
             let startTimeInfor = this.partitionTimeHandle(time.startTime);
             let endTimeInfor = this.partitionTimeHandle(time.endTime);
             time.selectStartTime = time.startTime;
@@ -260,10 +260,10 @@ Component({
             time.startTime = dayjs(startTimeInfor).format('YYYY-MM-DD HH:mm:ss');
             time.endTime = dayjs(endTimeInfor).format('YYYY-MM-DD HH:mm:ss');
             this.triggerEvent("setpickertime", time);
-          }else{
+          } else {
             this.triggerEvent("setpickertime", time);
           }
-          this.triggerEvent("hidepicker", {},{});
+          this.triggerEvent("hidepicker", {}, {});
         } else {
           wx.showToast({
             icon: "none",
@@ -272,22 +272,22 @@ Component({
         }
       })
     },
-    hideModal: function(e) {
-      this.triggerEvent("hidepicker",  e.detail,{});
+    hideModal: function (e) {
+      this.triggerEvent("hidepicker", e.detail, {});
     },
-    changeStartDateTime: function(e) {
+    changeStartDateTime: function (e) {
       let val = e.detail.value;
 
       this.compareTime(val, "start");
     },
 
-    changeEndDateTime: function(e) {
+    changeEndDateTime: function (e) {
       let val = e.detail.value;
       this.compareTime(val, "end");
     },
     //比较时间是否在范围内
     compareTime(val_, type) {
-      const val = val_.map(it=>it.toString());
+      const val = val_.map(it => it.toString());
       let h = val[3] ? this.data.HourList[val[3]] : "00";
       let m = val[4] ? this.data.MinuteList[val[4]] : "00";
       let s = val[5] ? this.data.SecondList[val[5]] : "00";
@@ -310,7 +310,7 @@ Component({
       let year, month, day, hour, min, sec, limitDate;
       let tempArr = []
 
-      if (!this.data.dateLimit){
+      if (!this.data.dateLimit) {
         limitDate = [
           this.data.YearList[val[0]],
           this.data.MonthList[val[1]],
@@ -333,11 +333,11 @@ Component({
       } else {
         limitDate = [
           this.data.YearList[val[0]],
-        this.data.MonthList[val[1]],
-        this.data.DayList[val[2]],
-        this.data.HourList[val[3]],
-        this.data.MinuteList[val[4]],
-       this.data.SecondList[val[5]]
+          this.data.MonthList[val[1]],
+          this.data.DayList[val[2]],
+          this.data.HourList[val[3]],
+          this.data.MinuteList[val[4]],
+          this.data.SecondList[val[5]]
         ]
 
       }
@@ -355,7 +355,7 @@ Component({
         this.setEndDate(year, month, day, hour, min, sec);
       }
     },
-    getDays: function(year, month) {
+    getDays: function (year, month) {
       let daysInMonth = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
       if (month === 2) {
         return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0
@@ -365,8 +365,8 @@ Component({
         return daysInMonth[month - 1];
       }
     },
-    initPick: function(initData) {
-      const date = initData.initStartTime ? new Date(initData.initStartTime.replace(/-/g, '/')): new Date();
+    initPick: function (initData) {
+      const date = initData.initStartTime ? new Date(initData.initStartTime.replace(/-/g, '/')) : new Date();
       const endDate = initData.initEndTime ? new Date(initData.initEndTime.replace(/-/g, '/')) : new Date();
       // const startDate = new Date(date.getTime() - 1000 * 60 * 60 * 24);
       const startDate = date;
@@ -501,7 +501,7 @@ Component({
         secondIdx
       };
     },
-    setStartDate: function(year, month, day, hour, minute, second) {
+    setStartDate: function (year, month, day, hour, minute, second) {
       let pickerDateArr = this.setPickerDateArr(
         "start",
         year,
@@ -540,7 +540,7 @@ Component({
           this.data.SecondList[pickerDateArr.secondIdx]
       });
     },
-    setEndDate: function(year, month, day, hour, minute, second) {
+    setEndDate: function (year, month, day, hour, minute, second) {
       let pickerDateArr = this.setPickerDateArr(
         "end",
         year,

+ 31 - 51
src/components/historicalClock/index.jsx

@@ -2,15 +2,11 @@ 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 { listRecordLog } from '../../utils/servers/servers';
 import "taro-ui/dist/style/components/icon.scss";
 import { getClockState } from "../../utils/tools";
-import ImagePicker from "../common/imagePicker";
-import { resourceAddress } from "../../utils/config";
+
 
 class HistoricalClock extends Component {
   constructor(props) {
@@ -18,43 +14,34 @@ class HistoricalClock extends Component {
     this.state = {
       publicReleaseLog: []
     }
-    // this.getListPublicReleaseLog = this.getListPublicReleaseLog.bind(this);
+    this.listRecordLog = this.listRecordLog.bind(this);
   }
 
   componentDidMount() {
-    // this.getListPublicReleaseLog();
+    this.listRecordLog();
   }
 
-  // getListPublicReleaseLog() {
-  //   Taro.showLoading({
-  //     title: '加载中...'
-  //   })
-  //   getListPublicReleaseLog({
-  //     id: this.props.id
-  //   }).then(v => {
-  //     Taro.hideLoading();
-  //     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 })
-  //           }
-  //         }
-  //         d.photoUrl = list;
-  //       }
-  //       this.setState({
-  //         publicReleaseLog: v.data,
-  //       })
-  //     } else {
-  //       Taro.showToast({ title: v.error[0].message, icon: 'none' })
-  //     }
-  //   }).catch(err => {
-  //     Taro.hideLoading();
-  //     Taro.showToast({ title: '系统错误.请稍后重试', icon: 'none' })
-  //     //console.log(err)
-  //   })
-  // }
+  listRecordLog() {
+    Taro.showLoading({
+      title: '加载中...'
+    })
+    listRecordLog({
+      psrId: this.props.id
+    }).then(v => {
+      Taro.hideLoading();
+      if (v.code === 200) {
+        this.setState({
+          publicReleaseLog: v.data,
+        })
+      } else {
+        Taro.showToast({ title: v.msg, icon: 'none' })
+      }
+    }).catch(err => {
+      Taro.hideLoading();
+      Taro.showToast({ title: '系统错误.请稍后重试', icon: 'none' })
+      //console.log(err)
+    })
+  }
 
   render() {
     return (
@@ -71,9 +58,9 @@ class HistoricalClock extends Component {
                   <View className='head'>
                     <View className='spot' />
                     <View className='clockTime' style={{
-                      color: getClockState(v.status, true).color
+                      color: getClockState(v.processStatus).color
                     }}>
-                      {getClockState(v.status, true).title}
+                      {getClockState(v.processStatus).title}
                     </View>
                   </View>
                   <View className='clockContent'>
@@ -85,22 +72,15 @@ class HistoricalClock extends Component {
                     }}>
                       <View className='contentItem'>
                         <AtIcon className='atIcon' value='user' size='15' color='#999999' />
-                        操作人:{v.aname}
+                        操作人:{v.name}
                       </View>
                       <View className='contentItem'>
                         <AtIcon className='atIcon' value='clock' size='15' color='#999999' />
-                        操作时间:{v.createTimes}
+                        操作时间:{v.createTime}
                       </View>
-                      {v.remarks ? <View className='contentItem'>
+                      {v.content ? <View className='contentItem'>
                         <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' />
-                        附件:
-                        <ImagePicker
-                          files={v.photoUrl || []}
-                          showAddBtn={false} />
+                        备注:{v.content}
                       </View> : null}
                     </View>
                   </View>

+ 176 - 79
src/pages/detail/index.jsx

@@ -1,6 +1,6 @@
 import React, { Component } from "react";
 import Taro, { getCurrentInstance } from "@tarojs/taro";
-import { View, Image, Button } from "@tarojs/components";
+import { View, Text, Image, Button } from "@tarojs/components";
 import {
   AtButton,
   AtCalendar,
@@ -17,8 +17,10 @@ import {
 } from "../../utils/servers/servers";
 import InquiryModal from "../../components/common/inquiryModal";
 import ImagePicker from "../../components/common/imagePicker";
+import HistoricalClock from '../../components/historicalClock';
 import { resourceAddress } from "../../utils/config";
 import "../mybusiness/index";
+import './index.less'
 
 class Detail extends Component {
   $instance = getCurrentInstance();
@@ -29,6 +31,7 @@ class Detail extends Component {
       opinion: "",
       attachmentUrl: [],
       data: {},
+      historicalIsOpened: false,
     }
     this.getReleasetDails = this.getReleasetDails.bind(this);
   }
@@ -45,7 +48,6 @@ class Detail extends Component {
       if (v.code === 200) {
         if (v.data) {
           let list = [];
-          console.log("---", v.data.annexUrl)
           for (let i of (v.data.annexUrl || '').split(',')) {
             if (i) {
               list.push({ 'url': resourceAddress + i })
@@ -119,93 +121,175 @@ class Detail extends Component {
             loading
           /> :
           <View className="list">
-            <View
-              className="item"
-            >
-              <View className="infor">
-                <View className="title">
-                  <View className="aname">
-                    {data.projectName}
+            <View className="item">
+              {
+                // 我的打卡
+                this.$instance.router.params.type == 0 &&
+                <View className="infor">
+                  <View className="title">
+                    <View className="aname">
+                      {data.projectName}
+                    </View>
                   </View>
-                </View>
-                <View className="userName">
-                  <View className="uNtext">
-                    负责人:{data.adminName}
+                  <View className="userName">
+                    <View className="uNtext">
+                      打卡工时:{data.duration}
+                    </View>
                   </View>
-                </View>
-                <View className="userName">
-                  <View className="uNtext">
-                    研发人员:{data.name}
+                  <View className="userName">
+                    <View className="uNtext">
+                      打卡时间:{data.recordTime}
+                    </View>
                   </View>
-                </View>
-                <View className="userName">
-                  <View className="uNtext">
-                    累积工时:{data.duration}
+                  <View className="userName">
+                    <View className="uNtext">
+                      操作人:{data.name}
+                    </View>
                   </View>
+                  <View className="userName">
+                    <View className="uNtext">
+                      操作时间:{data.createTime}
+                    </View>
+                  </View>
+                  <View className="userName">
+                    <View className="uNtext">
+                      备注:{data.content}
+                    </View>
+                  </View>
+                  <View className="userName">
+                    <View className="uNtext">
+                      附件:
+                      {attachmentUrl && attachmentUrl.length > 0 &&
+                        <ImagePicker
+                          files={attachmentUrl || []}
+                          showAddBtn={false}
+                        />}
+                    </View>
+                  </View>
+                  <View className="userName">
+                    <View className="uNtext">
+                      审核状态:
+                      <Text style={{ color: ["#000000", "#dbc037", "#6eb173", "red"][data.processStatus] }}>
+                        {["", "待审核", "审核通过", "审核驳回"][data.processStatus]}
+                      </Text>
+                      <Text className="logbt" onClick={() => { this.setState({ historicalIsOpened: true }) }}>查看审核日志</Text>
+                    </View>
+                  </View>
+                  {data.processStatus == 3 &&
+                    <View className="option">
+                      <AtButton
+                        type="primary"
+                        loading={this.state.loading}
+                        circle
+                        onClick={() => {
+                          Taro.navigateTo({
+                            url: `/pages/reclockin/index?id=${this.$instance.router.params.id}`,
+                          });
+                        }}
+                      >
+                        重新发起
+                      </AtButton>
+                    </View>}
                 </View>
-                <View className="userName">
-                  {console.log("====", attachmentUrl)}
-                  {attachmentUrl && attachmentUrl.length > 0 &&
-                    <ImagePicker
-                      files={attachmentUrl || []}
-                      showAddBtn={false}
-                    />}
-                </View>
-                {data.processStatus == 1 && <View style={{ marginTop: "30px" }}>
-                  <AtTextarea
-                    value={this.state.opinion}
-                    onChange={(value) => {
-                      this.setState({
-                        opinion: value,
-                      });
-                    }}
-                    maxLength={50}
-                    placeholder="请填写审批意见"
-                  />
-                  <View className="operation">
-                    <AtButton
-                      type="secondary"
-                      circle
-                      loading={this.state.loading}
-                      onClick={() => {
-                        this.setState({
-                          isInquiryOpened: true,
-                          inquiryTitle: "提醒",
-                          inquiryContent: "您确定要驳回此申请吗?",
-                          inquiryFn: () => {
-                            this.agree(3);
-                          },
-                        });
-                      }}
-                    >
-                      驳回
-                    </AtButton>
-                    <AtButton
-                      type="primary"
-                      loading={this.state.loading}
-                      circle
-                      onClick={() => {
-                        if (this.state.loading) {
-                          return;
-                        }
+              }
+              {
+                // 审核
+                this.$instance.router.params.type == 1 &&
+                <View className="infor">
+                  <View className="title">
+                    <View className="aname">
+                      {data.projectName}
+                    </View>
+                  </View>
+                  <View className="userName">
+                    <View className="uNtext">
+                      负责人:{data.adminName}
+                    </View>
+                  </View>
+                  <View className="userName">
+                    <View className="uNtext">
+                      研发人员:{data.name}
+                    </View>
+                  </View>
+                  <View className="userName">
+                    <View className="uNtext">
+                      累积工时:{data.duration}
+                    </View>
+                  </View>
+                  <View className="userName">
+                    <View className="uNtext">
+                      附件:
+                      {attachmentUrl && attachmentUrl.length > 0 &&
+                        <ImagePicker
+                          files={attachmentUrl || []}
+                          showAddBtn={false}
+                        />}
+                    </View>
+                  </View>
+                  <View className="userName">
+                    <View className="uNtext">
+                      审核状态:
+                      <Text style={{ color: ["#000000", "#dbc037", "#6eb173", "red"][data.processStatus] }}>
+                        {["", "待审核", "审核通过", "审核驳回"][data.processStatus]}
+                      </Text>
+                      <Text className="logbt" onClick={() => { this.setState({ historicalIsOpened: true }) }}>查看审核日志</Text>
+                    </View>
+                  </View>
+                  {data.processStatus == 1 && <View style={{ marginTop: "30px" }}>
+                    <AtTextarea
+                      value={this.state.opinion}
+                      onChange={(value) => {
                         this.setState({
-                          isInquiryOpened: true,
-                          inquiryTitle: "提醒",
-                          inquiryContent: "您确定要同意此申请吗?",
-                          inquiryFn: () => {
-                            this.agree(2);
-                          },
+                          opinion: value,
                         });
                       }}
-                    >
-                      同意
-                    </AtButton>
-                  </View>
-                </View>}
-              </View>
+                      maxLength={50}
+                      placeholder="请填写审批意见"
+                    />
+                    <View className="operation">
+                      <AtButton
+                        type="secondary"
+                        circle
+                        loading={this.state.loading}
+                        onClick={() => {
+                          this.setState({
+                            isInquiryOpened: true,
+                            inquiryTitle: "提醒",
+                            inquiryContent: "您确定要驳回此申请吗?",
+                            inquiryFn: () => {
+                              this.agree(3);
+                            },
+                          });
+                        }}
+                      >
+                        驳回
+                      </AtButton>
+                      <AtButton
+                        type="primary"
+                        loading={this.state.loading}
+                        circle
+                        onClick={() => {
+                          if (this.state.loading) {
+                            return;
+                          }
+                          this.setState({
+                            isInquiryOpened: true,
+                            inquiryTitle: "提醒",
+                            inquiryContent: "您确定要同意此申请吗?",
+                            inquiryFn: () => {
+                              this.agree(2);
+                            },
+                          });
+                        }}
+                      >
+                        同意
+                      </AtButton>
+                    </View>
+                  </View>}
+                </View>
+              }
             </View>
           </View>}
-
         <InquiryModal
           isOpened={this.state.isInquiryOpened}
           title={this.state.inquiryTitle}
@@ -229,6 +313,19 @@ class Detail extends Component {
             });
           }}
         />
+        {
+          this.state.historicalIsOpened &&
+          <HistoricalClock
+            id={data.id}
+            isOpened={this.state.historicalIsOpened}
+            onClose={() => {
+              this.setState({
+                historicalIsOpened: false
+              })
+            }}
+          />
+        }
+
       </View>
     );
   }

+ 14 - 0
src/pages/detail/index.less

@@ -0,0 +1,14 @@
+.at-image-picker__remove-btn{
+  display: none;
+}
+
+.logbt{
+  margin-left: 30px;
+  text-decoration: underline;
+  color: #4e6ef2;
+}
+
+.option{
+  width: 50%;
+  margin: 50px auto;
+}

+ 1 - 0
src/pages/login/index.jsx

@@ -178,6 +178,7 @@ class Login extends Component {
         // let obj = Taro.getStorageSync('userInfor');
         // obj.workTimeInfor = msg.user;
         Taro.setStorageSync('userInfor', msg.user);
+        Taro.setStorageSync('roles', msg.roles);
         Taro.switchTab({
           url: '/pages/project/index',
         })

+ 174 - 41
src/pages/mybusiness/index.jsx

@@ -4,16 +4,10 @@ import { View, Picker, ScrollView, Button } from '@tarojs/components'
 import { getProjectList, listRecord } from '../../utils/servers/servers';
 import dayjs from 'dayjs';
 import {
-  AtSearchBar,
   AtTabs,
   AtTabsPane,
   AtIcon,
-  AtModal,
-  AtModalContent,
-  AtModalAction,
-  AtTextarea
 } from 'taro-ui';
-import { clockState } from '../../utils/tools/config';
 
 import './index.less';
 import 'taro-ui/dist/style/components/tabs.scss';
@@ -25,8 +19,6 @@ import "taro-ui/dist/style/components/icon.scss";
 import "taro-ui/dist/style/components/modal.scss";
 
 import MyList from './myList';
-import InquiryModal from "../../components/common/inquiryModal";
-import { resourceAddress } from "../../utils/config";
 
 class Examine extends Component {
 
@@ -35,12 +27,19 @@ class Examine extends Component {
     this.state = {
       typeList: [
         { title: '全部', type: 0 },
-        { title: '未审核', type: 2 },
-        { title: '已审核', type: 1 },],
+        { title: '待审核', type: 1 },
+        { title: '已审核', type: 2 },
+        { title: '已驳回', type: 3 }],
+      seltype: {},
       current: 0,
+      tlist: [{ title: '我的打卡', type: 0 }],
+      tabs: 0,
       list: [],
       pageNum: 1,
       listState: 'LOADING',
+      isPickerRender: false,
+      rangeEndMinuteVal: '',
+      rangeStartMinuteVal: '',
 
     }
     this.getPublicReleaseList = this.getPublicReleaseList.bind(this);
@@ -48,6 +47,13 @@ class Examine extends Component {
   }
 
   componentDidShow() {
+    let roles = Taro.getStorageSync('roles');
+    // 项目经理  技术总监
+    if (roles.includes("manage") || roles.includes("Inspector")) {
+      this.setState({
+        tlist: [{ title: '我的打卡', type: 0 }, { title: '审核', type: 1 }]
+      })
+    }
     this.getPublicReleaseList();
   }
 
@@ -87,7 +93,9 @@ class Examine extends Component {
       processStatus: this.state.current != 0 ? this.state.current : "",
       pageNum: pageNum,
       pageSize: 10,
-      roleType: 1,
+      roleType: this.state.tabs,
+      startTime: this.state.rangeStartMinuteVal || undefined,
+      endTime: this.state.rangeEndMinuteVal || undefined,
     }
     for (let i in data) {
       if (!data[i] && data[i] != 0) {
@@ -125,6 +133,21 @@ class Examine extends Component {
     Taro.stopPullDownRefresh();
   }
 
+  onPickerHide() {
+    this.setState({
+      isPickerRender: false,
+    });
+  }
+
+  async onSetPickerTime(val) {
+    let data = val.detail;
+    await this.setState({
+      rangeStartMinuteVal: dayjs(data.selectStartTime).format("YYYY-MM-DD"),
+      rangeEndMinuteVal: dayjs(data.selectEndTime).format("YYYY-MM-DD")
+    })
+    await this.getMyList(1);
+  }
+
 
   render() {
     return (
@@ -150,40 +173,150 @@ class Examine extends Component {
               }}
             /> */}
           </View>
-        </View>
-        <AtTabs
-          swipeable={false}
-          current={this.state.current || 0}
-          tabList={this.state.typeList}
-          onClick={(current) => {
-            this.setState({
-              list: [],
-              pageNum: 1,
-              current,
-            }, () => {
-              this.getPublicReleaseList();
-            })
-          }}>
+          <AtTabs
+            swipeable={false}
+            current={this.state.tabs || 0}
+            tabList={this.state.tlist}
+            onClick={(tabs) => {
+              this.setState({
+                list: [],
+                pageNum: 1,
+                tabs: this.state.tlist[tabs].type,
+              }, () => {
+                this.getPublicReleaseList();
+              })
+            }}
+          >
+          </AtTabs>
+
+          <ScrollView className={this.state.openSearch ? 'searchBottomLOL' : ''} scrollX style={{ width: '100%' }}>
+            <View className='searchBottom'>
+              <View className='searchItem' style={{ paddingLeft: '5px' }}>
+                <Picker
+                  value={this.state.seltype.type}
+                  range={this.state.typeList} rangeKey='title' mode='selector'
+                  onChange={(e) => {
+                    this.setState({
+                      seltype: this.state.typeList[e.detail.value],
+                      current: this.state.typeList[e.detail.value].type,
+                    }, () => {
+                      this.getPublicReleaseList();
+                    })
+                  }}>
+                  {
+                    !this.state.seltype.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.seltype.title}
+                        </View>
+                        <View className='iconContent' />
+                      </View>
+                  }
+                </Picker>
+                {
+                  this.state.seltype.title &&
+                  <View className='searchSelectContent'>
+                    <View className='selectIcon'
+                      onClick={(e) => {
+                        e.stopPropagation();
+                        this.setState({
+                          seltype: {},
+                          current: 0,
+                        }, () => {
+                          this.getPublicReleaseList();
+                        })
+                      }}>
+                      <AtIcon value='close-circle' size='10' color='#FFFFFF' />
+                    </View>
+                  </View>
+                }
+              </View>
+
+              {/* 多选时间框 */}
+              <View className='searchItem'
+                onClick={() => {
+                  this.setState({
+                    isPickerRender: true
+                  })
+                }}>
+                <View>
+                  {
+                    !this.state.rangeStartMinuteVal ?
+                      <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='selectValue' >
+                          {this.state.rangeStartMinuteVal + "~" + this.state.rangeEndMinuteVal}
+                        </View>
+                        <View className='iconContent' />
+                      </View>
+                  }
+                </View>
+                {
+                  this.state.rangeStartMinuteVal &&
+                  <View className='searchSelectContent'>
+                    <View className='selectIcon'
+                      onClick={(e) => {
+                        e.stopPropagation();
+                        this.setState({
+                          rangeStartMinuteVal: '',
+                          rangeEndMinuteVal: '',
+                        }, () => {
+                          this.getPublicReleaseList();
+                        })
+                      }}>
+                      <AtIcon value='close-circle' size='10' color='#FFFFFF' />
+                    </View>
+                  </View>
+                }
+              </View>
+            </View>
+          </ScrollView>
           {
             this.state.typeList?.map((item, index) =>
-              <AtTabsPane
-                current={this.state.current}
-                index={index}
-              >
-                <MyList
-                  title={item.title}
-                  typelist={this.state.typeList}
-                  seeView={this.state.current}
-                  list={this.state.list}
-                  listState={this.state.listState}
-                  onRefresh={() => {
-                    this.getProjectList(true);
-                  }}
-                />
-              </AtTabsPane>
+              <MyList
+                type={this.state.tabs}
+                title={item.title}
+                typelist={this.state.typeList}
+                seeView={this.state.current}
+                list={this.state.list}
+                listState={this.state.listState}
+                onRefresh={() => {
+                  this.getProjectList(true);
+                }}
+              />
             )
           }
-        </AtTabs>
+
+        </View>
+
+        <timePicker
+          config={{
+            endDate: true,
+            column: "day",
+            dateLimit: false,
+            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) => {
+
+          }}
+          onhidepicker={() => {
+            this.onPickerHide()
+          }}
+          onsetpickertime={(v) => {
+            this.onSetPickerTime(v)
+          }}>
+        </timePicker>
+
       </View>
     )
   }

+ 2 - 2
src/pages/mybusiness/index.less

@@ -41,7 +41,7 @@
       background: #FFFFFF;
       border-bottom-left-radius: 10px;
       border-bottom-right-radius: 10px;
-      padding: 10px 0 10px 0;
+      padding: 15px 30px;
 
       .searchBottomBack {
         position: fixed;
@@ -251,7 +251,7 @@
 
         .userName {
           font-size: 25px;
-          color: #999999;
+          // color: #999999;
           padding-bottom: 15px;
         }
 

+ 2 - 2
src/pages/mybusiness/myList.jsx

@@ -13,7 +13,7 @@ class MyList extends Component {
   }
 
   render() {
-    const { title } = this.props
+    const { type } = this.props
     return (
       <View className="indexPage">
         <View className="list">
@@ -30,7 +30,7 @@ class MyList extends Component {
               onClick={(e) => {
                 e.stopPropagation();
                 Taro.navigateTo({
-                  url: "/pages/detail/index?id=" + v.id,
+                  url: `/pages/detail/index?id=${v.id}&type=${type}`,
                 });
               }}
             >

+ 12 - 5
src/pages/punchClock/index.less

@@ -67,18 +67,18 @@
       flex-direction: column;
       // flex-flow: row nowrap;
       align-items: center;
-      
-      .item{
 
-        .item_name{
+      .item {
+
+        .item_name {
           width: 80%;
           margin-right: 5%;
           font-size: 32px;
           font-weight: bolder;
-          
+
         }
 
-        .item_bt{
+        .item_bt {
           position: absolute;
           right: 0;
         }
@@ -407,4 +407,11 @@
 
 .at-radio__title {
   font-size: 26px;
+}
+
+.picker {
+  padding: 5px 15px;
+  border-radius: 100px;
+  background: #D7D7D7;
+
 }

+ 9 - 10
src/pages/punchClock/punchClocks.jsx

@@ -39,7 +39,7 @@ class PunchClocks extends Component {
       imgs: [],
       loading: false,
       selector: [{ value: 0, lable: "调研阶段" },],
-      dateSel: "",
+      dateSel: dayjs().format('YYYY-MM-DD'),
       duration: "",
       selectorChecked: {},
       remark: "",
@@ -99,15 +99,11 @@ class PunchClocks extends Component {
       return
     }
     if (!this.state.duration) {
-      Taro.showToast({ title: '请填写工时!', icon: 'none' });
+      Taro.showToast({ title: '请填写研发工时!', icon: 'none' });
       return
     }
-    if (!this.state.remark) {
-      Taro.showToast({ title: '请填写研发记录!', icon: 'none' });
-      return
-    }
-    if (this.state.imgs.length == 0) {
-      Taro.showToast({ title: "请上传附件", icon: "none" });
+    if (!this.state.selectorChecked) {
+      Taro.showToast({ title: '请选择研发阶段!', icon: 'none' });
       return
     }
     Taro.showLoading({ title: '打卡中...' });
@@ -214,7 +210,8 @@ class PunchClocks extends Component {
 
                   <View className='items'>
                     <View className='ititle'>研发工时:
-                      <Input value={this.state.duration} type='digit' className='input' placeholder='请输入' style={{ textAlign: "center", border: "1px solid #d6e4ef" }}
+                      <Input value={this.state.duration} type='digit' className='input' placeholder='请输入'
+                        style={{ textAlign: "center", border: "1px solid #d6e4ef", background: "#D7D7D7", borderRadius: "10px", }}
                         onInput={e => {
                           this.setState({
                             duration: e.detail.value
@@ -244,7 +241,9 @@ class PunchClocks extends Component {
                     <View className='ititles'>研发记录:
                       <Textarea
                         value={this.state.remark}
-                        style='background:#fff;width:66%;min-height:70px;border:1px solid #d6e4ef;padding:10px' autoHeight
+                        placeholder="请填写研发过程记录"
+                        style='background:#D7D7D7;width:66%;min-height:70px;border:1px solid #d6e4ef;padding:10px;border-radius: 10px'
+                        autoHeight
                         onInput={e => {
                           this.setState({
                             remark: e.detail.value

+ 3 - 0
src/pages/reclockin/index.config.js

@@ -0,0 +1,3 @@
+export default {
+  navigationBarTitleText: '重新打卡',
+}

+ 261 - 0
src/pages/reclockin/index.jsx

@@ -0,0 +1,261 @@
+import React, { Component } from 'react'
+import { connect } from 'react-redux'
+import { Input, Textarea, View, Text, Picker, Button } from '@tarojs/components'
+import Taro, { getCurrentInstance } from '@tarojs/taro';
+import dayjs from 'dayjs';
+import Skeleton from 'taro-skeleton'
+import ImagePicker from '../../components/common/imagePicker';
+import { updateRecord, recordDetails } from '../../utils/servers/servers';
+import { resourceAddress } from "../../utils/config";
+import './index.less';
+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 "taro-ui/dist/style/components/radio.scss";
+import "taro-ui/dist/style/components/icon.scss";
+
+
+
+class ReClockin extends Component {
+  $instance = getCurrentInstance();
+
+  constructor(props) {
+    super(props);
+    this.state = {
+      imgs: [],
+      loading: false,
+      selector: [{ value: 0, lable: "调研阶段" },],
+      dateSel: dayjs().format('YYYY-MM-DD'),
+      duration: "",
+      selectorChecked: {},
+      content: "",
+      data: {},
+      isOpened: false,
+    }
+    this.onChange = this.onChange.bind(this);
+    this.updateRecordClockIn = this.updateRecordClockIn.bind(this);
+  }
+
+
+  componentDidMount() {
+    this.getReleasetDails();
+  }
+
+
+
+  componentWillMount() {
+
+  }
+
+  componentDidHide() {
+
+  }
+
+
+  // 项目详情
+  getReleasetDails() {
+    recordDetails({
+      id: this.$instance.router.params.id,
+    }).then((v) => {
+      if (v.code === 200) {
+        if (v.data) {
+          let list = [];
+          for (let i of (v.data.annexUrl || '').split(',')) {
+            if (i) {
+              list.push({ 'url': resourceAddress + i })
+            }
+          }
+          this.setState({
+            data: v.data,
+            pid: v.data.pid,
+            imgs: list,
+            selectorChecked: this.state.selector[v.data.projectStatus],
+            duration: v.data.duration,
+            content: v.data.content,
+            processStatus: v.data.processStatus,
+            recordTime: v.data.recordTime,
+            isOpened: true,
+          })
+        }
+      } else {
+        Taro.showToast({ title: v.msg, icon: "none" });
+      }
+    }).catch((err) => {
+      Taro.showToast({ title: "系统错误,请稍后再试", icon: "none" });
+    });
+  }
+
+  onChange(value, type) {
+    let arr = this.state.imgs.concat([]);
+    if (type === "add") {
+      arr.push(value);
+    } else if (type === "remove") {
+      arr.splice(value, 1);
+    }
+    this.setState({
+      imgs: arr,
+    });
+  }
+
+  updateRecordClockIn() {
+
+    if (!this.state.dateSel) {
+      Taro.showToast({ title: '请选择研发时间!', icon: 'none' });
+      return
+    }
+    if (!this.state.duration) {
+      Taro.showToast({ title: '请填写工时!', icon: 'none' });
+      return
+    }
+    if (!this.state.content) {
+      Taro.showToast({ title: '请填写研发记录!', icon: 'none' });
+      return
+    }
+    if (this.state.imgs.length == 0) {
+      Taro.showToast({ title: "请上传附件", icon: "none" });
+      return
+    }
+    Taro.showLoading({ title: '打卡中...' });
+    updateRecord({
+      id: this.$instance.router.params.id,
+      pid: this.state.data.id,
+      projectStatus: this.state.selectorChecked.value,
+      duration: this.state.duration,
+      content: this.state.content,
+      annexUrl: this.state.imgs.join(','),
+      processStatus: 1,
+      recordTime: this.state.dateSel,
+    }).then(v => {
+      Taro.hideLoading()
+      if (v.code === 200) {
+        Taro.showToast({ title: '打卡成功', icon: 'none' });
+      } else {
+        Taro.showToast({ title: v.msg, icon: 'none' })
+      }
+    }).catch(() => {
+      Taro.hideLoading()
+      Taro.showToast({
+        title: '系统错误,请稍后再试',
+        icon: 'none'
+      })
+    })
+  }
+
+
+  render() {
+    const { data } = this.state;
+    return (
+      <View className='punchClock'>
+        <View className='header'>
+          <Skeleton
+            title
+            avatar
+            row={2}
+            animateName='elastic'
+            avatarShape='square'
+            loading={this.state.loading}
+          >
+            <View className='headerContent'>
+              <View className='item' style={{ width: "100%", display: "flex", flexDirection: "row", JustifyContent: "space-between" }}>
+                <View className="item_name">{data.name}</View>
+                {/* <AtButton type="primary" size="small"
+                      onClick={() => {
+                        Taro.switchTab({
+                          url: "/pages/project/index",
+                        });
+                      }}>切换</AtButton> */}
+              </View>
+
+              <View className='item'>
+                <View className='ititle'>研发时间:
+                  <Picker mode='date'
+                    onChange={e => {
+                      console.log("===", e.detail.value)
+                      this.setState({
+                        dateSel: e.detail.value
+                      })
+                    }}>
+                    <View className='picker'>
+                      {!!this.state.dateSel ? this.state.dateSel : "请选择"}
+                    </View>
+                  </Picker>
+                </View>
+              </View>
+
+              <View className='items'>
+                <View className='ititle'>研发工时:
+                  <Input value={this.state.duration} type='digit' className='input' placeholder='请输入' style={{ textAlign: "center", border: "1px solid #d6e4ef" }}
+                    onInput={e => {
+                      this.setState({
+                        duration: e.detail.value
+                      })
+                    }}
+                  />小时&nbsp;
+                  <Text style={{ color: "red", fontSize: "10px" }}>注:工时可含1个小数点</Text>
+                </View>
+              </View>
+
+              <View className='item'>
+                <View className='ititle'>研发阶段:
+                  <Picker mode='selector' range={this.state.selector} rangeKey="lable"
+                    onChange={e => {
+                      this.setState({
+                        selectorChecked: this.state.selector[e.detail.value]
+                      })
+                    }}>
+                    <View className='picker'>
+                      {!!this.state.selectorChecked ? this.state.selectorChecked.lable : "请选择"}
+                    </View>
+                  </Picker>
+                </View>
+              </View>
+
+              <View className='items'>
+                <View className='ititles'>研发记录:
+                  <Textarea
+                    value={this.state.content}
+                    style='background:#fff;width:66%;min-height:70px;border:1px solid #d6e4ef;padding:10px' autoHeight
+                    onInput={e => {
+                      this.setState({
+                        content: e.detail.value
+                      })
+                    }}
+                  />
+                </View>
+              </View>
+              <View className='items'>
+                <View className='ititles'>上传附件:</View>
+                {this.state.isOpened > 0 &&
+                  <ImagePicker
+                    showAddBtn
+                    files={this.state.imgs}
+                    ref={(ref) => (this.imagePickerRef = ref)}
+                    url="/api/project/upload"
+                    onChange={this.onChange}
+                  />}
+                <View>
+                  <Text className='text'>注:包括研发日志、实验报告、实验记录、检测报告、会议纪要、会议照片等</Text>
+                </View>
+              </View>
+
+              <View className='content'>
+                <View className='punchClockContent'
+                  onClick={this.updateRecordClockIn}
+                  style={{
+                    boxShadow: '1px 1px 15px 1px #acb8ad',
+                    background: '#009DD9',
+                  }}>
+                  <View className='punchClockTitle'>重新打卡</View>
+                </View>
+              </View>
+            </View>
+
+          </Skeleton>
+        </View>
+
+      </View>
+    )
+  }
+}
+
+export default ReClockin

+ 406 - 0
src/pages/reclockin/index.less

@@ -0,0 +1,406 @@
+.punchClock {
+  position: relative;
+  background: #F5F5F5;
+  min-height: calc(100vh - 50px);
+  padding: 25px;
+
+  .item {
+    width: 100%;
+    font-size: 28px;
+    margin-bottom: 15px;
+    display: flex;
+    flex-direction: row;
+    align-items: center;
+    justify-content: space-between;
+
+    .ititle {
+      display: flex;
+      flex-direction: row;
+      align-items: center;
+
+    }
+
+  }
+
+  .items {
+    width: 100%;
+    font-size: 28px;
+    margin-bottom: 15px;
+
+    .ititle {
+      display: flex;
+      flex-direction: row;
+      align-items: center;
+
+      .input {
+        width: 140px;
+      }
+
+    }
+
+    .ititles {
+      display: flex;
+      flex-direction: row;
+
+    }
+
+    .text {
+      font-size: 20px;
+      color: red;
+    }
+
+  }
+
+
+  .header {
+    background: #FFFFFF;
+    padding: 30px;
+    border-radius: 30px;
+    margin-bottom: 20px;
+
+    .skeleton {
+      padding: 0;
+    }
+
+    .headerContent {
+      display: flex;
+      flex-direction: column;
+      // flex-flow: row nowrap;
+      align-items: center;
+      
+      .item{
+
+        .item_name{
+          width: 80%;
+          margin-right: 5%;
+          font-size: 32px;
+          font-weight: bolder;
+          
+        }
+
+        .item_bt{
+          position: absolute;
+          right: 0;
+        }
+
+      }
+    }
+
+    .userAvatarUrl {
+      width: 100px;
+      height: 100px;
+      border-radius: 20px;
+      overflow: hidden;
+    }
+
+    .infor {
+      padding-left: 15px;
+
+      .name {
+        font-size: 28px;
+        padding-bottom: 15px;
+      }
+
+      .address {
+        font-size: 25px;
+        color: #8e8d8d;
+        display: flex;
+        align-items: flex-start;
+
+        .nickname {
+          width: 270px;
+          color: #4564DC;
+        }
+      }
+
+      .types {
+        font-size: 28px;
+        margin-top: 10px;
+        font-weight: bold;
+      }
+    }
+
+    .state {
+      margin-left: auto;
+      font-size: 25px;
+      align-self: flex-start;
+
+    }
+
+    .switchContent {
+      display: flex;
+      align-items: center;
+      align-content: center;
+      border-radius: 30px;
+      border: 1px #999999 solid;
+      padding: 11px 10px;
+      margin-top: 28px;
+
+      .switchTitle {
+        font-size: 18px;
+        color: #999999;
+        padding-right: 10px;
+      }
+
+      .switchItem {
+        width: 25px;
+        height: 25px;
+      }
+    }
+  }
+
+  .content {
+    background: #FFFFFF;
+    padding: 30px;
+    border-radius: 30px;
+    margin: 0 auto;
+    display: flex;
+    flex-flow: column nowrap;
+    align-items: center;
+    position: relative;
+
+    .enterprise {
+      width: 94%;
+      background: #eae8e8;
+      margin: 0 30px;
+      padding: 20px;
+      border-radius: 20px;
+
+      .entit {
+        font-size: 30px;
+        margin-bottom: 8px;
+
+      }
+
+      .userlist {
+        display: flex;
+        flex-direction: row;
+        justify-content: space-between;
+
+        .username {
+          font-size: 26px;
+          line-height: 38px;
+          color: #4564DC;
+          max-width: 70%;
+
+        }
+
+        .switch {
+          display: flex;
+          align-items: center;
+          justify-content: center;
+          border-radius: 30px;
+          border: 1px solid #999999;
+          padding: 11px 10px;
+          height: 24px;
+
+          .stxt {
+            font-size: 18px;
+            color: #999999;
+            padding-right: 10px;
+          }
+
+          .sicon {
+            width: 25px;
+            height: 25px;
+          }
+
+        }
+
+      }
+
+    }
+
+
+    .history {
+      display: flex;
+      flex-flow: row nowrap;
+      justify-content: space-between;
+      align-items: center;
+      font-size: 30px;
+      width: 100%;
+    }
+
+    .noData {
+      display: flex;
+      flex-flow: column nowrap;
+      align-items: center;
+      justify-content: center;
+      width: 100%;
+      margin-top: -20px;
+      padding-bottom: 225px;
+
+      .tipsNoData {
+        font-size: 28px;
+        color: #969696;
+        padding-bottom: 20px;
+      }
+
+      .goOut {
+        font-size: 28px;
+        color: #007aff;
+      }
+    }
+
+    .timeContent {
+      width: 100%;
+      padding-top: 20px;
+      display: flex;
+      flex-flow: row nowrap;
+      justify-content: space-between;
+      padding-bottom: 30px;
+
+      .timeItem {
+        background: #eae8e8;
+        padding: 20px;
+        border-radius: 20px;
+
+        .timeTitle {
+          font-size: 30px;
+          padding-bottom: 8px;
+        }
+
+        .timeValue {
+          font-size: 27px;
+          color: #767272;
+        }
+      }
+    }
+
+    .map {
+      position: relative;
+      height: 600px;
+      width: 100%;
+      border-radius: 20px;
+      overflow: hidden;
+
+      #map {
+        height: 600px;
+        width: 100%
+      }
+    }
+
+    .tips {
+      color: #999999;
+      font-size: 18px;
+      padding-top: 10px;
+      align-self: flex-start;
+    }
+
+    .photographUnusual {
+      width: 100px;
+      height: 100px;
+      box-shadow: 1px 1px 15px 1px red;
+      border-radius: 50px;
+      display: flex;
+      align-items: center;
+      justify-content: center;
+      font-size: 20px;
+      color: #FFFFFF;
+      position: absolute;
+      right: 30px;
+      top: 300px;
+
+    }
+
+    .punchClockContent {
+      width: 250px;
+      height: 250px;
+      border-radius: 250px;
+      margin-top: 45px;
+      display: flex;
+      flex-flow: column nowrap;
+      justify-content: center;
+      align-items: center;
+      margin-bottom: 20px;
+
+      .punchClockTitle {
+        color: white;
+        font-size: 35px;
+        padding-bottom: 8px;
+      }
+
+      .punchClockTime {
+        color: #e8e6e6;
+        font-size: 25px;
+        padding-bottom: 8px;
+      }
+
+      .refreshClock {
+        color: #f5f6f8;
+        font-size: 25px;
+      }
+
+      .refresh {
+        position: absolute;
+        right: 60px;
+      }
+
+    }
+
+    .switchposition {
+      margin-bottom: 50px;
+      font-size: 30px;
+
+      .stxt {
+        color: #4395ff;
+      }
+
+    }
+
+    .photographContent {
+      display: flex;
+      flex-flow: row nowrap;
+      align-items: center;
+      justify-content: space-between;
+      width: 100%;
+      padding-left: 20px;
+      padding-right: 20px;
+      padding-bottom: 25px;
+
+      .photographTitle {
+        font-size: 30px;
+
+        .tips {
+          font-size: 18px;
+          color: #999999;
+        }
+      }
+
+      .photograph {}
+    }
+  }
+
+  .locationContent {
+    position: absolute;
+    display: flex;
+    flex-flow: column nowrap;
+    padding: 35px;
+    z-index: 999;
+
+    .location {
+      display: inline-block;
+      padding: 15px 15px 10px 15px;
+      background: #FFFFFF;
+      border-radius: 150px;
+      margin-bottom: 30px;
+
+      .locationIcon {
+        width: 50px;
+        height: 50px;
+      }
+    }
+
+    .punchRange {
+      display: inline-block;
+      padding: 15px 15px 10px 15px;
+      background: #FFFFFF;
+      border-radius: 150px;
+
+      .punchRangeIcon {
+        width: 50px;
+        height: 50px;
+      }
+    }
+  }
+}

+ 9 - 0
src/utils/servers/servers.js

@@ -77,3 +77,12 @@ export const examineRecord = (postData = {}) => {
   return HTTPREQUEST.post('/api/project/examineRecord', postData)
 }
 
+// 打卡审核日志
+export const listRecordLog = (postData = {}) => {
+  return HTTPREQUEST.get('/api/project/listRecordLog', postData)
+}
+
+// 修改研发打卡
+export const updateRecord = (postData = {}) => {
+  return HTTPREQUEST.post('/api/project/updateRecord', postData)
+}

+ 25 - 40
src/utils/tools/config.js

@@ -1,62 +1,47 @@
 //详情申请状态
 export const clockState = [
   {
-    title:'驳回',
-    id:0,
-    color:'#f31212'
+    title: '驳回',
+    id: 0,
+    color: '#f31212'
   },
   {
-    title:'审核中',
-    id:1,
-    color:'#1d4fea'
+    title: '审核中',
+    id: 1,
+    color: '#1d4fea'
   },
   {
-    title:'通过',
-    id:2,
-    color:'#34de38'
+    title: '通过',
+    id: 2,
+    color: '#34de38'
   },
   {
-    title:'已撤销',
-    id:3,
-    color:'#242424'
+    title: '已撤销',
+    id: 3,
+    color: '#242424'
   },
   {
-    title:'技术驳回',
-    id:4,
-    color:'#f31212'
+    title: '技术驳回',
+    id: 4,
+    color: '#f31212'
   },
 ];
 
-//申请日志状态
+//审核日志状态
 export const clockJournalState = [
   {
-    title:'驳回',
-    id:0,
-    color:'#f31212'
+    title: '审核发起(打卡)',
+    id: 1,
+    color: '#1d4fea'
   },
   {
-    title:'发起',
-    id:1,
-    color:'#1d4fea'
+    title: '通过',
+    id: 2,
+    color: '#34de38'
   },
   {
-    title:'通过',
-    id:2,
-    color:'#34de38'
-  },
-  {
-    title:'已打卡',
-    id:3,
-    color:'#b934de'
-  },
-  {
-    title:'已撤销',
-    id:4,
-    color:'#242424'
-  },
-  {
-    title:'修改',
-    id:5,
-    color:'#1E90FF'
+    title: '驳回',
+    id: 3,
+    color: '#f31212'
   },
 ];

+ 10 - 4
src/utils/tools/index.js

@@ -2,8 +2,8 @@ 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);
+export const getClockState = (id) => {
+  let arr = clockJournalState.filter(v => v.id === id);
   if (arr.length > 0) {
     return arr[0];
   } else {
@@ -13,8 +13,14 @@ export const getClockState = (id, journal = false) => {
 
 //获取用户工作时间区间
 export const getUserWordTimes = () => {
-  let userInfor = Taro.getStorageSync('userInfor');
-  return userInfor.workTimeInfor;
+  // let userInfor = Taro.getStorageSync('userInfor');
+  let info = {
+    start: "8:30",
+    restStart: "12:00",
+    restEnd: "13:30",
+    end: "17:30",
+  }
+  return info;
 }
 
 //获取当天公出小时数