HW il y a 3 ans
Parent
commit
933f4f3c41

+ 3 - 3
src/app.jsx

@@ -74,9 +74,9 @@ class App extends Component {
   // 请勿修改此函数
   render () {
     return (
-      <Provider store={store}>
-        {this.props.children}
-      </Provider>
+        <Provider store={store}>
+          {this.props.children}
+        </Provider>
     )
   }
 }

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

@@ -66,7 +66,7 @@ class ImagePicker extends Component{
                 _this.setState({
                   loading:false
                 })
-                Taro.navigateTo({
+                Taro.reLaunch({
                   url: '/pages/login/index'
                 })
               }

+ 26 - 12
src/components/common/messageNoticebar/index.jsx

@@ -13,11 +13,12 @@ class MessageNoticebar extends Component{
     super(props);
     this.state={
       animationData:{},
-      isOpend:true,
+      isOpend:false,
       str:''
     }
     this.onClose = this.onClose.bind(this);
     this.getPublicReleaseUnread = this.getPublicReleaseUnread.bind(this);
+    this.close = this.close.bind(this);
   }
 
   componentWillMount () {
@@ -38,9 +39,29 @@ class MessageNoticebar extends Component{
         this.getPublicReleaseUnread();
       }
     })
+
+    Taro.eventCenter.on('closeMessageNoticebar', () => {
+      this.close();
+    })
+
+    Taro.eventCenter.on('getMessageNoticebar', (data) => {
+      this.setState({
+        str:data
+      },()=>{
+        this.animation.opacity(1).step()
+        this.setState({
+          animation: this.animation.export(),
+          isOpend:true
+        })
+      })
+    })
   }
 
   onClose(){
+    Taro.eventCenter.trigger('closeMessageNoticebar');
+  }
+
+  close(){
     this.animation.opacity(0).step()
     this.setState({
       animation: this.animation.export(),
@@ -52,19 +73,12 @@ class MessageNoticebar extends Component{
   getPublicReleaseUnread(){
     getPublicReleaseUnread({}).then(v=>{
       if(v.error.length === 0){
+        if(v.data.length === 0){return;}
         let str = '';
         for(let i of v.data){
-          str+=i.content+'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'
+          str+=i.content+'\n'
         }
-        this.setState({
-          str:str
-        },()=>{
-          this.animation.opacity(1).step()
-          this.setState({
-            animation: this.animation.export(),
-            isOpend:true
-          })
-        })
+        Taro.eventCenter.trigger('getMessageNoticebar',str);
       }else{
         Taro.showToast({title:v.error[0].message,icon:'none'})
       }
@@ -81,7 +95,7 @@ class MessageNoticebar extends Component{
       <View className='messageNoticebar' animation={this.state.animation}>
         {this.state.isOpend ? <View className='content'>
               <View style={{width:'100%'}}>
-                <AtNoticebar speed='50' icon='volume-plus' marquee>
+                <AtNoticebar speed='50' icon='volume-plus'>
                   <Text decode>
                     {this.state.str}
                   </Text>

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

@@ -16,7 +16,6 @@
       position: absolute;
       z-index: 1;
       right: 20px;
-      bottom:15px
     }
   }
 }

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

@@ -33,7 +33,7 @@ class UserFloatingLayer extends Component{
           <View className='welcome' onClick={()=>{
             Taro.setStorageSync("token", "");
             Taro.setStorageSync('userInfor', "");
-            Taro.navigateTo({
+            Taro.reLaunch({
               url: '/pages/login/index'
             })
           }}>退出</View>

+ 15 - 1
src/pages/applyDepart/publicContent.jsx

@@ -7,7 +7,7 @@ import DateTimePicker from '../../components/common/DateTimePicker';
 
 import ImagePicker from '../../components/common/imagePicker'
 
-import { AtButton,AtTextarea ,AtIcon,AtCalendar   } from 'taro-ui'
+import {AtButton, AtTextarea, AtIcon, AtCalendar, message} from 'taro-ui'
 import {addPublicRelease} from '../../utils/servers/servers';
 
 import 'taro-ui/dist/style/components/form.scss';
@@ -191,6 +191,13 @@ class PublicContent extends Component{
             <DateTimePicker ref={ref=>this.rangeStartRef = ref} onOk={(current)=>{
               let arr = [];
               if(this.state.rangeEndVal){
+                if(dayjs(current.current).isAfter(dayjs(this.state.rangeEndVal.split('-')))){
+                  Taro.showToast({title:'开始时间不能在结束时间之后',icon:'none'})
+                  this.rangeStartRef.clear();
+                  return;
+                }
+              }
+              if(this.state.rangeEndVal){
                 let str = dayjs(current.current).format('YYYY-MM-DD');
                 arr.push({value:str});
                 let a = dayjs(this.state.rangeEndVal.split('-'));
@@ -230,6 +237,13 @@ class PublicContent extends Component{
             <DateTimePicker ref={ref=>this.rangeEndRef = ref} onOk={(current)=>{
               let arr = [];
               if(this.state.rangeStartVal){
+                if(dayjs(current.current).isBefore(dayjs(this.state.rangeStartVal.split('-')))){
+                  Taro.showToast({title:'结束时间不能在开始时间之前',icon:'none'})
+                  this.rangeEndRef.clear();
+                  return;
+                }
+              }
+              if(this.state.rangeStartVal){
                 let str = dayjs(current.current).format('YYYY-MM-DD');
                 arr.push({value:this.state.rangeStartVal});
                 let a = dayjs(this.state.rangeStartVal.split('-'));

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

@@ -255,27 +255,26 @@ class EgressDetails extends Component{
               {dtails.remarks}
             </View>
           </View>
-          <View className='item'>
+          {dtails.annexUrl && dtails.annexUrl.length > 0 ? <View className='item'>
             <View className='title'>附件</View>
             <View className='value'>
-              {dtails.annexUrl && dtails.annexUrl.length > 0 ? <ImagePicker
+              <ImagePicker
                 files={dtails.annexUrl}
-                showAddBtn={false} /> : null}
+                showAddBtn={false} />
             </View>
-          </View>
+          </View> : null}
           {
-            this.$instance.router.params.type === '1' ?
+            this.$instance.router.params.type === '1' && dtails.status === 1 ?
               <View className='item'>
                 <View className='title'>填写审批意见</View>
                 <AtTextarea
-                  disabled={dtails.status !== 1}
                   value={this.state.opinion}
                   onChange={(value)=>{
                     this.setState({
                       opinion:value
                     })
                   }}
-                  maxLength={200}
+                  maxLength={20}
                   placeholder='请填写审批意见'
                 />
               </View> : null

+ 1 - 1
src/pages/examine/index.jsx

@@ -31,7 +31,7 @@ class Examine extends Component {
     this.getExamineList= this.getExamineList.bind(this);
   }
 
-  componentDidShow() {
+  componentDidShow(){
 
   }
 

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

@@ -50,7 +50,7 @@ class MyList extends Component {
                   </View>
                   <View className='releaseStarts'>
                     开始时间:{v.releaseStarts}
-                    <View className='punchClock' onClick={(e)=>{
+                    {this.props.type === 0 ? <View className='punchClock' onClick={(e)=>{
                       e.stopPropagation();
                       Taro.eventCenter.trigger('GoPunchIn',v)
                       Taro.switchTab({
@@ -58,7 +58,7 @@ class MyList extends Component {
                       })
                     }}>
                       去打卡
-                    </View>
+                    </View> : null}
                   </View>
                   <View className='releaseEnds'>
                     结束时间:{v.releaseEnds}

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

@@ -1,3 +0,0 @@
-export default {
-  navigationBarTitleText: '首页'
-}

+ 0 - 157
src/pages/list/index.jsx

@@ -1,157 +0,0 @@
-import { Component } from 'react'
-import Taro from '@tarojs/taro'
-import { connect } from 'react-redux'
-import {View} from '@tarojs/components'
-import { AtButton } from 'taro-ui'
-
-import "taro-ui/dist/style/components/icon.scss";
-import "taro-ui/dist/style/components/button.scss";
-import "taro-ui/dist/style/components/loading.scss";
-
-import { add, minus, asyncAdd } from '../../actions/counter'
-
-import './index.less'
-
-
-@connect(({ counter }) => ({
-  counter
-}), (dispatch) => ({
-  add () {
-    dispatch(add())
-  },
-  dec () {
-    dispatch(minus())
-  },
-  asyncAdd () {
-    dispatch(asyncAdd())
-  }
-}))
-class Index extends Component {
-  constructor(props) {
-    super(props);
-    this.state={
-      list:[
-        {
-          icon:'bell',
-          title:'打卡',
-          color:'#89ec6d',
-          buttons:[
-            {
-              name:'上班'
-            },
-            {
-              name:'下班'
-            }
-          ]
-        },
-        {
-          icon:'map-pin',
-          title:'定位轨迹',
-          color:'#3f8ae5',
-          buttons:[
-            {
-              name:'我的路线'
-            },
-            {
-              name:'员工分布',
-              url:'/pages/staffDistribution/index'
-            }
-          ]
-        },
-        {
-          icon:'calendar',
-          title:'日报',
-          color:'#3f8ae5',
-          buttons:[
-            {
-              name:'添加日报'
-            },
-          ]
-        },
-        {
-          icon:'shopping-bag',
-          title:'出差',
-          color:'#89ec6d',
-          buttons:[
-            {
-              name:'填写出差单',
-              url:'/pages/outdoorActivities/index'
-            },
-          ]
-        },
-        {
-          icon:'camera',
-          title:'拍照上传',
-          color:'#3f8ae5',
-          buttons:[
-            {
-              name:'添加拍照'
-            },
-          ]
-        },
-        {
-          icon:'credit-card',
-          title:'费用申请',
-          color:'#b19c42',
-          buttons:[
-            {
-              name:'填写申请单'
-            },
-          ]
-        },
-      ]
-    }
-  }
-
-  componentDidShow () {
-    let token = Taro.getStorageSync('token');
-    if(!token){
-      Taro.navigateTo({
-        url: '/pages/login/index',
-      })
-    }
-  }
-
-  componentDidMount() {
-
-  }
-
-  render () {
-    return (
-      <View className='list'>
-        {
-          this.state.list.map((value,key)=>(
-            <View key={key} className='item'>
-              <View className='left' style={{background:value.color}}>
-                <View className={'at-icon at-icon-'+value.icon} style={{color:'#FFF'}}/>
-                <View className='title'>{value.title}</View>
-              </View>
-              <View className='right'>
-                {
-                  value.buttons.map((v,k)=>(
-                    <AtButton
-                      key={k}
-                      type='secondary'
-                      size='small'
-                      className='button'
-                      onClick={()=>{
-                        Taro.navigateTo({
-                          url: v.url,
-                        })
-                      }}
-                      >
-                      {v.name}
-                    </AtButton>
-                  ))
-                }
-              </View>
-            </View>
-          ))
-        }
-      </View>
-    )
-  }
-}
-
-export default Index
-

+ 0 - 41
src/pages/list/index.less

@@ -1,41 +0,0 @@
-.list{
-  padding: 40px;
-  .item{
-    display: flex;
-    flex-flow: row nowrap;
-    align-items: center;
-    height: 153px;
-    border-radius: 15px;
-    flex: 1;
-    box-shadow: 5px 7px 20px #767272;
-    margin-bottom: 30px;
-    overflow: hidden;
-    .left{
-      height: 100%;
-      display: flex;
-      flex-flow: row nowrap;
-      align-items: center;
-      justify-content: flex-start;
-      padding: 0 10px;
-      width: 27%;
-      .title{
-        color: #FFFFFF;
-        font-size: 30px;
-        font-weight: bold;
-        padding-left: 10px;
-      }
-    }
-    .right{
-      flex: 1;
-      height: 100%;
-      padding: 20px;
-      display: flex;
-      flex-flow: row nowrap;
-      align-items: center;
-      justify-content: center;
-      .button{
-
-      }
-    }
-  }
-}

+ 5 - 0
src/pages/punchClock/index.jsx

@@ -1,12 +1,17 @@
 import React,{Component} from "react";
 import PunchClocks from './punchClocks';
 import MessageNoticebar from "../../components/common/messageNoticebar";
+import Taro from "@tarojs/taro";
 
 class PunchClock extends Component{
   constructor(props) {
     super(props);
   }
 
+  componentDidShow(){
+    Taro.eventCenter.trigger('punchClockComponentDidShow');
+  }
+
   render() {
     return (
       <>

+ 98 - 4
src/pages/punchClock/punchClocks.jsx

@@ -2,7 +2,7 @@ import React, { Component } from 'react'
 import { connect } from 'react-redux'
 import {Map, OpenData, View, Image} from '@tarojs/components'
 import Taro from '@tarojs/taro';
-import {AtIcon, AtNoticebar} from "taro-ui";
+import {AtIcon, AtModal, AtNoticebar} from "taro-ui";
 import dayjs from 'dayjs';
 import Skeleton from 'taro-skeleton'
 
@@ -54,6 +54,7 @@ class PunchClocks extends Component {
     this.getPublicReleaseList = this.getPublicReleaseList.bind(this);
     this.publicReleaseClockIn = this.publicReleaseClockIn.bind(this);
     this.refresh = this.refresh.bind(this);
+    this.getDtails = this.getDtails.bind(this);
   }
 
   nowTime = null;
@@ -63,6 +64,10 @@ class PunchClocks extends Component {
   });
 
   componentDidMount(){
+    this.getDtails();
+  }
+
+  getDtails(){
     this.getPublicReleaseList(()=>{
       Taro.startLocationUpdate({
         success:()=>{
@@ -70,7 +75,25 @@ class PunchClocks extends Component {
             this.getSpacing(v.latitude,v.longitude)
           })
         },
-        fail:()=>{
+        fail:(err)=>{
+          console.log(err,'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
           })
@@ -102,6 +125,12 @@ class PunchClocks extends Component {
       })
     },1000)
 
+    Taro.eventCenter.on('punchClockComponentDidShow', () => {
+      if(Object.keys(this.state.dtails).length === 0){
+        this.getDtails();
+      }
+    })
+
     Taro.eventCenter.on('GoPunchIn', (arg) => {
       this.setState({
         dtails:arg,
@@ -266,7 +295,7 @@ class PunchClocks extends Component {
         console.error(error);
       },
       complete: function(res) {
-        console.log(res);
+
       }
     });
   }
@@ -415,7 +444,28 @@ class PunchClocks extends Component {
               <View style={{alignSelf:'flex-start',width:'100%'}}>
                 <ImagePicker ref={ref => this.imagePicker = ref} url='/api/admin/release/upload' showAddBtn={false} onChange={this.onChange}/>
               </View>
-              <View className='punchClockContent' onClick={this.publicReleaseClockIn} style={{
+              <View className='punchClockContent' onClick={()=>{
+                let _this = this;
+                Taro.getSetting({
+                  success:(res)=>{
+                    if (!res.authSetting['scope.userLocation']) {
+                      Taro.authorize({
+                        scope: 'scope.userLocation',
+                        success:()=>{
+                          _this.publicReleaseClockIn();
+                        },
+                        fail:()=>{
+                          this.setState({
+                            isOpened:true
+                          })
+                        }
+                      })
+                    }else{
+                      _this.publicReleaseClockIn();
+                    }
+                  }
+                })
+              }} style={{
                 boxShadow:  (!isNaN(parseInt(this.state.distance))) && this.state.distance <=50 && this.state.distance >= 0 ? '1px 1px 15px 1px #659268' : '1px 1px 15px 1px #acb8ad',
                 background: (!isNaN(parseInt(this.state.distance))) && this.state.distance <=50 && this.state.distance >= 0 ? '#72cb78' : '#acb8ad'
               }}>
@@ -446,6 +496,50 @@ class PunchClocks extends Component {
               <View className='tips'>紫色区域为可打卡区域</View>
             </View>
         }
+        <AtModal
+          isOpened={this.state.isOpened}
+          title='提醒'
+          cancelText='取消'
+          confirmText='确认'
+          onClose={()=>{
+            this.setState({
+              isOpened:false,
+            })
+          }}
+          onCancel={()=>{
+            this.setState({
+              isOpened:false,
+            })
+          }}
+          onConfirm={()=>{
+            this.setState({
+              isOpened:false,
+            },()=>{
+              Taro.openSetting({
+                success:(value)=> {
+                  if(value.authSetting['scope.userLocation']){
+                    Taro.getLocation({
+                      type: 'gcj02',
+                      isHighAccuracy:true,
+                      success: (res)=> {
+                        const latitude = res.latitude
+                        const longitude = res.longitude
+                        this.setState({
+                          newArrder:{
+                            latitude,
+                            longitude
+                          },
+                        })
+                      }
+                    })
+                    this.getDtails();
+                  }
+                }
+              })
+            })
+          }}
+          content='您拒绝了定位权限,请先前往设置打开定位权限'
+        />
       </View>
     )
   }

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

@@ -11,7 +11,7 @@ export const getCurrentPageUrl = () => {
 };
 
 export const pageToLogin = async () => {
-  Taro.navigateTo({
+  Taro.reLaunch({
     url: '/pages/login/index'
   })