Your Name 1 year ago
parent
commit
a0212f78fa
2 changed files with 8 additions and 6 deletions
  1. 1
    1
      config/prod.js
  2. 7
    5
      src/pages/login/components/Bottom.jsx

+ 1
- 1
config/prod.js View File

7
     HOST: '"https://wmcj.huoshannews.com"',
7
     HOST: '"https://wmcj.huoshannews.com"',
8
     AD_IMAGE: '"https://h5.njyunzhi.com/images/citizen_banner.png"',
8
     AD_IMAGE: '"https://h5.njyunzhi.com/images/citizen_banner.png"',
9
     DEFAULT_POS: '"116.3476917447715,31.409912844296578"', // 霍山县人民政府 gcj02
9
     DEFAULT_POS: '"116.3476917447715,31.409912844296578"', // 霍山县人民政府 gcj02
10
-    VERSION: '"1.1.28-20230822"',
10
+    VERSION: '"1.1.29-20240224"',
11
   },
11
   },
12
   mini: {},
12
   mini: {},
13
   h5: {
13
   h5: {

+ 7
- 5
src/pages/login/components/Bottom.jsx View File

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