...
|
...
|
@@ -78,7 +78,6 @@ export default class BankCard extends Component { |
|
|
<TextInput
|
|
|
ref="nameInput"
|
|
|
style={[styles.wordText, {width: 200, color: '#444444'}]}
|
|
|
maxLength={4}
|
|
|
placeholder="请输入持卡人姓名"
|
|
|
placeholderTextColor='#b0b0b0'
|
|
|
underlineColorAndroid='transparent'
|
...
|
...
|
@@ -88,7 +87,7 @@ export default class BankCard extends Component { |
|
|
<View style={styles.inputView}>
|
|
|
<Text style={[styles.wordText, {width: 76, color: '#444444'}]}>身份证号</Text>
|
|
|
<TextInput
|
|
|
ref="nameInput"
|
|
|
ref="idInput"
|
|
|
style={[styles.wordText, {width: 200, color: '#444444'}]}
|
|
|
maxLength={18}
|
|
|
placeholder="请输入身份证号"
|
...
|
...
|
@@ -114,7 +113,7 @@ export default class BankCard extends Component { |
|
|
<View style={styles.inputView}>
|
|
|
<Text style={[styles.wordText, {width: 76, color: '#444444'}]}>银行卡号</Text>
|
|
|
<TextInput
|
|
|
ref="nameInput"
|
|
|
ref="cardInput"
|
|
|
style={[styles.wordText, {width: 200, color: '#444444'}]}
|
|
|
maxLength={19}
|
|
|
placeholder="请输入银行卡号"
|
...
|
...
|
|