dev01 vor 1 Jahr
Ursprung
Commit
e2cdb15cbe

+ 11 - 12
src/app.config.js

@@ -1,28 +1,27 @@
 export default {
   pages: [
-    'pages/project/index',//研发项目
-    'pages/punchClock/index',//打卡
-    // 'pages/egressDetails/index',//公出详情
-    'pages/login/index',//登录
-    // 'pages/applyDepart/index',//申请公出
-    'pages/mybusiness/index',//审核
+    'pages/punchClock/index', // 打卡
+    'pages/project/index', // 研发项目
+    'pages/login/index', // 登录
+    'pages/mybusiness/index', // 审核
+    'pages/detail/index',
     // 'pages/projectAdd/index',// 新增项目
   ],
   tabBar: {
     list: [
       {
-        iconPath: './image/examineUnSelect.png',
-        selectedIconPath: './image/examineSelect.png',
-        pagePath: 'pages/project/index',
-        text: '研发项目'
-      },
-      {
         iconPath: './image/punchClockUnSelect.png',
         selectedIconPath: './image/punchClockSelect.png',
         pagePath: 'pages/punchClock/index',
         text: '研发打卡'
       },
       {
+        iconPath: './image/examineUnSelect.png',
+        selectedIconPath: './image/examineSelect.png',
+        pagePath: 'pages/project/index',
+        text: '研发项目'
+      },
+      {
         iconPath: './image/my.png',
         selectedIconPath: './image/myselect.png',
         pagePath: 'pages/mybusiness/index',

+ 11 - 10
src/app.jsx

@@ -48,16 +48,17 @@ class App extends Component {
   }
 
   componentDidShow() {
-    Taro.eventCenter.on('getStorageSync', () => {
-      let token = Taro.getStorageSync('token');
-      if (token) {
-        this.getStorageSync();
-      }
-    })
-    let token = Taro.getStorageSync('token');
-    if (token) {
-      this.getStorageSync();
-    }
+    // Taro.eventCenter.on('getStorageSync', () => {
+    //   let token = Taro.getStorageSync('token');
+    //   if (token) {
+    //     this.getStorageSync();
+    //   }
+    // })
+    // let token = Taro.getStorageSync('token');
+    // if (token) {
+    //   this.getStorageSync();
+    // }
+    
     // this.getWxConfig();
   }
 

+ 44 - 44
src/components/common/imagePicker/index.jsx

@@ -1,7 +1,7 @@
-import React,{Component} from "react";
+import React, { Component } from "react";
 import Taro from '@tarojs/taro';
-import {Text, View} from "@tarojs/components";
-import {AtImagePicker,AtToast } from "taro-ui";
+import { Text, View } from "@tarojs/components";
+import { AtImagePicker, AtToast } from "taro-ui";
 
 import './index.less';
 
@@ -12,58 +12,58 @@ import 'taro-ui/dist/style/components/icon.scss';
 
 import getBaseUrl from "../../../utils/servers/baseUrl";
 
-class ImagePicker extends Component{
+class ImagePicker extends Component {
   constructor(props) {
     super(props);
-    this.state={
+    this.state = {
       files: props.files || [],
-      speedProgress:0,
-      loading:false
+      speedProgress: 0,
+      loading: false
     }
     this.onImgChange = this.onImgChange.bind(this);
     this.onFail = this.onFail.bind(this);
     this.onImageClick = this.onImageClick.bind(this);
   }
 
-  onImgChange(files, operationType, index, type){
+  onImgChange(files, operationType, index, type) {
     const BASE_URL = getBaseUrl(this.props.url);
     let token = Taro.getStorageSync('token');
     let _this = this;
-    if(operationType === 'remove'){
+    if (operationType === 'remove') {
       let filesArr = files.concat([]);
-      this.props.onChange(index,'remove');
+      this.props.onChange(index, 'remove');
       this.setState({
-        files:filesArr
+        files: filesArr
       })
-    }else{
+    } else {
       let fileArr = this.state.files.concat([]);
-      let arr = type === 'camera' ? files : files.splice(fileArr.length,files.length - fileArr.length)
+      let arr = type === 'camera' ? files : files.splice(fileArr.length, files.length - fileArr.length)
       this.setState({
-        loading:true
+        loading: true
       })
-      for(let i = 0;i<arr.length;i++){
+      for (let i = 0; i < arr.length; i++) {
         const uploadTask = Taro.uploadFile({
           url: BASE_URL + this.props.url, //仅为示例,非真实的接口地址
           filePath: arr[i].url,
           name: 'file',
           header: {
-            'Accept':'application/json, text/javascript,',
+            'Accept': 'application/json, text/javascript,',
             'content-type': 'application/x-www-form-urlencoded; charset=UTF-8',
-            'token': token
+            'Authorization': token
           },
-          success: function (res){
+          success: function (res) {
             let dataJson = JSON.parse(res.data)
-            if(dataJson.error.length === 0){
-              _this.props.onChange(dataJson.data,'add');
+            if (dataJson.code == 200) {
+              _this.props.onChange(dataJson.imgUrl, 'add');
               _this.state.files.push(arr[i]);
               _this.setState({
-                files:_this.state.files
+                files: _this.state.files
               })
-            }else{
-              Taro.showToast({title:dataJson.error[0].message,icon:'none'})
-              if(dataJson.error[0].field === '403'){
+            } else {
+              Taro.showToast({ title: dataJson.msg, icon: 'none' })
+              if (dataJson.code === '403') {
                 _this.setState({
-                  loading:false
+                  loading: false
                 })
                 Taro.reLaunch({
                   url: '/pages/login/index'
@@ -71,30 +71,30 @@ class ImagePicker extends Component{
               }
             }
           },
-          fail: function (err){
+          fail: function (err) {
             //console.log(err);
-            Taro.showToast({title:'系统错误,请稍后重试',icon:'none'});
+            Taro.showToast({ title: '系统错误,请稍后重试', icon: 'none' });
           },
-          complete: function(v){
+          complete: function (v) {
             //console.log(v)
           }
         })
         uploadTask.progress((res) => {
-          if(res.progress === 100){
-            let num = this.state.speedProgress+1;
-            let speed = num/arr.length*100;
+          if (res.progress === 100) {
+            let num = this.state.speedProgress + 1;
+            let speed = num / arr.length * 100;
             //console.log(num,arr.length)
             //console.log(num/arr.length)
             this.setState({
-              speedProgress:num,
-            },()=>{
-              if(speed === 100){
-                setTimeout(()=>{
+              speedProgress: num,
+            }, () => {
+              if (speed === 100) {
+                setTimeout(() => {
                   _this.setState({
-                    speedProgress:0,
-                    loading:false
+                    speedProgress: 0,
+                    loading: false
                   })
-                },1200)
+                }, 1200)
               }
             })
           }
@@ -105,12 +105,12 @@ class ImagePicker extends Component{
       }
     }
   }
-  onFail(){
+  onFail() {
 
   }
-  onImageClick(index){
+  onImageClick(index) {
     let arr = [];
-    for(let i of this.state.files){
+    for (let i of this.state.files) {
       arr.push(i.url)
     }
     Taro.previewImage({
@@ -118,9 +118,9 @@ class ImagePicker extends Component{
       urls: arr // 需要预览的图片http链接列表
     })
   }
-  clear(){
+  clear() {
     this.setState({
-      files:[]
+      files: []
     })
   }
 
@@ -136,7 +136,7 @@ class ImagePicker extends Component{
           onFail={this.onFail}
           onImageClick={this.onImageClick}
         />
-        <AtToast isOpened={this.state.loading} text="图片上传中" status='loading'/>
+        <AtToast isOpened={this.state.loading} text="图片上传中" status='loading' />
       </>
     )
   }

+ 4 - 0
src/pages/detail/index.config.js

@@ -0,0 +1,4 @@
+export default {
+  navigationBarTitleText: '详情',
+
+}

+ 218 - 0
src/pages/detail/index.jsx

@@ -0,0 +1,218 @@
+import React, { Component } from "react";
+import Taro, { getCurrentInstance } from "@tarojs/taro";
+import { View, Image, Button } from "@tarojs/components";
+import {
+  AtButton,
+  AtCalendar,
+  AtIcon,
+  AtTextarea,
+  AtModal,
+  AtModalContent,
+  AtModalAction,
+} from "taro-ui";
+import Skeleton from "taro-skeleton";
+import {
+  recordDetails,
+  examineRecord,
+} from "../../utils/servers/servers";
+import InquiryModal from "../../components/common/inquiryModal";
+import "../mybusiness/index";
+
+class Detail extends Component {
+  $instance = getCurrentInstance();
+
+  constructor(props) {
+    super(props);
+    this.state = {
+      opinion: "",
+      data: {},
+    }
+    this.getReleasetDails = this.getReleasetDails.bind(this);
+  }
+
+  componentDidMount() {
+    this.getReleasetDails();
+  }
+
+  // 项目详情
+  getReleasetDails() {
+    recordDetails({
+      id: this.$instance.router.params.id,
+    }).then((v) => {
+      if (v.data.code === 200) {
+        if (v.data.data) {
+          this.setState({
+            data: v.data.data
+          })
+        } else {
+          setTimeout(() => {
+            Taro.switchTab({
+              url: "/pages/mybusiness/index",
+            });
+          }, 1800);
+          Taro.showToast({
+            title: "您没有权限查看此公出详情",
+            icon: "none",
+            duration: 1800,
+          });
+        }
+      } else {
+        Taro.showToast({ title: v.data.msg, icon: "none" });
+      }
+    })
+      .catch((err) => {
+        Taro.showToast({ title: "系统错误,请稍后再试", icon: "none" });
+        // console.log(err);
+      });
+  }
+
+  // 同意/驳回
+  agree(sta) {
+    if (!this.state.opinion) {
+      Taro.showToast({ title: "请填写审批意见", icon: "none" });
+      return;
+    }
+    examineRecord({
+      id: this.$instance.router.params.id,
+      processStatus: sta,
+      content: this.state.opinion,
+    })
+      .then((v) => {
+        if (v.data.code === 200) {
+          Taro.showToast({
+            title: "操作成功",
+            icon: "none",
+          });
+          this.getReleasetDails();
+        } else {
+          Taro.showToast({ title: v.data.msg, icon: "none" });
+        }
+      })
+      .catch((err) => {
+        Taro.showToast({ title: "系统错误,请稍后再试", icon: "none" });
+        // console.log(err);
+      });
+  }
+
+
+  render() {
+    const { data } = this.state
+    return (
+      <View className="indexPage">
+        {Object.keys(data).length === 0 ?
+          <Skeleton
+            title
+            row={3}
+            animateName="elastic"
+            avatarShape="square"
+            loading
+          /> :
+          <View className="list">
+            <View
+              className="item"
+            >
+              <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>
+                {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.setState({
+                          isInquiryOpened: true,
+                          inquiryTitle: "提醒",
+                          inquiryContent: "您确定要同意此申请吗?",
+                          inquiryFn: () => {
+                            this.agree(2);
+                          },
+                        });
+                      }}
+                    >
+                      同意
+                    </AtButton>
+                  </View>
+                </View>}
+              </View>
+            </View>
+          </View>}
+
+        <InquiryModal
+          isOpened={this.state.isInquiryOpened}
+          title={this.state.inquiryTitle}
+          content={this.state.inquiryContent}
+          onClose={() => {
+            this.setState({
+              isInquiryOpened: false,
+              inquiryTitle: "",
+              inquiryContent: "",
+              isNo: true,
+            });
+          }}
+          onDetermine={() => {
+            this.state.inquiryFn();
+            this.setState({
+              isInquiryOpened: false,
+              inquiryTitle: "",
+              inquiryContent: "",
+              isNo: true,
+              inquiryFn: () => { },
+            });
+          }}
+        />
+      </View>
+    );
+  }
+}
+
+export default Detail;

+ 2 - 9
src/pages/login/index.jsx

@@ -68,13 +68,8 @@ class Login extends Component {
     Taro.getSetting({
       withSubscriptions: true,
       success: (res) => {
-
-        _this.login();
-
-        return
-
         if (res.subscriptionsSetting.mainSwitch) {
-          if (res.subscriptionsSetting['j7WH3EwQnxGxwuV2HwmJhryxySPE8vOiV5cVOpp-42I'] === "reject" || res.subscriptionsSetting['pWia-KJPFwDM8ReDu_BOa9FJn31VFc81bp3yxfBmIRI'] === "reject" || res.subscriptionsSetting['vo28uzT2sLS-9ioroNyZbMSvu0mMvf6le2pDZVN891U'] === "reject") {
+          if (res.subscriptionsSetting['2L9AJWl2yNfgd83Fw_f_E6HiaEvPf109iw_xFtI8PXI'] === "reject" ) {
             this.setState({
               isOpened: true,
               loading: false,
@@ -84,9 +79,7 @@ class Login extends Component {
           }
           Taro.requestSubscribeMessage({ //获取下发权限
             tmplIds: [
-              'pWia-KJPFwDM8ReDu_BOa9FJn31VFc81bp3yxfBmIRI',
-              'j7WH3EwQnxGxwuV2HwmJhryxySPE8vOiV5cVOpp-42I',
-              'vo28uzT2sLS-9ioroNyZbMSvu0mMvf6le2pDZVN891U'
+              '2L9AJWl2yNfgd83Fw_f_E6HiaEvPf109iw_xFtI8PXI',
             ], //此处写在后台获取的模板ID,可以写多个模板ID,看自己的需求
             success: function (s) {
               _this.setState({

+ 7 - 9
src/pages/mybusiness/index.jsx

@@ -1,7 +1,7 @@
 import React, { Component } from 'react';
 import Taro from '@tarojs/taro';
 import { View, Picker, ScrollView, Button } from '@tarojs/components'
-import { getProjectList, techReject, getReleasetDails } from '../../utils/servers/servers';
+import { getProjectList, listRecord } from '../../utils/servers/servers';
 import dayjs from 'dayjs';
 import {
   AtSearchBar,
@@ -24,7 +24,7 @@ import "taro-ui/dist/style/components/list.scss";
 import "taro-ui/dist/style/components/icon.scss";
 import "taro-ui/dist/style/components/modal.scss";
 
-import MyList from '../project/myList';
+import MyList from './myList';
 import InquiryModal from "../../components/common/inquiryModal";
 import { resourceAddress } from "../../utils/config";
 
@@ -34,11 +34,10 @@ class Examine extends Component {
     super(props);
     this.state = {
       typeList: [
-        { title: '全部', type: 1 },
+        { title: '全部', type: 0 },
         { title: '已审核', type: 2 },
-        { title: '未审核', type: 3 }],
+        { title: '未审核', type: 1 }],
       current: 0,
-
       list: [],
       pageNum: 1,
       listState: 'LOADING',
@@ -85,18 +84,17 @@ class Examine extends Component {
       listState: 'LOADING'
     })
     let data = {
+      processStatus: this.state.current != 0 ? this.state.current : "",
       pageNum: pageNum,
       pageSize: 10,
-      roleType: 0,
-      name: this.state.searchValue || undefined,
-
+      roleType: 1,
     }
     for (let i in data) {
       if (!data[i] && data[i] != 0) {
         delete data[i]
       }
     }
-    let msg = await getProjectList(data);
+    let msg = await listRecord(data);
     if (msg.data.code === 200) {
       if (msg.data.total === 0) {
         this.setState({

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

@@ -269,14 +269,13 @@
             position: absolute;
             border-bottom-left-radius: 100px;
             border-top-left-radius: 100px;
-            padding: 20px;
+            padding: 20px 20px;
             background: #f1662f;
             color: white;
             display: flex;
             justify-content: center;
             align-items: center;
             right: -31px;
-            top: -10px;
           }
         }
 
@@ -322,4 +321,11 @@
 
 .at-modal__container {
   width: 718px;
+}
+
+.operation{
+  display: flex;
+  flex-flow: row nowrap;
+  margin: 30px 0;
+
 }

+ 88 - 0
src/pages/mybusiness/myList.jsx

@@ -0,0 +1,88 @@
+import React, { Component } from "react";
+import Taro from "@tarojs/taro";
+import { View, Image, Button } from "@tarojs/components";
+import Skeleton from "taro-skeleton";
+import { getClockState } from "../../utils/tools";
+import ListBottomStart from "../../components/common/listBottomStart";
+import RevokeWhite from "../../image/revokeWhite.png";
+import "./index.less";
+
+class MyList extends Component {
+  constructor(props) {
+    super(props);
+  }
+
+  render() {
+    const { title } = this.props
+    return (
+      <View className="indexPage">
+        <View className="list">
+          {
+            this.props.list.length === 0 && this.props.listState === "LOADING" &&
+            this.props.typelist?.map((v) => (
+              <Skeleton key={v} title row={3} avatarShape="square" loading />
+            ))
+          }
+          {this.props.list.length > 0 && this.props.list?.map((v, k) => (
+            <View
+              key={k}
+              className="item"
+              onClick={(e) => {
+                e.stopPropagation();
+                Taro.navigateTo({
+                  url: "/pages/detail/index?id=" + v.id,
+                });
+              }}
+            >
+              <View className="infor">
+                <View className="title">
+                  <View className="aname">
+                    {v.projectName}
+                  </View>
+                </View>
+                <View className="userName">
+                  <View className="uNtext">
+                    负责人:{v.adminName}
+                  </View>
+                </View>
+                <View className="userName">
+                  <View className="uNtext">
+                    研发人员:{v.name}
+                  </View>
+                </View>
+                <View className="userName">
+                  <View className="uNtext">
+                    累积工时:{v.duration}
+                  </View>
+                </View>
+                {
+                  v.processStatus == 1 &&
+                  <View className="releaseStarts">
+                    <View
+                      className="punchClock"
+                      onClick={(e) => {
+                        e.stopPropagation();
+                      }}
+                    >
+                      去审核
+                    </View>
+                  </View>
+                }
+                {v.processStatus == 2 && <View style={{ textAlign: "right" }}>已审核</View>}
+                {v.processStatus == 3 && <View style={{ textAlign: "right", color: "red" }}>已驳回</View>}
+              </View>
+            </View>
+          ))}
+          <ListBottomStart
+            state={this.props.listState}
+            reload={() => {
+              this.props.onRefresh;
+            }}
+          />
+        </View>
+      </View>
+    );
+  }
+}
+
+export default MyList;

+ 2 - 6
src/pages/project/index.jsx

@@ -7,22 +7,18 @@ 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/search-bar.scss";
 import 'taro-ui/dist/style/components/tabs.scss';
 import "taro-ui/dist/style/components/flex.scss";
 import "taro-ui/dist/style/components/action-sheet.scss";
 import "taro-ui/dist/style/components/icon.scss";
 import "taro-ui/dist/style/components/list.scss";
-import "taro-ui/dist/style/components/icon.scss";
+import "taro-ui/dist/style/components/button.scss";
 
 import MyList from './myList';
 

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

@@ -27,11 +27,6 @@ class MyList extends Component {
             <View
               key={k}
               className="item"
-              onClick={() => {
-                // Taro.navigateTo({
-                //   url: "/pages/egressDetails/index?id=" + v.id + "&index=" + k + "&status=" + title,
-                // });
-              }}
             >
               <View className="infor">
                 <View className="title">
@@ -59,10 +54,10 @@ class MyList extends Component {
                     className="punchClock"
                     onClick={(e) => {
                       e.stopPropagation();
-                      // Taro.eventCenter.trigger("GoPunchIn", v);
-                      // Taro.switchTab({
-                      //   url: "/pages/punchClock/index",
-                      // });
+                      Taro.eventCenter.trigger("GoPunchIn", v);
+                      Taro.switchTab({
+                        url: "/pages/punchClock/index",
+                      });
                     }}
                   >
                     去打卡

+ 181 - 99
src/pages/punchClock/punchClocks.jsx

@@ -10,11 +10,8 @@ import Skeleton from 'taro-skeleton'
 import HistoricalClock from '../../components/historicalClock';
 import ImagePicker from '../../components/common/imagePicker';
 import { add, minus, asyncAdd } from '../../actions/counter'
-import { getPublicReleaseList, } from '../../utils/servers/servers';
-import './index.less'
-import switchIocn from '../../image/switch.png';
-import Location from '../../image/location.png';
-import PunchRange from '../../image/punchRange.png';
+import { recordAdd, myDuration, } from '../../utils/servers/servers';
+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';
@@ -23,8 +20,6 @@ import "taro-ui/dist/style/components/icon.scss";
 
 import { getClockState, getNewOptions } from "../../utils/tools";
 
-const QQMapWX = require('../../components/common/mapSDK/qqmap-wx-jssdk.min.js');
-
 @connect(({ counter }) => ({
   counter
 }), (dispatch) => ({
@@ -43,71 +38,96 @@ class PunchClocks extends Component {
   constructor(props) {
     super(props);
     this.state = {
+      imgs: [],
       loading: false,
       selector: ['调研阶段',],
       dateSel: "",
+      duration: "",
       selectorChecked: "",
+      remark: "",
+      data: {},
     }
-
+    this.onChange = this.onChange.bind(this);
+    this.publicReleaseClockIn = this.publicReleaseClockIn.bind(this);
   }
 
 
   componentDidMount() {
-    // this.getDtails();
+    this.imagePickerRef && this.imagePickerRef.clear();
+    this.getMyDuration();
   }
 
 
-  getDtails() {
-    this.getData(() => {
-      Taro.startLocationUpdate({
-        success: () => {
-          Taro.onLocationChange((v) => {
-            this.getSpacing(v.latitude, v.longitude)
-          })
-        },
-        fail: (err) => {
-          Taro.getSetting({
-            success: (res) => {
-              if (!res.authSetting['scope.userLocation']) {
-                Taro.authorize({
-                  scope: 'scope.userLocation',
-                  success: () => {
-
-                  },
-                  fail: () => {
-                    this.setState({
-                      isOpened: true
-                    })
-                  }
-                })
-              }
-            }
-          })
-          this.setState({
-            loading: false
-          })
-        }
-      })
-    });
+  getMyDuration() {
+    myDuration().then(v => {
+
+    })
   }
 
   componentWillMount() {
-
+    Taro.eventCenter.on('GoPunchIn', (arg) => {
+      this.setState({
+        data: arg
+      })
+    })
   }
 
   componentDidHide() {
 
   }
 
-  onDateChange = e => {
+  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({
-      dateSel: e.detail.value
-    })
+      imgs: arr,
+    });
   }
 
-  onChange = e => {
-    this.setState({
-      selectorChecked: this.state.selector[e.detail.value]
+  publicReleaseClockIn() {
+
+    if (!this.state.dateSel) {
+      Taro.showToast({ title: '请选择研发时间!', icon: 'none' });
+      return
+    }
+    if (!this.state.duration) {
+      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" });
+      return
+    }
+    Taro.showLoading({ title: '打卡中...' });
+    recordAdd({
+      pid: this.state.data.id,
+      projectStatus: this.state.selectorChecked,
+      duration: this.state.duration,
+      content: this.state.remark,
+      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'
+      })
     })
   }
 
@@ -124,7 +144,7 @@ class PunchClocks extends Component {
   }
 
   render() {
-    const { dtails, data } = this.state;
+    const { data } = this.state;
     return (
       <View className='punchClock'>
         <View className='header'>
@@ -136,63 +156,125 @@ class PunchClocks extends Component {
             avatarShape='square'
             loading={this.state.loading}
           >
-            <View className='headerContent'>
-              <View className='item'>
-                <View>项目:新一代核心系统研发</View>
-                <AtButton type="primary" size="small">切换</AtButton>
-              </View>
-
-              <View className='item'>
-                <View className='ititle'>研发时间:
-                  <Picker mode='date' onChange={this.onDateChange}>
-                    <View className='picker'>
-                      {!!this.state.dateSel ? this.state.dateSel : "请选择"}
+            {
+              !data.id ?
+                <View className='content'>
+                  <View className='punchClockContent'
+                    onClick={this.publicReleaseClockIn}
+                    style={{
+                      boxShadow: '1px 1px 15px 1px #acb8ad',
+                      background: '#828e83',
+                      marginTop: '85px',
+                    }}>
+                    <View className='punchClockTitle'>打卡</View>
+                    <View className='punchClockTime'>{this.state.nowTime}</View>
+                  </View>
+                  <View className='noData'>
+                    <View className='tipsNoData'>
+                      暂无打卡项目
                     </View>
-                  </Picker>
-                </View>
-              </View>
+                    <View className='goOut' onClick={() => {
+                      Taro.switchTab({
+                        url: '/pages/project/index',
+                      })
+                    }}>
+                      点击前往选择项目
+                    </View>
+                  </View>
+                </View> :
+                <View className='headerContent'>
+                  <View className='item'>
+                    <View style={{ fontSize: "15px" }}>{data.name}</View>
+                    <AtButton type="primary" size="small"
+                      onClick={() => {
+                        Taro.switchTab({
+                          url: "/pages/project/index",
+                        });
+                      }}>切换</AtButton>
+                  </View>
 
-              <View className='items'>
-                <View className='ititle'>研发工时:
-                  <Input type='digit' className='input' placeholder='请输入工时' style={{ textAlign: "center" }} />小时&nbsp;
-                  <Text style={{ color: "red" }}>注:工时可含1个小数点</Text>
-                </View>
-              </View>
+                  <View className='item'>
+                    <View className='ititle'>研发时间:
+                      <Picker mode='date'
+                        onChange={e => {
+                          this.setState({
+                            dateSel: e.detail.value
+                          })
+                        }}>
+                        <View className='picker'>
+                          {!!this.state.dateSel ? this.state.dateSel : "请选择"}
+                        </View>
+                      </Picker>
+                    </View>
+                  </View>
 
-              <View className='item'>
-                <View className='ititle'>研发阶段:
-                  <Picker mode='selector' range={this.state.selector} onChange={this.onChange}>
-                    <View className='picker'>
-                      {!!this.state.selectorChecked ? this.state.selectorChecked : "请选择"}
+                  <View className='items'>
+                    <View className='ititle'>研发工时:
+                      <Input value={this.state.duration} type='digit' className='input' placeholder='请输入工时' style={{ textAlign: "center" }}
+                        onInput={e => {
+                          this.setState({
+                            duration: e.detail.value
+                          })
+                        }}
+                      />小时&nbsp;
+                      <Text style={{ color: "red" }}>注:工时可含1个小数点</Text>
                     </View>
-                  </Picker>
-                </View>
-              </View>
+                  </View>
 
-              <View className='items'>
-                <View className='ititles'>研发记录:
-                  <Textarea style='background:#fff;width:66%;min-height:70px;border:1px solid #8e8d8d;padding:10px' autoHeight />
-                </View>
-              </View>
+                  <View className='item'>
+                    <View className='ititle'>研发阶段:
+                      <Picker mode='selector' range={this.state.selector}
+                        onChange={e => {
+                          this.setState({
+                            selectorChecked: this.state.selector[e.detail.value]
+                          })
+                        }}>
+                        <View className='picker'>
+                          {!!this.state.selectorChecked ? this.state.selectorChecked : "请选择"}
+                        </View>
+                      </Picker>
+                    </View>
+                  </View>
 
-              <View className='items'>
-                <View className='ititles'>上传附件:</View>
-                <View>
-                  <Text className='text'>注:包括研发日志、实验报告、实验记录、检测报告、会议纪要、会议照片等</Text>
-                </View>
-              </View>
-
-              <View className='content'>
-                <View className='punchClockContent'
-                  onClick={this.publicReleaseClockIn}
-                  style={{
-                    boxShadow: '1px 1px 15px 1px #acb8ad',
-                    background: '#009DD9',
-                  }}>
-                  <View className='punchClockTitle'>打卡</View>
+                  <View className='items'>
+                    <View className='ititles'>研发记录:
+                      <Textarea
+                        value={this.state.remark}
+                        style='background:#fff;width:66%;min-height:70px;border:1px solid #8e8d8d;padding:10px' autoHeight
+                        onInput={e => {
+                          this.setState({
+                            remark: e.detail.value
+                          })
+                        }}
+                      />
+                    </View>
+                  </View>
+
+                  <View className='items'>
+                    <View className='ititles'>上传附件:</View>
+                    <ImagePicker
+                      showAddBtn
+                      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.publicReleaseClockIn}
+                      style={{
+                        boxShadow: '1px 1px 15px 1px #acb8ad',
+                        background: '#009DD9',
+                      }}>
+                      <View className='punchClockTitle'>打卡</View>
+                    </View>
+                  </View>
                 </View>
-              </View>
-            </View>
+            }
           </Skeleton>
         </View>
 

+ 0 - 1
src/utils/servers/interceptors.js

@@ -8,7 +8,6 @@ const customInterceptor = (chain) => {
 
   return chain.proceed(requestParams).then(res => {
     // console.log(res.statusCode, 'proceed', res)
-    // console.log(res.statusCode, res.data.code, "---", res.data.code === 401)
     // 只要请求成功,不管返回什么状态码,都走这个回调
     if (res.statusCode === HTTP_STATUS.NOT_FOUND) {
       Taro.setStorageSync("token", "");

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

@@ -52,6 +52,30 @@ export const projectAdd = (postData = {}) => {
   return HTTPREQUEST.get('/api/project/add', postData)
 }
 
+// 新增研发日志(打卡)
+export const recordAdd = (postData = {}) => {
+  return HTTPREQUEST.post('/api/project/addRecord', postData)
+}
+
+// 查询打卡剩余时间
+export const myDuration = (postData = {}) => {
+  return HTTPREQUEST.get('/api/project/myDuration', postData)
+}
+
+// 研发日志列表
+export const listRecord = (postData = {}) => {
+  return HTTPREQUEST.get('/api/project/listRecord', postData)
+}
+
+// 研发日志详情
+export const recordDetails = (postData = {}) => {
+  return HTTPREQUEST.get('/api/project/recordDetails', postData)
+}
+
+// 研发日志审核
+export const examineRecord = (postData = {}) => {
+  return HTTPREQUEST.post('/api/project/examineRecord', postData)
+}