|
@@ -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>
|
|
|
</>
|
|
|
)
|