李志伟 3 年之前
父節點
當前提交
b5de54b573
共有 3 個文件被更改,包括 3 次插入3 次删除
  1. 1
    1
      src/pages/login/index.jsx
  2. 1
    1
      src/pages/moreOrder/index.jsx
  3. 1
    1
      src/store/models/person.js

+ 1
- 1
src/pages/login/index.jsx 查看文件

@@ -116,7 +116,7 @@ export default withLayout((props) => {
116 116
         <View className='title2'>欢迎进入农机手端小程序!</View>
117 117
         <View className='loginCell'>
118 118
           <View className='loginHeader'>+86</View>
119
-          <Input type='number' maxlength='11' placeholder='请输入手机号' value={phone} onBlur={handlePhone} />
119
+          <Input type='number' maxlength='11' placeholder='请输入手机号' value={phone} onInput={handlePhone} />
120 120
           <Button  className={['loginAction',dsb?'qCodeActive':'']} disabled={dsb} onClick={dsb?'':changeqCode}>{qCodeBtn}</Button>
121 121
         </View>
122 122
         <View className='loginCell'>

+ 1
- 1
src/pages/moreOrder/index.jsx 查看文件

@@ -74,7 +74,7 @@ export default withLayout(() => {
74 74
       </View>
75 75
       <View className='index-container'>
76 76
         <ScrollView scrollY style={{ height: '100%' }}>
77
-          {currentTab}
77
+          {/* {currentTab} */}
78 78
           <MyCard />
79 79
           <MyCard />
80 80
           <MyCard />

+ 1
- 1
src/store/models/person.js 查看文件

@@ -9,7 +9,7 @@ export default () => {
9 9
   const login = (params) => {
10 10
     signIn(params).then((res) => {
11 11
       const { person: taPerson,  sessionKey: skey } = res;
12
-      taPerson.phone=null
12
+      // taPerson.phone=null
13 13
       setPerson(taPerson);
14 14
       setSessionKey(skey);
15 15
     })