Browse Source

修复ios时间选择错误

HW 3 years ago
parent
commit
22696aac75

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

@@ -15,7 +15,7 @@
     }
     .wrapper {
         .model-box-bg {
-            position: absolute;
+            position: fixed;
             top: 0;
             left: 0;
             z-index: 10000;
@@ -25,7 +25,7 @@
             opacity: 0.3;
         }
         .model-box {
-            position: absolute;
+            position: fixed;
             bottom: 0;
             left: 0;
             z-index: 999999;

+ 29 - 2
src/components/common/listBottomStart/index.jsx

@@ -1,6 +1,6 @@
 import React,{Component} from 'react';
 import {Image, View} from '@tarojs/components';
-import { AtActivityIndicator  } from 'taro-ui';
+import {AtActivityIndicator, AtPagination} from 'taro-ui';
 import 'taro-ui/dist/style/components/icon.scss';
 import 'taro-ui/dist/style/components/divider.scss';
 import 'taro-ui/dist/style/components/icon.scss';
@@ -10,6 +10,9 @@ import noData from '../../../image/noData.png';
 
 import 'taro-ui/dist/style/components/activity-indicator.scss';
 import 'taro-ui/dist/style/components/loading.scss';
+import 'taro-ui/dist/style/components/pagination.scss';
+import 'taro-ui/dist/style/components/button.scss';
+import 'taro-ui/dist/style/components/icon.scss';
 
 class ListBottomStart extends Component{
   constructor(props) {
@@ -19,7 +22,31 @@ class ListBottomStart extends Component{
   render() {
     const { state } = this.props;
     return (
-      <View className='listBottomStartComponent'>
+      this.props.type === 'pagination' ? <View className='listBottomStartComponent'>
+        {
+        state === 'RELOAD' ?
+          <View className='reload'>
+            <View>加载失败</View>
+            <View className='operation' onClick={()=>{
+              this.props.reload && this.props.reload();
+            }}>点击重新加载</View>
+          </View>:
+          state === 'NO_DATA' ?
+            <View className='noData'>
+              <Image src={noData} className='noDataImg'/>
+              <View className='noDataTitle'>暂时没有数据</View>
+            </View>
+            : <AtPagination
+                icon
+                total={this.props.total}
+                pageSize={this.props.pageSize}
+                current={this.props.current}
+                onPageChange={v=>{
+                  this.props.onPageChange(v.type, v.current)
+                }}
+            />
+        }
+      </View> :<View className='listBottomStartComponent'>
         {
           state === 'NO_MORE_DATA' ?
             <View className='noMoreData'>

BIN
src/image/egressSelect.png


BIN
src/image/egressUnSelect.png


BIN
src/image/examineSelect.png


BIN
src/image/examineUnSelect.png


BIN
src/image/location.png


BIN
src/image/passed.png


BIN
src/image/punchClockSelect.png


BIN
src/image/punchClockUnSelect.png


BIN
src/image/punchRange.png


BIN
src/image/rejected.png


BIN
src/image/reviewed.png


BIN
src/image/revoke.png


BIN
src/image/revokeWhite.png


BIN
src/image/switch.png


BIN
src/image/wx.png


+ 36 - 20
src/pages/applyDepart/enterprise.jsx

@@ -19,22 +19,26 @@ class Enterprise extends Component{
     super(props);
     this.state={
       value:'',
-      loading:false,
-      data:[],
-      listState:'NO_DATA'
+      list:[],
+      listState:'NO_DATA',
+      pageNo:1
     }
     this.onChange = this.onChange.bind(this);
+    this.getList = this.getList.bind(this);
   }
 
   componentDidMount() {
     Taro.eventCenter.on('result', () => {
       this.setState({
         value:'',
-        loading:false,
-        data:[],
-        listState:'NO_DATA'
+        list:[],
+        listState:'NO_DATA',
+        pageNo:1
       })
     })
+    Taro.eventCenter.on('applyDepartSearchList', () => {
+      this.getList(this.state.value,this.state.pageNo + 1);
+    })
   }
 
   onChange (value,lv=true) {
@@ -46,32 +50,43 @@ class Enterprise extends Component{
       return
     }
     if(value.length < 4 && lv){return}
+    this.getList(value);
+  }
+
+  getList(value = this.state.value,pageNo = 1){
     this.setState({
       listState: 'LOADING'
     })
     getUserByName({
-      name:value
-    }).then((data)=>{
-      if(data.error.length === 0){
-        if(data.data.length === 0){
+      name:value,
+      pageNo: pageNo,
+      pageSize: 10,
+    }).then((msg)=>{
+      if(msg.error.length === 0){
+        if(msg.data.totalCount === 0){
           this.setState({
             listState: 'NO_DATA'
           })
-        }else{
+        }else if(msg.data.totalCount === this.state.list.length && pageNo !== 1){
+          Taro.showToast({title:'没有更多数据了',icon:'none'});
           this.setState({
             listState: 'NO_MORE_DATA'
           })
+        }else{
+          if(msg.data.totalCount === (pageNo === 1 ? msg.data.list : this.state.list.concat(msg.data.list)).length){
+            this.setState({
+              listState: 'NO_MORE_DATA'
+            })
+          }
         }
         this.setState({
-          data:data.data
+          list:pageNo === 1 ? msg.data.list : this.state.list.concat(msg.data.list),
+          pageNo: msg.data.pageNo
         })
       }else{
+        Taro.showToast({title:msg.error[0].message,icon:'none'});
         this.setState({
-          listState: data.error[0].field === '403' ? 'NO_DATA' : 'RELOAD'
-        })
-        Taro.showToast({
-          title:data.error[0].message,
-          icon:'none'
+          listState: msg.error[0].field === '403' ? 'NO_DATA' : 'RELOAD'
         })
       }
     }).catch(()=>{
@@ -93,14 +108,15 @@ class Enterprise extends Component{
           onClear={()=>{
             this.setState({
               value:'',
-              data:[],
-              listState:'NO_DATA'
+              list:[],
+              listState:'NO_DATA',
+              pageNo:1
             })
           }}
         />
         <View>
           {
-            this.state.data.map((v,k)=>(
+            this.state.list.map((v,k)=>(
               <View key={k}>
                 <AtListItem
                   title={v.name}

+ 6 - 0
src/pages/applyDepart/index.jsx

@@ -91,6 +91,12 @@ class ApplyDepart extends Component {
 
   }
 
+  onReachBottom(){
+    if(this.state.current === 0){
+      Taro.eventCenter.trigger('applyDepartSearchList')
+    }
+  }
+
   render () {
     return (
       <View className='applyDepart'>

+ 9 - 9
src/pages/applyDepart/publicContent.jsx

@@ -220,8 +220,8 @@ class PublicContent extends Component{
               if(this.state.rangeEndVal){
                 let str = dayjs(current.current).format('YYYY-MM-DD');
                 arr.push({value:str});
-                let a = dayjs(this.state.rangeEndVal.split('-'));
-                let b = dayjs(str.split('-'));
+                let a = dayjs(this.state.rangeEndVal);
+                let b = dayjs(str);
                 let num = a.diff(b, 'days');
                 let strAdd = str;
                 for(let i = 0;i<num;i++){
@@ -248,7 +248,7 @@ class PublicContent extends Component{
                 validDates:[],
                 totalDuration:0
               })
-            }} initValue={dayjs().format('YYYY-MM-DD HH:mm:ss')} wrap-class="my-class"  select-item-class="mySelector" />
+            }} initValue={dayjs()} wrap-class="my-class"  select-item-class="mySelector" />
           </View>
         </View>
         <View className='formItem'>
@@ -272,8 +272,8 @@ class PublicContent extends Component{
               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('-'));
-                let b = dayjs(str.split('-'));
+                let a = dayjs(this.state.rangeStartVal);
+                let b = dayjs(str);
                 let num = b.diff(a, 'days');
                 let strAdd = this.state.rangeStartVal;
                 for(let i = 0;i<num;i++){
@@ -300,7 +300,7 @@ class PublicContent extends Component{
                 validDates:[],
                 totalDuration:0
               })
-            }} initValue={dayjs().format('YYYY-MM-DD HH:mm:ss')} wrap-class="my-class"  select-item-class="mySelector" />
+            }} initValue={dayjs()} wrap-class="my-class"  select-item-class="mySelector" />
           </View>
         </View>
         <View className='formItem'>
@@ -321,8 +321,8 @@ class PublicContent extends Component{
             isSwiper={false}
             validDates={this.state.validDates}
             onDayLongClick={(item)=>{
-              if(!(dayjs(item.value.split('-')).isSame(this.state.rangeStartVal.split('-')) || dayjs(item.value.split('-')).isSame(this.state.rangeEndVal.split('-')))){
-                if(!(dayjs(item.value.split('-')).isAfter(this.state.rangeStartVal.split('-')) && dayjs(item.value.split('-')).isBefore(this.state.rangeEndVal.split('-')))){
+              if(!(dayjs(item.value).isSame(this.state.rangeStartVal) || dayjs(item.value).isSame(this.state.rangeEndVal))){
+                if(!(dayjs(item.value).isAfter(this.state.rangeStartVal) && dayjs(item.value).isBefore(this.state.rangeEndVal))){
                   return;
                 }
               }else{
@@ -330,7 +330,7 @@ class PublicContent extends Component{
                 return
               }
               let index = this.state.validDates.findIndex(v=>{
-                let lv = dayjs(v.value.split('-')).isSame(item.value.split('-'));
+                let lv = dayjs(v.value).isSame(item.value);
                 return lv
               })
               if(index<0){

+ 56 - 29
src/pages/egressDetails/enterprise.jsx

@@ -2,13 +2,13 @@ import React,{Component} from 'react';
 import {View,Icon} from '@tarojs/components'
 import {getUserByName} from '../../utils/servers/servers';
 
-import {AtSearchBar, AtListItem} from 'taro-ui'
+import {AtSearchBar, AtPagination} from 'taro-ui'
 
 import 'taro-ui/dist/style/components/search-bar.scss';
 import 'taro-ui/dist/style/components/button.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/pagination.scss';
 
 import ListBottomStart from '../../components/common/listBottomStart';
 
@@ -19,10 +19,10 @@ class Enterprise extends Component{
     super(props);
     this.state={
       value:'',
-      loading:false,
-      data:[],
+      list:[],
       listState:'NO_DATA',
       selectId:0,
+      pageNo:1
     }
     this.onChange = this.onChange.bind(this);
   }
@@ -36,50 +36,67 @@ class Enterprise extends Component{
       return
     }
     if(value.length < 4 && lv){return}
+    this.getList(value)
+  }
+
+  componentWillUnmount() {
+    this.setState({
+      value:'',
+      list:[],
+      listState:'NO_DATA',
+      selectId:0,
+      pageNo:1,
+      totalCount:0
+    })
+  }
+
+  getList(value = this.state.value,pageNo = 1){
+    Taro.showLoading({title:'加载中...'})
     this.setState({
       listState: 'LOADING'
     })
     getUserByName({
-      name:value
-    }).then((data)=>{
-      if(data.error.length === 0){
-        if(data.data.length === 0){
+      name:value,
+      pageNo: pageNo,
+      pageSize: 10,
+    }).then((msg)=>{
+      Taro.hideLoading();
+      if(msg.error.length === 0){
+        if(msg.data.totalCount === 0){
           this.setState({
             listState: 'NO_DATA'
           })
-        }else{
+        }else if(msg.data.totalCount === this.state.list.length && pageNo !== 1){
+          Taro.showToast({title:'没有更多数据了',icon:'none'});
           this.setState({
             listState: 'NO_MORE_DATA'
           })
+        }else{
+          if(msg.data.totalCount === (pageNo === 1 ? msg.data.list : this.state.list.concat(msg.data.list)).length){
+            this.setState({
+              listState: 'NO_MORE_DATA'
+            })
+          }
         }
         this.setState({
-          data:data.data
+          list:msg.data.list,
+          pageNo: msg.data.pageNo,
+          totalCount:msg.data.totalCount
         })
       }else{
+        Taro.showToast({title:msg.error[0].message,icon:'none'});
         this.setState({
-          listState: data.error[0].field === '403' ? 'NO_DATA' : 'RELOAD'
-        })
-        Taro.showToast({
-          title:data.error[0].message,
-          icon:'none'
+          listState: msg.error[0].field === '403' ? 'NO_DATA' : 'RELOAD'
         })
       }
     }).catch(()=>{
+      Taro.hideLoading();
       this.setState({
         listState: 'RELOAD'
       })
     })
   }
 
-  componentWillUnmount() {
-    this.setState({
-      value:'',
-      data:[],
-      listState:'NO_DATA',
-      selectId:0
-    })
-  }
-
   render() {
     return (
       <>
@@ -92,9 +109,11 @@ class Enterprise extends Component{
           onClear={()=>{
             this.setState({
               value:'',
-              data:[],
+              list:[],
               listState:'NO_DATA',
-              selectId:0
+              selectId:0,
+              pageNo:1,
+              totalCount:0
             },()=>{
               this.props.onChange({});
             })
@@ -102,7 +121,7 @@ class Enterprise extends Component{
         />
         <View>
           {
-            this.state.data.map((v,k)=>(
+            this.state.list.map((v,k)=>(
               <View style={{
                 padding:'10px',
                 display:'flex',
@@ -122,10 +141,18 @@ class Enterprise extends Component{
             ))
           }
           <ListBottomStart
+            type='pagination'
+            pageSize={10}
             state={this.state.listState}
+            total={this.state.totalCount}
+            current={this.state.pageNo}
+            onPageChange={(type, current)=>{
+              this.getList(this.state.value,current);
+            }}
             reload={()=>{
-              this.onChange(this.state.value)
-            }}/>
+              this.getList(this.state.value);
+            }}
+          />
         </View>
       </>
     )

+ 9 - 9
src/pages/egressDetails/publicContent.jsx

@@ -251,8 +251,8 @@ class PublicContent extends Component{
               if(this.state.rangeEndVal){
                 let str = dayjs(current.current).format('YYYY-MM-DD');
                 arr.push({value:str});
-                let a = dayjs(this.state.rangeEndVal.split('-'));
-                let b = dayjs(str.split('-'));
+                let a = dayjs(this.state.rangeEndVal);
+                let b = dayjs(str);
                 let num = a.diff(b, 'days');
                 let strAdd = str;
                 for(let i = 0;i<num;i++){
@@ -279,7 +279,7 @@ class PublicContent extends Component{
                 validDates:[],
                 totalDuration:0
               })
-            }} initValue={dayjs().format('YYYY-MM-DD HH:mm:ss')} wrap-class="my-class"  select-item-class="mySelector" />
+            }} initValue={dayjs()} wrap-class="my-class"  select-item-class="mySelector" />
           </View>
         </View>
         <View className='formItem'>
@@ -303,8 +303,8 @@ class PublicContent extends Component{
               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('-'));
-                let b = dayjs(str.split('-'));
+                let a = dayjs(this.state.rangeStartVal);
+                let b = dayjs(str);
                 let num = b.diff(a, 'days');
                 let strAdd = this.state.rangeStartVal;
                 for(let i = 0;i<num;i++){
@@ -331,7 +331,7 @@ class PublicContent extends Component{
                 validDates:[],
                 totalDuration:0
               })
-            }} initValue={dayjs().format('YYYY-MM-DD HH:mm:ss')} wrap-class="my-class"  select-item-class="mySelector" />
+            }} initValue={dayjs()} wrap-class="my-class"  select-item-class="mySelector" />
           </View>
         </View>
         <View className='formItem'>
@@ -352,8 +352,8 @@ class PublicContent extends Component{
             isSwiper={false}
             validDates={this.state.validDates}
             onDayLongClick={(item)=>{
-              if(!(dayjs(item.value.split('-')).isSame(this.state.rangeStartVal.split('-')) || dayjs(item.value.split('-')).isSame(this.state.rangeEndVal.split('-')))){
-                if(!(dayjs(item.value.split('-')).isAfter(this.state.rangeStartVal.split('-')) && dayjs(item.value.split('-')).isBefore(this.state.rangeEndVal.split('-')))){
+              if(!(dayjs(item.value).isSame(this.state.rangeStartVal) || dayjs(item.value).isSame(this.state.rangeEndVal))){
+                if(!(dayjs(item.value).isAfter(this.state.rangeStartVal) && dayjs(item.value).isBefore(this.state.rangeEndVal))){
                   return;
                 }
               }else{
@@ -361,7 +361,7 @@ class PublicContent extends Component{
                 return
               }
               let index = this.state.validDates.findIndex(v=>{
-                let lv = dayjs(v.value.split('-')).isSame(item.value.split('-'));
+                let lv = dayjs(v.value).isSame(item.value);
                 return lv
               })
               if(index<0){

+ 2 - 1
src/utils/config.js

@@ -1,3 +1,4 @@
 // export const resourceAddress = 'http://172.16.0.188:3000/upload'
-export const resourceAddress = 'https://static.jishutao.com/upload'
+export const resourceAddress = 'https://s.jishutao.com/upload'
+export const radiusRange = 100                        //打卡半径
 

+ 2 - 2
src/utils/servers/baseUrl.js

@@ -2,10 +2,10 @@ const getBaseUrl = (url) => {
   let BASE_URL = '';
   if (process.env.NODE_ENV === 'development') {
     //开发环境 - 根据请求不同返回不同的BASE_URL
-    BASE_URL = 'https://uat.jishutao.com'
+    BASE_URL = 'https://bm.jishutao.com'
   } else {
     // 生产环境
-    BASE_URL = 'https://uat.jishutao.com'
+    BASE_URL = 'https://bm.jishutao.com'
   }
   return BASE_URL
 }

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

@@ -35,7 +35,7 @@ export const login = (res) => {
 }
 
 export const getUserByName = (postData = {}) => {
-  return HTTPREQUEST.get('/api/admin/customer/getUserByName', postData)
+  return HTTPREQUEST.get('/api/admin/customer/getUserByNames', postData)
 }
 
 export const addPublicRelease = (postData = {}) => {