|
@@ -1,9 +1,10 @@
|
1
|
1
|
import { Component } from 'react'
|
2
|
|
-import { View, Text, Input, Image } from '@tarojs/components'
|
3
|
|
-import { Form, FormItem, Button } from '@antmjs/vantui'
|
|
2
|
+import { View, Input, Image } from '@tarojs/components'
|
|
3
|
+import { Form, Button } from '@antmjs/vantui'
|
4
|
4
|
import logo from '../../assets/image/logo.png';
|
5
|
5
|
import user from '../../assets/image/user.png';
|
6
|
6
|
import password from '../../assets/image/password.png';
|
|
7
|
+import WeChat from '../../assets/image/WeChat.png';
|
7
|
8
|
import './index.less'
|
8
|
9
|
|
9
|
10
|
export default (props) => {
|
|
@@ -14,8 +15,7 @@ export default (props) => {
|
14
|
15
|
src={logo}
|
15
|
16
|
/>
|
16
|
17
|
</View>
|
17
|
|
-
|
18
|
|
- <Text className='txt-1'>欢迎登录霍山文明创建</Text>
|
|
18
|
+ <View className='index-txt'>欢迎登录霍山文明创城</View>
|
19
|
19
|
<Form className='form'>
|
20
|
20
|
<View className='index-3'>
|
21
|
21
|
<Image src={user} className='img-2' />账号<Input className='input-1' placeholder='请输入您的登录账号' />
|
|
@@ -23,21 +23,25 @@ export default (props) => {
|
23
|
23
|
<View className='index-3'>
|
24
|
24
|
<Image src={password} className='img-2' />密码<Input className='input-1' placeholder='请输入您的登录密码' />
|
25
|
25
|
</View>
|
26
|
|
- {/* <FormItem label='账号' className='item'>
|
27
|
|
- <Input className='input-1' placeholder='请输入您的登录账号' />
|
28
|
|
- </FormItem>
|
29
|
|
- <FormItem label='证件'>
|
30
|
|
- <Input placeholder='请输入您的登录密码' />
|
31
|
|
- </FormItem> */}
|
|
26
|
+ <Button
|
|
27
|
+ className='btn-1'
|
|
28
|
+ >
|
|
29
|
+ 忘记密码?
|
|
30
|
+ </Button>
|
32
|
31
|
<Button
|
33
|
32
|
type='primary'
|
34
|
|
- className='btn'
|
|
33
|
+ className='btn-2'
|
35
|
34
|
>
|
36
|
35
|
登录
|
37
|
36
|
</Button>
|
38
|
37
|
</Form>
|
39
|
|
- <Text className='txt-2'>——其他登录方式——</Text>
|
40
|
|
- <Text className='txt-3'>微信登录</Text>
|
|
38
|
+ <View className='index-txt2'>——其他登录方式——</View>
|
|
39
|
+ <View className='index-4'>
|
|
40
|
+ <Image className='img-3'
|
|
41
|
+ src={WeChat}
|
|
42
|
+ />
|
|
43
|
+ </View>
|
|
44
|
+ <View className='index-txt3'>微信登录</View>
|
41
|
45
|
</View>
|
42
|
46
|
)
|
43
|
47
|
}
|