|
@@ -1,7 +1,7 @@
|
|
import { Component } from 'react'
|
|
import { Component } from 'react'
|
|
import Taro from '@tarojs/taro'
|
|
import Taro from '@tarojs/taro'
|
|
import { connect } from 'react-redux'
|
|
import { connect } from 'react-redux'
|
|
-import {View, Input, Checkbox, Image} from '@tarojs/components'
|
|
|
|
|
|
+import {View, Input, Image} from '@tarojs/components'
|
|
import {login,getWorkingHours,setOpenId} from '../../utils/servers/servers';
|
|
import {login,getWorkingHours,setOpenId} from '../../utils/servers/servers';
|
|
|
|
|
|
import { add, minus, asyncAdd } from '../../actions/counter'
|
|
import { add, minus, asyncAdd } from '../../actions/counter'
|
|
@@ -17,6 +17,8 @@ import 'taro-ui/dist/style/components/loading.scss';
|
|
import 'taro-ui/dist/style/components/icon.scss';
|
|
import 'taro-ui/dist/style/components/icon.scss';
|
|
import 'taro-ui/dist/style/components/modal.scss';
|
|
import 'taro-ui/dist/style/components/modal.scss';
|
|
|
|
|
|
|
|
+import selectIcon from '../../image/select.png' ;
|
|
|
|
+
|
|
import './index.less'
|
|
import './index.less'
|
|
|
|
|
|
@connect(({ counter }) => ({
|
|
@connect(({ counter }) => ({
|
|
@@ -317,11 +319,14 @@ class Login extends Component {
|
|
/>
|
|
/>
|
|
</View>
|
|
</View>
|
|
<View className='rememberPassword'>
|
|
<View className='rememberPassword'>
|
|
- <Checkbox value='选中' checked={this.state.rememberPassword} onClick={()=>{
|
|
|
|
|
|
+ <View className='selectContent' onClick={()=>{
|
|
this.setState({
|
|
this.setState({
|
|
rememberPassword:!this.state.rememberPassword
|
|
rememberPassword:!this.state.rememberPassword
|
|
})
|
|
})
|
|
- }}>记住密码</Checkbox>
|
|
|
|
|
|
+ }}>
|
|
|
|
+ <Image src={selectIcon} className='selectIcon' style={{visibility:this.state.rememberPassword ? "visible" : "hidden"}}/>
|
|
|
|
+ </View>
|
|
|
|
+ 记住密码
|
|
</View>
|
|
</View>
|
|
<AtButton type='primary' circle loading={this.state.loading} onClick={this.authorization}>登录</AtButton>
|
|
<AtButton type='primary' circle loading={this.state.loading} onClick={this.authorization}>登录</AtButton>
|
|
<View className='tips'>
|
|
<View className='tips'>
|