|
@@ -1,7 +1,8 @@
|
1
|
1
|
import React from 'react';
|
2
|
2
|
import { View, Image, Button } from '@tarojs/components';
|
3
|
|
-import Icon from '@/assets/image/WeChat.png';
|
|
3
|
+// import Icon from '@/assets/image/WeChat.png';
|
4
|
4
|
import { useModel } from '@/store';
|
|
5
|
+import { Icon } from '@antmjs/vantui';
|
5
|
6
|
import style from './bottom.module.less';
|
6
|
7
|
|
7
|
8
|
export default (props) => {
|
|
@@ -16,15 +17,16 @@ export default (props) => {
|
16
|
17
|
|
17
|
18
|
return (
|
18
|
19
|
<View>
|
19
|
|
- <View className={style['txt-box2']}>—— 没有账号?微信登录 ——</View>
|
|
20
|
+ <View className={style['txt-box2']}>—— 没有账号?手机号快捷登录 ——</View>
|
20
|
21
|
<View className={style['img-box2']}>
|
21
|
22
|
<Button openType="getPhoneNumber" onGetPhoneNumber={onGetPhoneNumber}>
|
22
|
|
- <Image className={style['img-wechat']}
|
|
23
|
+ {/* <Image className={style['img-wechat']}
|
23
|
24
|
src={Icon}
|
24
|
|
- />
|
|
25
|
+ /> */}
|
|
26
|
+ <Icon name="phone" size="32px" color='green' style={{ marginTop: '10px' }} />
|
25
|
27
|
</Button>
|
26
|
28
|
</View>
|
27
|
|
- <View className={style['wechat-login']}>微信登录</View>
|
|
29
|
+ <View className={style['wechat-login']}>手机号快捷登录</View>
|
28
|
30
|
</View>
|
29
|
31
|
)
|
30
|
32
|
}
|