...
|
...
|
@@ -109,6 +109,7 @@ export default class OpenPageInputCell extends React.Component { |
|
|
onChange={this._updateCellParams}
|
|
|
style={[styles.textInput,{width:inputBoxWidth}]}
|
|
|
maxLength={cellParams.maxLength}
|
|
|
underlineColorAndroid="transparent"
|
|
|
onFocus={() => {
|
|
|
this.props.onFocus && this.props.onFocus(refId);
|
|
|
}}
|
...
|
...
|
@@ -158,6 +159,8 @@ let styles = StyleSheet.create({ |
|
|
titleAndInputContainer: {
|
|
|
flexDirection: 'row',
|
|
|
height: 44 * DEVICE_WIDTH_RATIO,
|
|
|
alignItems: 'center',
|
|
|
justifyContent: 'center',
|
|
|
},
|
|
|
title: {
|
|
|
lineHeight: Math.ceil(20 * DEVICE_WIDTH_RATIO),
|
...
|
...
|
@@ -168,12 +171,13 @@ let styles = StyleSheet.create({ |
|
|
width: 211 * DEVICE_WIDTH_RATIO,
|
|
|
height: 20 * DEVICE_WIDTH_RATIO,
|
|
|
fontSize: 12 * DEVICE_WIDTH_RATIO,
|
|
|
marginTop: 12 * DEVICE_WIDTH_RATIO,
|
|
|
padding: 0,
|
|
|
marginTop: 4 * DEVICE_WIDTH_RATIO,
|
|
|
},
|
|
|
touchContainer:{
|
|
|
width: 20* DEVICE_WIDTH_RATIO,
|
|
|
height: 20 * DEVICE_WIDTH_RATIO,
|
|
|
marginTop: 12 * DEVICE_WIDTH_RATIO,
|
|
|
marginTop: 4 * DEVICE_WIDTH_RATIO,
|
|
|
marginLeft: 12 * DEVICE_WIDTH_RATIO,
|
|
|
},
|
|
|
questionCardNo: {
|
...
|
...
|
|