|
@@ -1,7 +1,7 @@
|
|
|
import { Component } from 'react'
|
|
|
import Taro from '@tarojs/taro'
|
|
|
import { connect } from 'react-redux'
|
|
|
-import {View, Input} from '@tarojs/components'
|
|
|
+import {View, Input, Checkbox} from '@tarojs/components'
|
|
|
import {login} from '../../utils/servers/servers';
|
|
|
import {setOpenId} from '../../utils/servers/servers';
|
|
|
|
|
@@ -18,10 +18,6 @@ import 'taro-ui/dist/style/components/modal.scss';
|
|
|
|
|
|
import './index.less'
|
|
|
|
|
|
-const list = [
|
|
|
-
|
|
|
-]
|
|
|
-
|
|
|
@connect(({ counter }) => ({
|
|
|
counter
|
|
|
}), (dispatch) => ({
|
|
@@ -42,10 +38,14 @@ class Login extends Component {
|
|
|
username:'',
|
|
|
password:'',
|
|
|
isOpened:false,
|
|
|
- openedType:0
|
|
|
+ openedType:0,
|
|
|
+ usernameList:Taro.getStorageSync('usernameList') || [],
|
|
|
+ rememberPassword:true
|
|
|
}
|
|
|
this.login = this.login.bind(this);
|
|
|
this.authorization = this.authorization.bind(this);
|
|
|
+ this.setUsernameList = this.setUsernameList.bind(this);
|
|
|
+ this.getUsernameList = this.getUsernameList.bind(this);
|
|
|
}
|
|
|
|
|
|
componentDidShow () {
|
|
@@ -142,6 +142,7 @@ class Login extends Component {
|
|
|
code:res.code,
|
|
|
}).then(v=>{
|
|
|
if(v.error.length === 0){
|
|
|
+ this.setUsernameList(this.state.username,this.state.password);
|
|
|
Taro.eventCenter.trigger('getStorageSync')
|
|
|
Taro.switchTab({
|
|
|
url: '/pages/punchClock/index',
|
|
@@ -159,6 +160,7 @@ class Login extends Component {
|
|
|
}
|
|
|
});
|
|
|
}else{
|
|
|
+ this.setUsernameList(this.state.username,this.state.password);
|
|
|
Taro.eventCenter.trigger('getStorageSync')
|
|
|
Taro.switchTab({
|
|
|
url: '/pages/punchClock/index',
|
|
@@ -172,9 +174,53 @@ class Login extends Component {
|
|
|
})
|
|
|
}
|
|
|
|
|
|
+ setUsernameList(username,password){
|
|
|
+ if(!this.state.rememberPassword){
|
|
|
+ let usernameList = Taro.getStorageSync('usernameList') || [];
|
|
|
+ let index = usernameList.findIndex(v=>v.username === username);
|
|
|
+ if(index !== -1){
|
|
|
+ usernameList.splice(index,1)
|
|
|
+ }
|
|
|
+ Taro.setStorageSync('usernameList', usernameList);
|
|
|
+ }else{
|
|
|
+ let usernameList = Taro.getStorageSync('usernameList') || [];
|
|
|
+ let index = usernameList.findIndex(v=>v.username === username);
|
|
|
+ if(index === -1){
|
|
|
+ usernameList.push({
|
|
|
+ username,
|
|
|
+ password
|
|
|
+ })
|
|
|
+ }else{
|
|
|
+ usernameList[index]={
|
|
|
+ username,
|
|
|
+ password
|
|
|
+ }
|
|
|
+ }
|
|
|
+ Taro.setStorageSync('usernameList', usernameList);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ getUsernameList(value = this.state.username){
|
|
|
+ let usernameList = Taro.getStorageSync('usernameList') || [];
|
|
|
+ let arr = [];
|
|
|
+ for(let i of usernameList){
|
|
|
+ if(i.username.indexOf(value) !== -1){
|
|
|
+ arr.push(i)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ this.setState({
|
|
|
+ usernameList:arr,
|
|
|
+ isopenUsernameList:true
|
|
|
+ })
|
|
|
+ }
|
|
|
+
|
|
|
render () {
|
|
|
return (
|
|
|
- <View className='login'>
|
|
|
+ <View className='login' onClick={()=>{
|
|
|
+ this.setState({
|
|
|
+ isopenUsernameList:false
|
|
|
+ })
|
|
|
+ }}>
|
|
|
<NavBar
|
|
|
extClass='NavBar'
|
|
|
title='科德集团'
|
|
@@ -189,17 +235,54 @@ class Login extends Component {
|
|
|
<View className='loginContent'>
|
|
|
<View className='loginItem'>
|
|
|
<AtIcon value='user' size='20' color='#999999'/>
|
|
|
- <Input
|
|
|
- style={{marginLeft:'15px',width:'100%'}}
|
|
|
- type='text'
|
|
|
- placeholder='请输入您的系统账户'
|
|
|
- value={this.state.username}
|
|
|
- onInput={(v)=>{
|
|
|
- this.setState({
|
|
|
- username: v.detail.value
|
|
|
- })
|
|
|
- }}
|
|
|
- />
|
|
|
+ <View className='usernameContent'>
|
|
|
+ <Input
|
|
|
+ style={{marginLeft:'15px',width:'100%'}}
|
|
|
+ type='text'
|
|
|
+ placeholder='请输入您的系统账户'
|
|
|
+ value={this.state.username}
|
|
|
+ onInput={(v)=>{
|
|
|
+ this.setState({
|
|
|
+ username: v.detail.value
|
|
|
+ })
|
|
|
+ this.getUsernameList(v.detail.value);
|
|
|
+ }}
|
|
|
+ onFocus={()=>{
|
|
|
+ this.getUsernameList();
|
|
|
+ }}
|
|
|
+ onBlur={()=>{
|
|
|
+ // this.setState({
|
|
|
+ // isopenUsernameList:false
|
|
|
+ // })
|
|
|
+ }}
|
|
|
+ />
|
|
|
+ </View>
|
|
|
+ </View>
|
|
|
+ <View className='usernameListContent'>
|
|
|
+ {this.state.isopenUsernameList && this.state.usernameList.length >0 ? <View className='usernameList'>
|
|
|
+ {
|
|
|
+ this.state.usernameList.map((v,k)=>(
|
|
|
+ <View key={k} className='usernameItem' onClick={()=>{
|
|
|
+ this.setState({
|
|
|
+ username:v.username,
|
|
|
+ password:v.password,
|
|
|
+ isopenUsernameList:false
|
|
|
+ })
|
|
|
+ console.log({
|
|
|
+ username:v.username,
|
|
|
+ password:v.password,
|
|
|
+ isopenUsernameList:false
|
|
|
+ })
|
|
|
+ }}>
|
|
|
+ <AtIcon value='user' size='20' color='#c6c4c4'/>
|
|
|
+ <View className='value'>
|
|
|
+ <View className='name'>{v.username}</View>
|
|
|
+ <View className='password'>*******</View>
|
|
|
+ </View>
|
|
|
+ </View>
|
|
|
+ ))
|
|
|
+ }
|
|
|
+ </View> : null}
|
|
|
</View>
|
|
|
<View className='loginItem'>
|
|
|
<AtIcon value='lock' size='20' color='#999999'/>
|
|
@@ -215,6 +298,13 @@ class Login extends Component {
|
|
|
}}
|
|
|
/>
|
|
|
</View>
|
|
|
+ <View className='rememberPassword'>
|
|
|
+ <Checkbox value='选中' checked={this.state.rememberPassword} onClick={()=>{
|
|
|
+ this.setState({
|
|
|
+ rememberPassword:!this.state.rememberPassword
|
|
|
+ })
|
|
|
+ }}>记住密码</Checkbox>
|
|
|
+ </View>
|
|
|
<AtButton type='primary' circle loading={this.state.loading} onClick={this.authorization}>登录</AtButton>
|
|
|
<View className='tips'>
|
|
|
暂无账号?请联系管理员进行添加
|