Pārlūkot izejas kodu

修改列表刷新

HW 3 gadi atpakaļ
vecāks
revīzija
e834a7f0df

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

@@ -130,7 +130,7 @@ class ImagePicker extends Component{
       <>
         <AtImagePicker
           multiple
-          mode='center'
+          mode='scaleToFill'
           showAddBtn={this.props.showAddBtn}
           files={this.state.files}
           onChange={this.onImgChange}

+ 2 - 0
src/components/common/messageNoticebar/index.less

@@ -13,6 +13,8 @@
     align-items: center;
     position: relative;
     .noticebar{
+      width: 60px;
+      text-align: right;
       position: absolute;
       z-index: 1;
       right: 20px;

+ 7 - 1
src/pages/egressDetails/index.jsx

@@ -122,6 +122,7 @@ class EgressDetails extends Component{
         Taro.eventCenter.trigger('listOperation',{
           type:this.state.dtails.permission,
           index:this.$instance.router.params.index,
+          status:status===0?0:2
         })
 
       }else{
@@ -133,9 +134,13 @@ class EgressDetails extends Component{
   }
 
   getListPublicReleaseLog(){
+    Taro.showLoading({
+      title:'加载中...'
+    })
     getListPublicReleaseLog({
       id:this.$instance.router.params.id
     }).then(v=>{
+      Taro.hideLoading();
       if(v.error.length === 0){
         let arr = [];
         for (let i of v.data){
@@ -144,7 +149,7 @@ class EgressDetails extends Component{
               i.status === 0 ? '驳回' :
                 i.status === 1 ? '审核中' :
                   i.status === 2 ? '通过' : '',
-            content: ['审核员:'+i.aname,i.remarks ? '审核意见:'+i.remarks : null],
+            content: ['审核员:'+i.aname,i.remarks ? '审核意见:'+i.remarks : null,'操作时间:'+i.createTimes],
             color: i.status === 0 ? '#f31212' :
                     i.status === 1 ? '#1d4fea' :
                       i.status === 2 ? '#34de38' : ''
@@ -158,6 +163,7 @@ class EgressDetails extends Component{
         Taro.showToast({title:v.error[0].message,icon:'none'})
       }
     }).catch(err=>{
+      Taro.hideLoading();
       Taro.showToast({title:'系统错误.请稍后重试',icon:'none'})
       console.log(err)
     })

+ 20 - 4
src/pages/examine/index.jsx

@@ -35,7 +35,10 @@ class Examine extends Component {
     Taro.eventCenter.on('listOperation',(data)=>{
       if(data.type === 1 && (!isNaN(parseInt(data.index)))){
         let arr = this.state.examinelist.concat([]);
-        arr.splice(data.index,1);
+        arr[data.index] = {
+          ...arr[data.index],
+          ...data
+        }
         this.setState({
           examinelist:arr
         })
@@ -53,7 +56,7 @@ class Examine extends Component {
   }
 
   async componentDidMount() {
-    await this.getPublicReleaseList();
+    // await this.getPublicReleaseList();
   }
 
   onPullDownRefresh(){
@@ -64,11 +67,20 @@ class Examine extends Component {
     this.getPublicReleaseList(true);
   }
 
+  onTabItemTap(obj){
+    if(obj.index === 1){
+      this.getMyList(1);
+      this.getExamineList(1);
+    }
+  }
+
   async getPublicReleaseList (lv){
     if(this.state.current === 0){
-      await this.getMyList(lv ? this.state.pageNo + 1 : 1)
+      await this.getMyList(lv ? this.state.pageNo + 1 : 1);
+      Taro.stopPullDownRefresh();
     } else if(this.state.current === 1){
-      await this.getExamineList(lv ? this.state.examinePageNo + 1 : 1)
+      await this.getExamineList(lv ? this.state.examinePageNo + 1 : 1);
+      Taro.stopPullDownRefresh();
     }
   }
 
@@ -140,6 +152,10 @@ class Examine extends Component {
             this.setState({
               examineListState: 'NO_MORE_DATA'
             })
+          }else if(pageNo === 1 && (msg.data.list.length || []) < 10){
+            this.setState({
+              examineListState: 'NO_MORE_DATA'
+            })
           }
         })
       }

+ 25 - 3
src/pages/punchClock/index.less

@@ -31,6 +31,11 @@
       .address{
         font-size: 25px;
         color: #8e8d8d;
+        display: flex;
+        align-items: center;
+        .nickname{
+          color: #4564DC;
+        }
       }
     }
     .state{
@@ -38,10 +43,23 @@
       font-size: 25px;
       align-self: flex-start;
     }
-    .switchItem{
-      width: 38px;
-      height: 38px;
+    .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{
@@ -139,6 +157,10 @@
       padding-bottom: 25px;
       .photographTitle{
         font-size: 30px;
+        .tips{
+          font-size: 18px;
+          color: #999999;
+        }
       }
       .photograph{
 

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

@@ -1,6 +1,6 @@
 import React, { Component } from 'react'
 import { connect } from 'react-redux'
-import {Map, OpenData, View, Image} from '@tarojs/components'
+import {Map, OpenData, View, Image, Text} from '@tarojs/components'
 import Taro from '@tarojs/taro';
 import {AtIcon, AtModal, AtNoticebar} from "taro-ui";
 import dayjs from 'dayjs';
@@ -167,6 +167,10 @@ class PunchClocks extends Component {
       Taro.showToast({title:'定位错误,请联系管理员',icon:'none'})
       return ;
     }
+    if(dayjs().isBefore(this.state.dtails.releaseStarts) || dayjs().isAfter(this.state.dtails.releaseEnds)){
+      Taro.showToast({title:'还没到打卡时间,无法打卡',icon:'none'})
+      return ;
+    }
     if(!(this.state.distance <=100 && this.state.distance >= 0)){
       Taro.showToast({title:'当前位置未处于可打卡范围,无法打卡',icon:'none'})
       return ;
@@ -357,11 +361,13 @@ class PunchClocks extends Component {
                 </View>
                 <View className='address'>
                   公出企业:
-                  {
-                    Object.keys(this.state.dtails).length <= 0 ?
-                      '无':
-                      dtails.nickname
-                  }
+                  <View className='nickname'>
+                    {
+                      Object.keys(this.state.dtails).length <= 0 ?
+                        '无':
+                        dtails.nickname
+                    }
+                  </View>
                 </View>
               </View>
               {
@@ -380,18 +386,21 @@ class PunchClocks extends Component {
                       dtails.status === 1 ? '#1d4fea' :
                         dtails.status === 2 ? '#767272' : ''
                   }}>
-                    <View>
+                    <View style={{textAlign:'right'}}>
                       {
                         dtails.status === 0 ? '驳回' :
                           dtails.status === 1 ? '审核中' :
                             dtails.status === 2 ? '通过' : ''
                       }
                     </View>
-                    <Image src={switchIocn} className='switchItem' onClick={()=>{
+                    <View className='switchContent' onClick={()=>{
                       Taro.switchTab({
                         url: '/pages/examine/index',
                       })
-                    }}/>
+                    }}>
+                      <View className='switchTitle'>切换打卡</View>
+                      <Image src={switchIocn} className='switchItem'/>
+                    </View>
                   </View>
               }
             </View>
@@ -433,7 +442,7 @@ class PunchClocks extends Component {
                 </View>
               </View>
               <View className='photographContent'>
-                <View className='photographTitle'>打卡拍照</View>
+                <View className='photographTitle'>打卡拍照<Text className='tips'>〔可以上传多张〕</Text></View>
                 <AtIcon onClick={()=>{
                   Taro.chooseImage({
                     count: 1,