HW лет назад: 3
Родитель
Сommit
fdaa92e335

+ 2 - 1
src/components/common/DateTimePicker/index.scss

@@ -1,4 +1,5 @@
 .datetime-picker-wrap {
+    width: 100%;
     .selector-wrap {
         display: flex;
         align-items: center;
@@ -9,7 +10,7 @@
             flex: 1;
             font-size: 30px;
             padding: 12px 0;
-            text-align: center;
+            //text-align: center;
         }
     }
     .wrapper {

+ 19 - 12
src/pages/applyDepart/publicContent.jsx

@@ -41,9 +41,9 @@ class PublicContent extends Component{
 
   componentDidMount() {
     Taro.eventCenter.on('result', () => {
-      this.rangeEndRef.clear();
-      this.rangeStartRef.clear();
-      this.imagePickerRef.clear();
+      this.rangeEndRef && this.rangeEndRef.clear();
+      this.rangeStartRef && this.rangeStartRef.clear();
+      this.imagePickerRef && this.imagePickerRef.clear();
       this.setState({
         rangeStartVal:'',
         rangeEndVal:'',
@@ -155,14 +155,9 @@ class PublicContent extends Component{
   selectArrder(){
     const key = 'AWBBZ-GRAC2-JFYUO-CLA7I-JAHXK-YFFGT'; //使用在腾讯位置服务申请的key
     const referer = '科德打卡定位'; //调用插件的app的名称
-    const location = JSON.stringify({
-      latitude: 39.89631551,
-      longitude: 116.323459711
-    });
-    const category = '生活服务,娱乐休闲';
-
+    const category = '公司企业,房产小区';
     Taro.navigateTo({
-      url: 'plugin://chooseLocation/index?key=' + key + '&referer=' + referer + '&location=' + location + '&category=' + category
+      url: 'plugin://chooseLocation/index?key=' + key + '&referer=' + referer + '&category=' + category
     });
   }
 
@@ -191,9 +186,15 @@ 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('-')))){
+                if(dayjs(current.current).isAfter(dayjs(this.state.rangeEndMinuteVal))){
                   Taro.showToast({title:'开始时间不能在结束时间之后',icon:'none'})
                   this.rangeStartRef.clear();
+                  this.setState({
+                    rangeStartVal:'',
+                    rangeStartMinuteVal: '',
+                    validDates:[],
+                    totalDuration:0
+                  })
                   return;
                 }
               }
@@ -237,9 +238,15 @@ 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('-')))){
+                if(dayjs(current.current).isBefore(dayjs(this.state.rangeStartMinuteVal))){
                   Taro.showToast({title:'结束时间不能在开始时间之前',icon:'none'})
                   this.rangeEndRef.clear();
+                  this.setState({
+                    rangeEndVal:'',
+                    rangeEndMinuteVal: '',
+                    validDates:[],
+                    totalDuration:0
+                  })
                   return;
                 }
               }

+ 7 - 5
src/pages/applyDepart/result.jsx

@@ -29,13 +29,15 @@ class Result extends Component{
         <View className='resultTitle'>
           {
             this.props.resultState === 0 ?
-              '申请成功' :
-              this.props.resultState === 43101 ?
-                '申请成功,但您的上级未打开订阅消息通知,请与上级联系,否则审批可能会不及时' :
-                '申请成功,消息发送错误,请联系管理员'
+              '申请成功,已通知上级审核' :
+              this.props.resultState === 43101 || this.props.resultState === 2 || this.props.resultState === 40003 ?
+                '申请成功,上级未打开消息通知,请联系您的上级' :
+                this.props.resultState === 41030 || this.props.resultState === 47003 || this.props.resultState === 40037 ?
+                  '申请成功,消息发送失败,请联系管理员':
+                    '申请成功,消息发送失败'
           }
           {
-            this.props.resultState !== 0 && this.props.resultState !== 43101 ?
+            this.props.resultState !== 0 && this.props.resultState !== 43101 && this.props.resultState !== 2 && this.props.resultState !== 40003 ?
               <View className='resultError'>错误编码:{this.props.resultState}</View>:null
           }
         </View>

+ 18 - 11
src/pages/egressDetails/publicContent.jsx

@@ -189,14 +189,9 @@ class PublicContent extends Component{
   selectArrder(){
     const key = 'AWBBZ-GRAC2-JFYUO-CLA7I-JAHXK-YFFGT'; //使用在腾讯位置服务申请的key
     const referer = '科德打卡定位'; //调用插件的app的名称
-    const location = JSON.stringify({
-      latitude: 39.89631551,
-      longitude: 116.323459711
-    });
-    const category = '生活服务,娱乐休闲';
-
+    const category = '公司企业,房产小区';
     Taro.navigateTo({
-      url: 'plugin://chooseLocation/index?key=' + key + '&referer=' + referer + '&location=' + location + '&category=' + category
+      url: 'plugin://chooseLocation/index?key=' + key + '&referer=' + referer + '&category=' + category
     });
   }
 
@@ -226,9 +221,15 @@ 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('-')))){
+                if(dayjs(current.current).isAfter(dayjs(this.state.rangeEndMinuteVal))){
                   Taro.showToast({title:'开始时间不能在结束时间之后',icon:'none'})
                   this.rangeStartRef.clear();
+                  this.setState({
+                    rangeStartVal:'',
+                    rangeStartMinuteVal: '',
+                    validDates:[],
+                    totalDuration:0
+                  })
                   return;
                 }
               }
@@ -271,10 +272,16 @@ class PublicContent extends Component{
           <View className='formValue'>
             <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'})
+              if(this.state.rangeStartVal) {
+                if (dayjs(current.current).isBefore(dayjs(this.state.rangeStartMinuteVal))) {
+                  Taro.showToast({title: '结束时间不能在开始时间之前', icon: 'none'})
                   this.rangeEndRef.clear();
+                  this.setState({
+                    rangeEndVal: '',
+                    rangeEndMinuteVal: '',
+                    validDates: [],
+                    totalDuration: 0
+                  })
                   return;
                 }
               }

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

@@ -12,6 +12,10 @@ class PunchClock extends Component{
     Taro.eventCenter.trigger('punchClockComponentDidShow');
   }
 
+  componentDidMount(){
+    Taro.eventCenter.trigger('GoPuncsshIn',{data:'unread'})
+  }
+
   render() {
     return (
       <>

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

@@ -121,6 +121,11 @@
       .punchClockTime{
         color: #e8e6e6;
         font-size: 25px;
+        padding-bottom: 8px;
+      }
+      .refreshClock{
+        color: #308de8;
+        font-size: 25px;
       }
     }
     .photographContent{

+ 12 - 5
src/pages/punchClock/punchClocks.jsx

@@ -167,7 +167,7 @@ class PunchClocks extends Component {
       Taro.showToast({title:'定位错误,请联系管理员',icon:'none'})
       return ;
     }
-    if(!(this.state.distance <=50 && this.state.distance >= 0)){
+    if(!(this.state.distance <=100 && this.state.distance >= 0)){
       Taro.showToast({title:'当前位置未处于可打卡范围,无法打卡',icon:'none'})
       return ;
     }
@@ -180,7 +180,13 @@ class PunchClocks extends Component {
       photoUrl:this.state.imgs.join(',')
     }).then(v=>{
       if(v.error.length === 0){
-        Taro.showToast({title:'打卡成功',icon:'none'})
+        Taro.showToast({title:'打卡成功',icon:'none'});
+        this.imagePicker.clear();
+        this.state.dtails.clockIn = 1;
+        this.setState({
+          dtails:this.state.dtails,
+          imgs:[]
+        })
       }else{
         Taro.showToast({title:v.error[0].message,icon:'none'})
       }
@@ -466,11 +472,12 @@ class PunchClocks extends Component {
                   }
                 })
               }} 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'
+                boxShadow:  (!isNaN(parseInt(this.state.distance))) && this.state.distance <=100 && this.state.distance >= 0 ? '1px 1px 15px 1px #659268' : '1px 1px 15px 1px #acb8ad',
+                background: (!isNaN(parseInt(this.state.distance))) && this.state.distance <=100 && this.state.distance >= 0 ? (dtails.clockIn === 1 ? '#eca529' : '#72cb78') : '#acb8ad'
               }}>
                 <View className='punchClockTitle'>公出打卡</View>
                 <View className='punchClockTime'>{this.state.nowTime}</View>
+                {dtails.clockIn === 1 ? <View className='refreshClock'>刷新打卡</View>:null}
               </View>
               <View className='map'>
                 <Map
@@ -485,7 +492,7 @@ class PunchClocks extends Component {
                       longitude: this.state.addressLongitude,
                       color: '#c92ddc82',
                       fillColor: '#c92ddc82',
-                      radius: 50,
+                      radius: 100,
                       strokeWidth: 1
                     }
                   ]}