|
@@ -35,34 +35,45 @@ class Examine extends Component {
|
|
|
list: [],
|
|
|
pageNo: 1,
|
|
|
listState: 'LOADING',
|
|
|
+ starts: {},
|
|
|
+ clockInStarts: '',
|
|
|
+ rangeEndVal: '',
|
|
|
+ rangeStartVal: '',
|
|
|
+ rangeEndMinuteVal: '',
|
|
|
+ rangeStartMinuteVal: '',
|
|
|
|
|
|
examinelist: [],
|
|
|
examinePageNo: 1,
|
|
|
- seePageNo: 1,
|
|
|
- seeList: [],
|
|
|
examineListState: 'LOADING',
|
|
|
- seeListState: 'LOADING',
|
|
|
- starts: {},
|
|
|
- clockInStarts: '',
|
|
|
+ starts1: {},
|
|
|
+ clockInStarts1: '',
|
|
|
+ rangeEndVal1: '',
|
|
|
+ rangeStartVal1: '',
|
|
|
+ rangeEndMinuteVal1: '',
|
|
|
+ rangeStartMinuteVal1: '',
|
|
|
|
|
|
- rangeStartVal2:'',
|
|
|
- rangeEndVal2: '',
|
|
|
+ seeList: [],
|
|
|
+ seePageNo: 1,
|
|
|
+ seeListState: 'LOADING',
|
|
|
starts2: {},
|
|
|
clockInStarts2: '',
|
|
|
- rangeStartVal1: '',
|
|
|
- rangeEndVal1: '',
|
|
|
- starts1: {},
|
|
|
- clockInStarts1: '',
|
|
|
- isPickerRender:false,
|
|
|
- rangeStartMinuteVal:'',
|
|
|
- rangeEndMinuteVal1:'',
|
|
|
- rangeStartMinuteVal1:'',
|
|
|
- rangeEndMinuteVal2:'',
|
|
|
- rangeStartMinuteVal2:'',
|
|
|
- rangeEndMinuteVal:'',
|
|
|
- rangeEndVal:'',
|
|
|
- rangeStartVal:'',
|
|
|
- validDates:''
|
|
|
+ rangeEndVal2: '',
|
|
|
+ rangeStartVal2: '',
|
|
|
+ rangeEndMinuteVal2: '',
|
|
|
+ rangeStartMinuteVal2: '',
|
|
|
+
|
|
|
+ coList: [],
|
|
|
+ coPageNo: 1,
|
|
|
+ coListState: 'LOADING',
|
|
|
+ starts3: {},
|
|
|
+ clockInStarts3: '',
|
|
|
+ rangeEndVal3: '',
|
|
|
+ rangeStartVal3: '',
|
|
|
+ rangeEndMinuteVal3: '',
|
|
|
+ rangeStartMinuteVal3: '',
|
|
|
+
|
|
|
+ isPickerRender: false,
|
|
|
+ validDates: ''
|
|
|
}
|
|
|
this.getPublicReleaseList = this.getPublicReleaseList.bind(this);
|
|
|
this.getMyList = this.getMyList.bind(this);
|
|
@@ -92,7 +103,7 @@ class Examine extends Component {
|
|
|
this.setState({
|
|
|
list: arr
|
|
|
})
|
|
|
- } else if(data.type === 2 && (!isNaN(parseInt(data.index)))) {
|
|
|
+ } else if (data.type === 2 && (!isNaN(parseInt(data.index)))) {
|
|
|
let arr = this.state.seeList.concat([]);
|
|
|
arr[data.index] = {
|
|
|
...arr[data.index],
|
|
@@ -101,6 +112,15 @@ class Examine extends Component {
|
|
|
this.setState({
|
|
|
seeList: arr
|
|
|
})
|
|
|
+ } else if (data.type === 3 && (!isNaN(parseInt(data.index)))) {
|
|
|
+ let arr = this.state.coList.concat([]);
|
|
|
+ arr[data.index] = {
|
|
|
+ ...arr[data.index],
|
|
|
+ ...data
|
|
|
+ }
|
|
|
+ this.setState({
|
|
|
+ coList: arr
|
|
|
+ })
|
|
|
}
|
|
|
})
|
|
|
}
|
|
@@ -122,38 +142,47 @@ class Examine extends Component {
|
|
|
this.onTabTap();
|
|
|
}
|
|
|
}
|
|
|
- onPickerHide(){
|
|
|
+
|
|
|
+ onPickerHide() {
|
|
|
this.setState({
|
|
|
isPickerRender: false,
|
|
|
});
|
|
|
}
|
|
|
|
|
|
-async onSetPickerTime(val){
|
|
|
+ async onSetPickerTime(val) {
|
|
|
let data = val.detail;
|
|
|
- if(this.state.current === 0) {
|
|
|
- await this.setState({
|
|
|
+ if (this.state.current === 0) {
|
|
|
+ await this.setState({
|
|
|
rangeStartMinuteVal: dayjs(data.selectStartTime).format("YYYY-MM-DD"),
|
|
|
rangeEndMinuteVal: dayjs(data.selectEndTime).format("YYYY-MM-DD")
|
|
|
})
|
|
|
await this.getMyList(1);
|
|
|
- }else if(this.state.current === 1){
|
|
|
- await this.setState({
|
|
|
+ } else if (this.state.current === 1) {
|
|
|
+ await this.setState({
|
|
|
rangeStartMinuteVal1: dayjs(data.selectStartTime).format("YYYY-MM-DD"),
|
|
|
rangeEndMinuteVal1: dayjs(data.selectEndTime).format("YYYY-MM-DD")
|
|
|
})
|
|
|
await this.getExamineList(1);
|
|
|
- }else if(this.state.current === 2) {
|
|
|
- await this.setState({
|
|
|
+ } else if (this.state.current === 2) {
|
|
|
+ await this.setState({
|
|
|
rangeStartMinuteVal2: dayjs(data.selectStartTime).format("YYYY-MM-DD"),
|
|
|
rangeEndMinuteVal2: dayjs(data.selectEndTime).format("YYYY-MM-DD")
|
|
|
})
|
|
|
await this.getSeeList(1);
|
|
|
- }
|
|
|
+ } else if (this.state.current === 3) {
|
|
|
+ await this.setState({
|
|
|
+ rangeStartMinuteVal3: dayjs(data.selectStartTime).format("YYYY-MM-DD"),
|
|
|
+ rangeEndMinuteVal3: dayjs(data.selectEndTime).format("YYYY-MM-DD")
|
|
|
+ })
|
|
|
+ await this.getSeeList(1);
|
|
|
+ }
|
|
|
}
|
|
|
+
|
|
|
async onTabTap() {
|
|
|
await this.getMyList(1);
|
|
|
await this.getExamineList(1);
|
|
|
await this.getSeeList(1);
|
|
|
+ await this.grtCoOrder(1);
|
|
|
}
|
|
|
|
|
|
async getPublicReleaseList(lv) {
|
|
@@ -164,9 +193,11 @@ async onSetPickerTime(val){
|
|
|
await this.getExamineList(lv ? this.state.examinePageNo + 1 : 1);
|
|
|
Taro.stopPullDownRefresh();
|
|
|
} else if (this.state.current === 2) {
|
|
|
- console.log(lv,this.state.seePageNo);
|
|
|
await this.getSeeList(lv ? this.state.seePageNo + 1 : 1);
|
|
|
Taro.stopPullDownRefresh();
|
|
|
+ } else if (this.state.current === 3) {
|
|
|
+ await this.grtCoOrder(lv ? this.state.coPageNo + 1 : 1);
|
|
|
+ Taro.stopPullDownRefresh();
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -273,7 +304,6 @@ async onSetPickerTime(val){
|
|
|
}
|
|
|
// 查看
|
|
|
async getSeeList(pageNo) {
|
|
|
- console.log(pageNo);
|
|
|
this.setState({
|
|
|
seeListState: 'LOADING',
|
|
|
})
|
|
@@ -324,6 +354,59 @@ async onSetPickerTime(val){
|
|
|
}
|
|
|
Taro.stopPullDownRefresh();
|
|
|
}
|
|
|
+
|
|
|
+ async grtCoOrder(pageNo) {
|
|
|
+ this.setState({
|
|
|
+ coListState: 'LOADING',
|
|
|
+ })
|
|
|
+ console.log(this.state.clockInStarts3);
|
|
|
+ let data = {
|
|
|
+ pageNo: pageNo,
|
|
|
+ pageSize: 10,
|
|
|
+ type: '3',
|
|
|
+
|
|
|
+ releaseStarts: this.state.rangeStartMinuteVal3 || null,
|
|
|
+ releaseEnds: this.state.rangeEndMinuteVal3 || null,
|
|
|
+ status: isNaN(parseInt(this.state.starts3.id)) ? undefined : String(this.state.starts3.id),
|
|
|
+ clockIn: this.state.clockInStarts3 || null,
|
|
|
+ userName: this.state.searchValue3 || 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({
|
|
|
+ coListState: 'NO_DATA'
|
|
|
+ })
|
|
|
+ } else if (msg.data.totalCount === this.state.coList.length && pageNo !== 1) {
|
|
|
+ Taro.showToast({ title: '没有更多数据了', icon: 'none' });
|
|
|
+ this.setState({
|
|
|
+ coListState: 'NO_MORE_DATA'
|
|
|
+ })
|
|
|
+ } else {
|
|
|
+ if (msg.data.totalCount === (pageNo === 1 ? msg.data.list : this.state.coList.concat(msg.data.list)).length) {
|
|
|
+ this.setState({
|
|
|
+ coListState: 'NO_MORE_DATA'
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }
|
|
|
+ this.setState({
|
|
|
+ coList: pageNo === 1 ? msg.data.list : this.state.coList.concat(msg.data.list),
|
|
|
+ coPageNo: msg.data.pageNo
|
|
|
+ })
|
|
|
+ } else {
|
|
|
+ Taro.showToast({ title: msg.error[0].message, icon: 'none' });
|
|
|
+ this.setState({
|
|
|
+ coListState: msg.error[0].field === '403' ? 'NO_DATA' : 'RELOAD'
|
|
|
+ })
|
|
|
+ }
|
|
|
+ Taro.stopPullDownRefresh();
|
|
|
+ }
|
|
|
+
|
|
|
onPageScroll(event) {
|
|
|
let touchMove = event.scrollTop;
|
|
|
if (touchMove >= 37) {
|
|
@@ -355,14 +438,18 @@ async onSetPickerTime(val){
|
|
|
this.setState({
|
|
|
searchValue: value
|
|
|
})
|
|
|
- } else if(this.state.current === 1) {
|
|
|
+ } else if (this.state.current === 1) {
|
|
|
this.setState({
|
|
|
searchValue1: value
|
|
|
})
|
|
|
- } else if(this.state.current === 2) {
|
|
|
+ } else if (this.state.current === 2) {
|
|
|
this.setState({
|
|
|
searchValue2: value
|
|
|
})
|
|
|
+ } else if (this.state.current === 3) {
|
|
|
+ this.setState({
|
|
|
+ searchValue3: value
|
|
|
+ })
|
|
|
}
|
|
|
}}
|
|
|
onClear={() => {
|
|
@@ -370,14 +457,18 @@ async onSetPickerTime(val){
|
|
|
this.setState({
|
|
|
searchValue: ''
|
|
|
})
|
|
|
- } else if(this.state.current === 1) {
|
|
|
+ } else if (this.state.current === 1) {
|
|
|
this.setState({
|
|
|
searchValue1: ''
|
|
|
})
|
|
|
- } else if(this.state.current === 2) {
|
|
|
+ } else if (this.state.current === 2) {
|
|
|
this.setState({
|
|
|
searchValue2: ''
|
|
|
})
|
|
|
+ } else if (this.state.current === 3) {
|
|
|
+ this.setState({
|
|
|
+ searchValue3: ''
|
|
|
+ })
|
|
|
}
|
|
|
}}
|
|
|
/>
|
|
@@ -385,43 +476,63 @@ async onSetPickerTime(val){
|
|
|
<ScrollView className={this.state.openSearch ? 'searchBottomLOL' : ''} scrollX style={{ width: '100%' }}>
|
|
|
<View className='searchBottom'>
|
|
|
<View className='searchItem' style={{ paddingLeft: '5px' }}>
|
|
|
- <Picker value={this.state.current === 0 ? this.state.starts.id : this.state.current === 1 ? this.state.starts1.id : this.state.starts2.id } range={clockState} rangeKey='title' mode='selector' onChange={(e) => {
|
|
|
- if (this.state.current === 0) {
|
|
|
- this.setState({
|
|
|
- starts: clockState[e.detail.value],
|
|
|
- }, () => {
|
|
|
- this.getPublicReleaseList();
|
|
|
- })
|
|
|
- } else if(this.state.current === 1) {
|
|
|
- this.setState({
|
|
|
- starts1: clockState[e.detail.value],
|
|
|
- }, () => {
|
|
|
- this.getPublicReleaseList();
|
|
|
- })
|
|
|
- } else if(this.state.current === 2){
|
|
|
- this.setState({
|
|
|
- starts2: clockState[e.detail.value],
|
|
|
- }, () => {
|
|
|
- this.getPublicReleaseList();
|
|
|
- })
|
|
|
- }
|
|
|
- }}>
|
|
|
+ <Picker
|
|
|
+ value={this.state.current === 0
|
|
|
+ ? this.state.starts.id : this.state.current === 1
|
|
|
+ ? this.state.starts1.id : this.state.current === 2
|
|
|
+ ? this.state.starts2.id : this.state.current === 3 && this.state.starts3.id}
|
|
|
+ range={clockState} rangeKey='title' mode='selector' onChange={(e) => {
|
|
|
+ if (this.state.current === 0) {
|
|
|
+ this.setState({
|
|
|
+ starts: clockState[e.detail.value],
|
|
|
+ }, () => {
|
|
|
+ this.getPublicReleaseList();
|
|
|
+ })
|
|
|
+ } else if (this.state.current === 1) {
|
|
|
+ this.setState({
|
|
|
+ starts1: clockState[e.detail.value],
|
|
|
+ }, () => {
|
|
|
+ this.getPublicReleaseList();
|
|
|
+ })
|
|
|
+ } else if (this.state.current === 2) {
|
|
|
+ this.setState({
|
|
|
+ starts2: clockState[e.detail.value],
|
|
|
+ }, () => {
|
|
|
+ this.getPublicReleaseList();
|
|
|
+ })
|
|
|
+ } else if (this.state.current === 3) {
|
|
|
+ this.setState({
|
|
|
+ starts3: clockState[e.detail.value],
|
|
|
+ }, () => {
|
|
|
+ this.getPublicReleaseList();
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }}>
|
|
|
{
|
|
|
- (this.state.current === 0 && !this.state.starts.title) || (this.state.current === 1 && !this.state.starts1.title) || (this.state.current === 2 && !this.state.starts2.title) ?
|
|
|
+ (this.state.current === 0 && !this.state.starts.title) ||
|
|
|
+ (this.state.current === 1 && !this.state.starts1.title) ||
|
|
|
+ (this.state.current === 2 && !this.state.starts2.title) ||
|
|
|
+ (this.state.current === 3 && !this.state.starts3.title) ?
|
|
|
<View className='shortValuecontent'>
|
|
|
<View className='selectTitle'>审核状态</View>
|
|
|
<View className='iconContent'><AtIcon value='chevron-down' size='10' color='#FFFFFF' /></View>
|
|
|
</View> :
|
|
|
<View className='shortValuecontent'>
|
|
|
<View className='selectValue'>
|
|
|
- {this.state.current === 0 ? this.state.starts.title : this.state.current === 1 ? this.state.starts1.title : this.state.starts2.title}
|
|
|
+ {this.state.current === 0
|
|
|
+ ? this.state.starts.title : this.state.current === 1
|
|
|
+ ? this.state.starts1.title : this.state.current === 2
|
|
|
+ ? this.state.starts2.title : this.state.current === 3 && this.state.starts3.title}
|
|
|
</View>
|
|
|
<View className='iconContent' />
|
|
|
</View>
|
|
|
}
|
|
|
</Picker>
|
|
|
{
|
|
|
- (this.state.current === 0 && this.state.starts.title) || (this.state.current === 1 && this.state.starts1.title) || (this.state.current === 2 && this.state.starts2.title) ?
|
|
|
+ (this.state.current === 0 && this.state.starts.title) ||
|
|
|
+ (this.state.current === 1 && this.state.starts1.title) ||
|
|
|
+ (this.state.current === 2 && this.state.starts2.title) ||
|
|
|
+ (this.state.current === 3 && this.state.starts3.title) ?
|
|
|
<View className='searchSelectContent'>
|
|
|
<View className='selectIcon' onClick={(e) => {
|
|
|
e.stopPropagation();
|
|
@@ -431,18 +542,24 @@ async onSetPickerTime(val){
|
|
|
}, () => {
|
|
|
this.getPublicReleaseList();
|
|
|
})
|
|
|
- } else if(this.state.current === 1) {
|
|
|
+ } else if (this.state.current === 1) {
|
|
|
this.setState({
|
|
|
starts1: {}
|
|
|
}, () => {
|
|
|
this.getPublicReleaseList();
|
|
|
})
|
|
|
- }else if(this.state.current === 2) {
|
|
|
+ } else if (this.state.current === 2) {
|
|
|
this.setState({
|
|
|
starts2: {}
|
|
|
}, () => {
|
|
|
this.getPublicReleaseList();
|
|
|
})
|
|
|
+ } else if (this.state.current === 3) {
|
|
|
+ this.setState({
|
|
|
+ starts3: {}
|
|
|
+ }, () => {
|
|
|
+ this.getPublicReleaseList();
|
|
|
+ })
|
|
|
}
|
|
|
}}>
|
|
|
<AtIcon value='close-circle' size='10' color='#FFFFFF' />
|
|
@@ -451,51 +568,81 @@ async onSetPickerTime(val){
|
|
|
}
|
|
|
</View>
|
|
|
<View className='searchItem' >
|
|
|
- <Picker value={this.state.current === 0 ? this.state.clockInStarts : this.state.current === 1 ? this.state.clockInStarts1 : this.state.clockInStarts2} range={[
|
|
|
- '未打卡',
|
|
|
- '已打卡'
|
|
|
- ]} mode='selector' onChange={(e) => {
|
|
|
- if (this.state.current === 0) {
|
|
|
- this.setState({
|
|
|
- clockInStarts: String(e.detail.value)
|
|
|
- }, () => {
|
|
|
- this.getPublicReleaseList();
|
|
|
- })
|
|
|
- } else if(this.state.current === 1){
|
|
|
- this.setState({
|
|
|
- clockInStarts1: String(e.detail.value)
|
|
|
- }, () => {
|
|
|
- this.getPublicReleaseList();
|
|
|
- })
|
|
|
- } else if(this.state.current === 2) {
|
|
|
- this.setState({
|
|
|
- clockInStarts2: String(e.detail.value)
|
|
|
- }, () => {
|
|
|
- this.getPublicReleaseList();
|
|
|
- })
|
|
|
- }
|
|
|
- }}>
|
|
|
+ <Picker
|
|
|
+ value={this.state.current === 0
|
|
|
+ ? this.state.clockInStarts : this.state.current === 1
|
|
|
+ ? this.state.clockInStarts1 : this.state.current === 2
|
|
|
+ ? this.state.clockInStarts2 : this.state.current === 3 && this.state.clockInStarts3}
|
|
|
+ range={[
|
|
|
+ '未打卡',
|
|
|
+ '已打卡'
|
|
|
+ ]} mode='selector' onChange={(e) => {
|
|
|
+ if (this.state.current === 0) {
|
|
|
+ this.setState({
|
|
|
+ clockInStarts: String(e.detail.value)
|
|
|
+ }, () => {
|
|
|
+ this.getPublicReleaseList();
|
|
|
+ })
|
|
|
+ } else if (this.state.current === 1) {
|
|
|
+ this.setState({
|
|
|
+ clockInStarts1: String(e.detail.value)
|
|
|
+ }, () => {
|
|
|
+ this.getPublicReleaseList();
|
|
|
+ })
|
|
|
+ } else if (this.state.current === 2) {
|
|
|
+ this.setState({
|
|
|
+ clockInStarts2: String(e.detail.value)
|
|
|
+ }, () => {
|
|
|
+ this.getPublicReleaseList();
|
|
|
+ })
|
|
|
+ } else if (this.state.current === 3) {
|
|
|
+ this.setState({
|
|
|
+ clockInStarts3: String(e.detail.value)
|
|
|
+ }, () => {
|
|
|
+ this.getPublicReleaseList();
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }}>
|
|
|
{
|
|
|
- (this.state.current === 0 && !this.state.clockInStarts) || (this.state.current === 1 && !this.state.clockInStarts1) || (this.state.current === 2 && !this.state.clockInStarts2) ?
|
|
|
+ (this.state.current === 0 && !this.state.clockInStarts) ||
|
|
|
+ (this.state.current === 1 && !this.state.clockInStarts1) ||
|
|
|
+ (this.state.current === 2 && !this.state.clockInStarts2) ||
|
|
|
+ (this.state.current === 3 && !this.state.clockInStarts3) ?
|
|
|
<View className='shortValuecontent'>
|
|
|
<View className='selectTitle'>打卡状态</View>
|
|
|
<View className='iconContent'><AtIcon value='chevron-down' size='10' color='#FFFFFF' /></View>
|
|
|
</View> :
|
|
|
<View className='shortValuecontent'>
|
|
|
<View className='selectValue'>
|
|
|
- {this.state.current === 0 ? (
|
|
|
- this.state.clockInStarts === '1' ? '已打卡' :
|
|
|
- this.state.clockInStarts === '0' ? '未打卡' : ''
|
|
|
- ) : this.state.current === 1 ? (this.state.clockInStarts1 === '1' ? '已打卡' :
|
|
|
- this.state.clockInStarts1 === '0' ? '未打卡' : '') : this.state.clockInStarts2 === '1' ? '已打卡' :
|
|
|
- this.state.clockInStarts2 === '0' ? '未打卡' : ''}
|
|
|
+ {
|
|
|
+ this.state.current === 0
|
|
|
+ ? (
|
|
|
+ this.state.clockInStarts === '1' ? '已打卡' :
|
|
|
+ this.state.clockInStarts === '0' ? '未打卡' : ''
|
|
|
+ ) :
|
|
|
+ this.state.current === 1
|
|
|
+ ? (
|
|
|
+ this.state.clockInStarts1 === '1' ? '已打卡' :
|
|
|
+ this.state.clockInStarts1 === '0' ? '未打卡' : ''
|
|
|
+ ) :
|
|
|
+ this.state.current === 2
|
|
|
+ ? (
|
|
|
+ this.state.clockInStarts2 === '1' ? '已打卡' :
|
|
|
+ this.state.clockInStarts3 === '0' ? '未打卡' : ''
|
|
|
+ ) :
|
|
|
+ this.state.clockInStarts3 === '1' ? '已打卡' :
|
|
|
+ this.state.clockInStarts4 === '0' ? '未打卡' : ''
|
|
|
+ }
|
|
|
</View>
|
|
|
<View className='iconContent' />
|
|
|
</View>
|
|
|
}
|
|
|
</Picker>
|
|
|
{
|
|
|
- (this.state.current === 0 && this.state.clockInStarts) || (this.state.current === 1 && this.state.clockInStarts1) || (this.state.current === 2 && this.state.clockInStarts2) ?
|
|
|
+ (this.state.current === 0 && this.state.clockInStarts) ||
|
|
|
+ (this.state.current === 1 && this.state.clockInStarts1) ||
|
|
|
+ (this.state.current === 2 && this.state.clockInStarts2) ||
|
|
|
+ (this.state.current === 3 && this.state.clockInStarts3) ?
|
|
|
<View className='searchSelectContent'>
|
|
|
<View className='selectIcon' onClick={(e) => {
|
|
|
e.stopPropagation();
|
|
@@ -505,18 +652,24 @@ async onSetPickerTime(val){
|
|
|
}, () => {
|
|
|
this.getPublicReleaseList();
|
|
|
})
|
|
|
- } else if(this.state.current === 1){
|
|
|
+ } else if (this.state.current === 1) {
|
|
|
this.setState({
|
|
|
clockInStarts1: '',
|
|
|
}, () => {
|
|
|
this.getPublicReleaseList();
|
|
|
})
|
|
|
- } else if(this.state.current === 2) {
|
|
|
+ } else if (this.state.current === 2) {
|
|
|
this.setState({
|
|
|
clockInStarts2: '',
|
|
|
}, () => {
|
|
|
this.getPublicReleaseList();
|
|
|
})
|
|
|
+ } else if (this.state.current === 3) {
|
|
|
+ this.setState({
|
|
|
+ clockInStarts3: '',
|
|
|
+ }, () => {
|
|
|
+ this.getPublicReleaseList();
|
|
|
+ })
|
|
|
}
|
|
|
}}>
|
|
|
<AtIcon value='close-circle' size='10' color='#FFFFFF' />
|
|
@@ -526,30 +679,37 @@ async onSetPickerTime(val){
|
|
|
</View>
|
|
|
{/* */}
|
|
|
{/* 多选时间框 */}
|
|
|
- <View className='searchItem' onClick={()=>{
|
|
|
+ <View className='searchItem' onClick={() => {
|
|
|
this.setState({
|
|
|
- isPickerRender:true
|
|
|
+ isPickerRender: true
|
|
|
})
|
|
|
}}>
|
|
|
- <View>
|
|
|
- {
|
|
|
- (this.state.current === 0 && !this.state.rangeStartMinuteVal) || (this.state.current === 1 && !this.state.rangeStartMinuteVal1) ||
|
|
|
- (this.state.current === 2 && !this.state.rangeStartMinuteVal2) ?
|
|
|
- <View className='valuecontent' style={{width:'200px'}}>
|
|
|
- <View className='selectTitle' style={{paddingLeft:'50px'}}>开始及结束时间</View>
|
|
|
- <View className='iconContent' style={{paddingLeft:'20px'}}><AtIcon value='chevron-down' size='10' color='#FFFFFF' /></View>
|
|
|
+ <View>
|
|
|
+ {
|
|
|
+ (this.state.current === 0 && !this.state.rangeStartMinuteVal) ||
|
|
|
+ (this.state.current === 1 && !this.state.rangeStartMinuteVal1) ||
|
|
|
+ (this.state.current === 2 && !this.state.rangeStartMinuteVal2) ||
|
|
|
+ (this.state.current === 3 && !this.state.rangeStartMinuteVal3) ?
|
|
|
+ <View className='valuecontent' style={{ width: '200px' }}>
|
|
|
+ <View className='selectTitle' style={{ paddingLeft: '50px' }}>开始及结束时间</View>
|
|
|
+ <View className='iconContent' style={{ paddingLeft: '20px' }}><AtIcon value='chevron-down' size='10' color='#FFFFFF' /></View>
|
|
|
</View> :
|
|
|
- <View className='valuecontent' style={{width:'200px'}}>
|
|
|
+ <View className='valuecontent' style={{ width: '200px' }}>
|
|
|
<View className='selectValue' >
|
|
|
- {this.state.current === 0 ? this.state.rangeStartMinuteVal +"~"+ this.state.rangeEndMinuteVal : this.state.current === 1 ? this.state.rangeStartMinuteVal1 +"~"+ this.state.rangeEndMinuteVal1 : this.state.rangeStartMinuteVal2 +"~"+ this.state.rangeEndMinuteVal2}
|
|
|
+ {this.state.current === 0
|
|
|
+ ? this.state.rangeStartMinuteVal + "~" + this.state.rangeEndMinuteVal : this.state.current === 1
|
|
|
+ ? this.state.rangeStartMinuteVal1 + "~" + this.state.rangeEndMinuteVal1 : this.state.current === 2
|
|
|
+ ? this.state.rangeStartMinuteVal2 + "~" + this.state.rangeEndMinuteVal2 : this.state.rangeStartMinuteVal3 + "~" + this.state.rangeEndMinuteVal3}
|
|
|
</View>
|
|
|
<View className='iconContent' />
|
|
|
</View>
|
|
|
}
|
|
|
- </View>
|
|
|
- {
|
|
|
- (this.state.current === 0 && this.state.rangeStartMinuteVal) || (this.state.current === 1 && this.state.rangeStartMinuteVal1)
|
|
|
- || (this.state.current === 2 && this.state.rangeStartMinuteVal2) ?
|
|
|
+ </View>
|
|
|
+ {
|
|
|
+ (this.state.current === 0 && this.state.rangeStartMinuteVal) ||
|
|
|
+ (this.state.current === 1 && this.state.rangeStartMinuteVal1) ||
|
|
|
+ (this.state.current === 2 && this.state.rangeStartMinuteVal2) ||
|
|
|
+ (this.state.current === 3 && this.state.rangeStartMinuteVal3) ?
|
|
|
<View className='searchSelectContent'>
|
|
|
<View className='selectIcon' onClick={(e) => {
|
|
|
e.stopPropagation();
|
|
@@ -560,56 +720,63 @@ async onSetPickerTime(val){
|
|
|
}, () => {
|
|
|
this.getPublicReleaseList();
|
|
|
})
|
|
|
- } else if(this.state.current === 1) {
|
|
|
+ } else if (this.state.current === 1) {
|
|
|
this.setState({
|
|
|
rangeStartMinuteVal1: '',
|
|
|
rangeEndMinuteVal1: '',
|
|
|
}, () => {
|
|
|
this.getPublicReleaseList();
|
|
|
})
|
|
|
- } else if(this.state.current === 2) {
|
|
|
+ } else if (this.state.current === 2) {
|
|
|
this.setState({
|
|
|
rangeStartMinuteVal2: '',
|
|
|
rangeEndMinuteVal2: '',
|
|
|
}, () => {
|
|
|
this.getPublicReleaseList();
|
|
|
})
|
|
|
+ } else if (this.state.current === 3) {
|
|
|
+ this.setState({
|
|
|
+ rangeStartMinuteVal3: '',
|
|
|
+ rangeEndMinuteVal3: '',
|
|
|
+ }, () => {
|
|
|
+ this.getPublicReleaseList();
|
|
|
+ })
|
|
|
}
|
|
|
}}>
|
|
|
<AtIcon value='close-circle' size='10' color='#FFFFFF' />
|
|
|
</View>
|
|
|
</View> : null
|
|
|
}
|
|
|
- </View>
|
|
|
+ </View>
|
|
|
<timePicker
|
|
|
- config={{
|
|
|
- endDate: true,
|
|
|
- column: "minute",
|
|
|
- dateLimit: false,
|
|
|
- // initStartTime: "2019-01-01 12:32:44", //默认开始时间
|
|
|
- // initEndTime: "2019-12-01 12:32:44", //默认结束时间
|
|
|
- limitStartTime: dayjs().subtract(3,'year').format('YYYY-MM-DD '),
|
|
|
- limitEndTime: dayjs().add(3,'year').format('YYYY-MM-DD ')
|
|
|
- }}
|
|
|
- isPartition
|
|
|
- pickerShow={this.state.isPickerRender}
|
|
|
- onconditionaljudgment={(v)=>{
|
|
|
- // let a = dayjs(dayjs(v.detail.endTime).second(0).format('YYYY-MM-DD'));
|
|
|
- // let b = dayjs(dayjs().second(0).format('YYYY-MM-DD'))
|
|
|
- // if(a.isBefore(b)){
|
|
|
- // Taro.showToast({
|
|
|
- // title:'结束时间不能小于当前时间',
|
|
|
- // icon:'none'
|
|
|
- // })
|
|
|
- // v.detail.setLv(false);
|
|
|
- // }
|
|
|
- }}
|
|
|
- onhidepicker={()=>{
|
|
|
- this.onPickerHide()
|
|
|
- }}
|
|
|
- onsetpickertime={(v)=>{
|
|
|
- this.onSetPickerTime(v)
|
|
|
- }}>
|
|
|
+ config={{
|
|
|
+ endDate: true,
|
|
|
+ column: "minute",
|
|
|
+ dateLimit: false,
|
|
|
+ // initStartTime: "2019-01-01 12:32:44", //默认开始时间
|
|
|
+ // initEndTime: "2019-12-01 12:32:44", //默认结束时间
|
|
|
+ limitStartTime: dayjs().subtract(3, 'year').format('YYYY-MM-DD '),
|
|
|
+ limitEndTime: dayjs().add(3, 'year').format('YYYY-MM-DD ')
|
|
|
+ }}
|
|
|
+ isPartition
|
|
|
+ pickerShow={this.state.isPickerRender}
|
|
|
+ onconditionaljudgment={(v) => {
|
|
|
+ // let a = dayjs(dayjs(v.detail.endTime).second(0).format('YYYY-MM-DD'));
|
|
|
+ // let b = dayjs(dayjs().second(0).format('YYYY-MM-DD'))
|
|
|
+ // if(a.isBefore(b)){
|
|
|
+ // Taro.showToast({
|
|
|
+ // title:'结束时间不能小于当前时间',
|
|
|
+ // icon:'none'
|
|
|
+ // })
|
|
|
+ // v.detail.setLv(false);
|
|
|
+ // }
|
|
|
+ }}
|
|
|
+ onhidepicker={() => {
|
|
|
+ this.onPickerHide()
|
|
|
+ }}
|
|
|
+ onsetpickertime={(v) => {
|
|
|
+ this.onSetPickerTime(v)
|
|
|
+ }}>
|
|
|
</timePicker>
|
|
|
{/* <View className='searchItem'>
|
|
|
<Picker mode='date' onChange={(e) => {
|
|
@@ -748,15 +915,21 @@ async onSetPickerTime(val){
|
|
|
</View>
|
|
|
</ScrollView>
|
|
|
</View>
|
|
|
- <AtTabs current={this.state.current || 0} tabList={[{ title: '我的' }, { title: '审核' }, { title: '查看' }]} onClick={(current) => {
|
|
|
- this.setState({
|
|
|
- current,
|
|
|
- }, () => {
|
|
|
- if ((current === 0 && this.state.pageNo === 1) || (current === 1 && this.state.examinePageNo === 1) || (current === 2 && this.state.seePageNo === 1)) {
|
|
|
- this.getPublicReleaseList();
|
|
|
- }
|
|
|
- })
|
|
|
- }}>
|
|
|
+ <AtTabs
|
|
|
+ current={this.state.current || 0}
|
|
|
+ tabList={[{ title: '我的' }, { title: '审核' }, { title: '查看' }, { title: '协单' }]}
|
|
|
+ onClick={(current) => {
|
|
|
+ this.setState({
|
|
|
+ current,
|
|
|
+ }, () => {
|
|
|
+ if ((current === 0 && this.state.pageNo === 1) ||
|
|
|
+ (current === 1 && this.state.examinePageNo === 1) ||
|
|
|
+ (current === 2 && this.state.seePageNo === 1) ||
|
|
|
+ (current === 3 && this.state.coPageNo === 1)) {
|
|
|
+ this.getPublicReleaseList();
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }}>
|
|
|
<AtTabsPane current={this.state.current} index={0} >
|
|
|
<MyList
|
|
|
type={0}
|
|
@@ -787,6 +960,16 @@ async onSetPickerTime(val){
|
|
|
this.getPublicReleaseList(true);
|
|
|
}} />
|
|
|
</AtTabsPane>
|
|
|
+ <AtTabsPane current={this.state.current} index={3}>
|
|
|
+ <MyList
|
|
|
+ type={3}
|
|
|
+ seeView={this.state.current}
|
|
|
+ list={this.state.coList}
|
|
|
+ listState={this.state.coListState}
|
|
|
+ onRefresh={() => {
|
|
|
+ this.getPublicReleaseList(true);
|
|
|
+ }} />
|
|
|
+ </AtTabsPane>
|
|
|
</AtTabs>
|
|
|
</View>
|
|
|
)
|