|
@@ -1,22 +1,39 @@
|
|
|
import React, { Component } from 'react';
|
|
|
import Taro from '@tarojs/taro';
|
|
|
-import { View } from '@tarojs/components'
|
|
|
+import { View ,Picker} from '@tarojs/components'
|
|
|
import { getPublicReleaseList } from '../../utils/servers/servers';
|
|
|
-import { AtTabs, AtTabsPane } from 'taro-ui';
|
|
|
+import {
|
|
|
+ AtSearchBar,
|
|
|
+ AtTabs,
|
|
|
+ AtTabsPane,
|
|
|
+ AtActionSheet,
|
|
|
+ AtActionSheetItem,
|
|
|
+ AtIcon,
|
|
|
+ AtList,
|
|
|
+ AtListItem,
|
|
|
+ AtButton
|
|
|
+} from 'taro-ui';
|
|
|
+import {clockState} from '../../utils/tools/config';
|
|
|
|
|
|
import './index.less';
|
|
|
|
|
|
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 MyList from './myList';
|
|
|
import MessageNoticebar from "../../components/common/messageNoticebar";
|
|
|
+import dayjs from "dayjs";
|
|
|
+import DateTimePicker from "../../components/common/DateTimePicker";
|
|
|
|
|
|
class Examine extends Component {
|
|
|
|
|
|
constructor(props) {
|
|
|
super(props);
|
|
|
- this.state={
|
|
|
- current:0,
|
|
|
+ this.state= {
|
|
|
+ current: 0,
|
|
|
|
|
|
list: [],
|
|
|
pageNo: 1,
|
|
@@ -25,6 +42,15 @@ class Examine extends Component {
|
|
|
examinelist: [],
|
|
|
examinePageNo: 1,
|
|
|
examineListState: 'LOADING',
|
|
|
+
|
|
|
+ starts: {},
|
|
|
+ clockInStarts: '',
|
|
|
+
|
|
|
+
|
|
|
+ rangeStartVal1:'',
|
|
|
+ rangeEndVal1:'',
|
|
|
+ starts1:{},
|
|
|
+ clockInStarts1:''
|
|
|
}
|
|
|
this.getPublicReleaseList= this.getPublicReleaseList.bind(this);
|
|
|
this.getMyList= this.getMyList.bind(this);
|
|
@@ -92,11 +118,23 @@ class Examine extends Component {
|
|
|
this.setState({
|
|
|
listState: 'LOADING'
|
|
|
})
|
|
|
- let msg = await getPublicReleaseList({
|
|
|
+ let data = {
|
|
|
pageNo: pageNo,
|
|
|
pageSize: 10,
|
|
|
- type:0,
|
|
|
- });
|
|
|
+ type:'0',
|
|
|
+
|
|
|
+ releaseStarts:this.state.rangeStartVal || undefined,
|
|
|
+ releaseEnds:this.state.rangeEndVal || undefined,
|
|
|
+ status: isNaN(parseInt(this.state.starts.id)) ? undefined : String(this.state.starts.id),
|
|
|
+ clockIn:this.state.clockInStarts || undefined,
|
|
|
+ userName:this.state.searchValue || undefined,
|
|
|
+ }
|
|
|
+ for(let i in data){
|
|
|
+ if(!data[i]){
|
|
|
+ delete data[i]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ let msg = await getPublicReleaseList(data);
|
|
|
if(msg.error.length === 0){
|
|
|
if(msg.data.totalCount === 0){
|
|
|
this.setState({
|
|
@@ -108,17 +146,16 @@ class Examine extends Component {
|
|
|
listState: 'NO_MORE_DATA'
|
|
|
})
|
|
|
}else{
|
|
|
- this.setState({
|
|
|
- list:pageNo === 1 ? msg.data.list : this.state.list.concat(msg.data.list),
|
|
|
- pageNo: msg.data.pageNo
|
|
|
- },()=>{
|
|
|
- if(msg.data.totalCount === this.state.list.length){
|
|
|
- this.setState({
|
|
|
- listState: 'NO_MORE_DATA'
|
|
|
- })
|
|
|
- }
|
|
|
- })
|
|
|
+ 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({
|
|
|
+ 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({
|
|
@@ -132,11 +169,23 @@ class Examine extends Component {
|
|
|
this.setState({
|
|
|
examineListState: 'LOADING'
|
|
|
})
|
|
|
- let msg = await getPublicReleaseList({
|
|
|
+ let data = {
|
|
|
pageNo: pageNo,
|
|
|
pageSize: 10,
|
|
|
- type:1,
|
|
|
- });
|
|
|
+ type:'1',
|
|
|
+
|
|
|
+ releaseStarts:this.state.rangeStartVal1 || null,
|
|
|
+ releaseEnds:this.state.rangeEndVal1 || null,
|
|
|
+ status:isNaN(parseInt(this.state.starts1.id)) ? undefined : String(this.state.starts1.id),
|
|
|
+ clockIn:this.state.clockInStarts1 || null,
|
|
|
+ userName:this.state.searchValue1 || undefined,
|
|
|
+ }
|
|
|
+ for(let i in data){
|
|
|
+ if(!data[i]){
|
|
|
+ delete data[i]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ let msg = await getPublicReleaseList(data);
|
|
|
if(msg.error.length === 0){
|
|
|
if(msg.data.totalCount === 0){
|
|
|
this.setState({
|
|
@@ -148,17 +197,16 @@ class Examine extends Component {
|
|
|
examineListState: 'NO_MORE_DATA'
|
|
|
})
|
|
|
}else{
|
|
|
- this.setState({
|
|
|
- examinelist:pageNo === 1 ? msg.data.list : this.state.examinelist.concat(msg.data.list),
|
|
|
- examinePageNo: msg.data.pageNo
|
|
|
- },()=>{
|
|
|
- if(msg.data.totalCount === this.state.examinelist.length){
|
|
|
- this.setState({
|
|
|
- examineListState: 'NO_MORE_DATA'
|
|
|
- })
|
|
|
- }
|
|
|
- })
|
|
|
+ if(msg.data.totalCount === (pageNo === 1 ? msg.data.list : this.state.examinelist.concat(msg.data.list)).length){
|
|
|
+ this.setState({
|
|
|
+ examineListState: 'NO_MORE_DATA'
|
|
|
+ })
|
|
|
+ }
|
|
|
}
|
|
|
+ this.setState({
|
|
|
+ examinelist:pageNo === 1 ? msg.data.list : this.state.examinelist.concat(msg.data.list),
|
|
|
+ examinePageNo: msg.data.pageNo
|
|
|
+ })
|
|
|
}else{
|
|
|
Taro.showToast({title:msg.error[0].message,icon:'none'});
|
|
|
this.setState({
|
|
@@ -172,6 +220,196 @@ class Examine extends Component {
|
|
|
return (
|
|
|
<View className='indexPage'>
|
|
|
<MessageNoticebar/>
|
|
|
+ <View className='searchContent'>
|
|
|
+ <View className='searchTop'>
|
|
|
+ <AtSearchBar
|
|
|
+ showActionButton
|
|
|
+ placeholder='请输入企业名称'
|
|
|
+ value={this.state.current === 0 ? this.state.searchValue : this.state.searchValue1}
|
|
|
+ actionName='更多筛选'
|
|
|
+ onChange={(value)=>{
|
|
|
+ if(this.state.current === 0){
|
|
|
+ this.setState({
|
|
|
+ searchValue:value
|
|
|
+ })
|
|
|
+ }else{
|
|
|
+ this.setState({
|
|
|
+ searchValue1:value
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }}
|
|
|
+ onActionClick={()=>{
|
|
|
+ this.setState({
|
|
|
+ openSearch:!this.state.openSearch
|
|
|
+ })
|
|
|
+ }}
|
|
|
+ onConfirm={()=>{
|
|
|
+ this.setState({
|
|
|
+ openSearch:false
|
|
|
+ })
|
|
|
+ this.getPublicReleaseList();
|
|
|
+ }}
|
|
|
+ onClear={()=>{
|
|
|
+ if(this.state.current === 0){
|
|
|
+ this.setState({
|
|
|
+ searchValue:''
|
|
|
+ })
|
|
|
+ }else{
|
|
|
+ this.setState({
|
|
|
+ searchValue1:''
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }}
|
|
|
+ />
|
|
|
+ </View>
|
|
|
+ <View className='searchBottom' style={{display:this.state.openSearch ? 'block' : 'none'}}>
|
|
|
+ <View className='searchBottomBack' onClick={()=>{
|
|
|
+ this.setState({
|
|
|
+ openSearch:false
|
|
|
+ })
|
|
|
+ }}/>
|
|
|
+ <View className='searchItem'>
|
|
|
+ <Picker mode='date' onChange={(e)=>{
|
|
|
+ if(this.state.current === 0){
|
|
|
+ this.setState({
|
|
|
+ rangeStartVal:e.detail.value,
|
|
|
+ })
|
|
|
+ }else{
|
|
|
+ this.setState({
|
|
|
+ rangeStartVal1:e.detail.value,
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }}>
|
|
|
+ <AtList>
|
|
|
+ {
|
|
|
+ this.state.current === 0 ?
|
|
|
+ <AtListItem
|
|
|
+ title='开始时间'
|
|
|
+ hasBorder={false}
|
|
|
+ extraText={this.state.rangeStartVal ? this.state.rangeStartVal : '请选择开始时间'}/> :
|
|
|
+ <AtListItem
|
|
|
+ title='开始时间'
|
|
|
+ hasBorder={false}
|
|
|
+ extraText={this.state.rangeStartVal1 ? this.state.rangeStartVal1 : '请选择开始时间'}/>
|
|
|
+ }
|
|
|
+ </AtList>
|
|
|
+ </Picker>
|
|
|
+ </View>
|
|
|
+ <View className='searchItem'>
|
|
|
+ <Picker mode='date' onChange={(e)=>{
|
|
|
+ if(this.state.current === 0){
|
|
|
+ this.setState({
|
|
|
+ rangeEndVal:e.detail.value,
|
|
|
+ })
|
|
|
+ }else{
|
|
|
+ this.setState({
|
|
|
+ rangeEndVal:e.detail.value,
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }}>
|
|
|
+ <AtList>
|
|
|
+ {
|
|
|
+ this.state.current === 0 ?
|
|
|
+ <AtListItem
|
|
|
+ title='结束时间'
|
|
|
+ hasBorder={false}
|
|
|
+ extraText={this.state.rangeEndVal ? this.state.rangeEndVal : '请选择结束时间' }
|
|
|
+ /> :
|
|
|
+ <AtListItem
|
|
|
+ title='结束时间'
|
|
|
+ hasBorder={false}
|
|
|
+ extraText={this.state.rangeEndVal1 ? this.state.rangeEndVal1 : '请选择结束时间' }
|
|
|
+ />
|
|
|
+ }
|
|
|
+ </AtList>
|
|
|
+ </Picker>
|
|
|
+ </View>
|
|
|
+ <View className='searchItem'>
|
|
|
+ <Picker range={clockState} rangeKey='title' mode='selector' onChange={(e)=>{
|
|
|
+ this.setState({
|
|
|
+ starts:clockState[e.detail.value],
|
|
|
+ })
|
|
|
+ }}>
|
|
|
+ <AtList>
|
|
|
+ {
|
|
|
+ this.state.current === 0 ?
|
|
|
+ <AtListItem
|
|
|
+ title='审核状态'
|
|
|
+ hasBorder={false}
|
|
|
+ extraText={this.state.starts.title ? this.state.starts.title : '请选择审核状态'}/> :
|
|
|
+ <AtListItem
|
|
|
+ title='审核状态'
|
|
|
+ hasBorder={false}
|
|
|
+ extraText={this.state.starts1.title ? this.state.starts1.title : '请选择审核状态'}/>
|
|
|
+ }
|
|
|
+ </AtList>
|
|
|
+ </Picker>
|
|
|
+ </View>
|
|
|
+ <View className='searchItem'>
|
|
|
+ <Picker range={[
|
|
|
+ '未打卡',
|
|
|
+ '已打卡'
|
|
|
+ ]} mode='selector' onChange={(e)=>{
|
|
|
+ this.setState({
|
|
|
+ clockInStarts:String(e.detail.value)
|
|
|
+ })
|
|
|
+ }}>
|
|
|
+ <AtList>
|
|
|
+ {
|
|
|
+ this.state.current === 0 ?
|
|
|
+ <AtListItem
|
|
|
+ title='打卡状态'
|
|
|
+ hasBorder={false}
|
|
|
+ extraText={
|
|
|
+ this.state.clockInStarts === '1' ? '已打卡' :
|
|
|
+ this.state.clockInStarts === '0' ? '未打卡' :'请选择打卡状态'
|
|
|
+ }/>:
|
|
|
+ <AtListItem
|
|
|
+ title='打卡状态'
|
|
|
+ hasBorder={false}
|
|
|
+ extraText={
|
|
|
+ this.state.clockInStarts1 === '1' ? '已打卡' :
|
|
|
+ this.state.clockInStarts1 === '0' ? '未打卡' :'请选择打卡状态'
|
|
|
+ }/>
|
|
|
+ }
|
|
|
+ </AtList>
|
|
|
+ </Picker>
|
|
|
+ </View>
|
|
|
+ <View className='searchOperation'>
|
|
|
+ <View className='reset' onClick={()=>{
|
|
|
+ if(this.state.current === 0){
|
|
|
+ this.setState({
|
|
|
+ rangeStartVal:'',
|
|
|
+ rangeEndVal:'',
|
|
|
+ starts:{},
|
|
|
+ clockInStarts:'',
|
|
|
+ openSearch:false,
|
|
|
+ searchValue:''
|
|
|
+ },()=>{
|
|
|
+ this.getPublicReleaseList();
|
|
|
+ })
|
|
|
+ }else{
|
|
|
+ this.setState({
|
|
|
+ rangeStartVal1:'',
|
|
|
+ rangeEndVal1:'',
|
|
|
+ starts1:{},
|
|
|
+ clockInStarts1:'',
|
|
|
+ openSearch:false,
|
|
|
+ searchValue1:''
|
|
|
+ },()=>{
|
|
|
+ this.getPublicReleaseList();
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }}>重置</View>
|
|
|
+ <View className='search' onClick={()=>{
|
|
|
+ this.setState({
|
|
|
+ openSearch:false
|
|
|
+ })
|
|
|
+ this.getPublicReleaseList();
|
|
|
+ }}>搜索</View>
|
|
|
+ </View>
|
|
|
+ </View>
|
|
|
+ </View>
|
|
|
<AtTabs current={this.state.current || 0} tabList={[{ title: '我的' }, { title: '审核' }]} onClick={(current)=>{
|
|
|
this.setState({
|
|
|
current
|
|
@@ -179,7 +417,6 @@ class Examine extends Component {
|
|
|
if((current === 0 && this.state.pageNo === 1) || (current === 1 && this.state.examinePageNo === 1)){
|
|
|
this.getPublicReleaseList();
|
|
|
}
|
|
|
-
|
|
|
})
|
|
|
}}>
|
|
|
<AtTabsPane current={this.state.current} index={0} >
|