|
@@ -289,6 +289,18 @@ export default class Grid extends React.Component {
|
|
|
>
|
|
|
库存:{ScaleUtil(item[this.props.invenKey])}(件)
|
|
|
</Text> */}
|
|
|
+ <View
|
|
|
+ style = {{
|
|
|
+ flexDirection: 'row',
|
|
|
+ justifyContent: 'space-between',
|
|
|
+ }}>
|
|
|
+ <Text style={{fontSize:12}}>
|
|
|
+ {'型号:'+(item.model?(item.model.length>10?item.model.substr(0,10):item.model):"")}
|
|
|
+ </Text>
|
|
|
+ <Text style={{fontSize:12}}>
|
|
|
+ {'规格:'+(item.specification?(item.specification.split("/")[0]+"/"+item.basicUnitName):"")}
|
|
|
+ </Text>
|
|
|
+ </View>
|
|
|
<View
|
|
|
style={{
|
|
|
flexDirection: 'row',
|
|
@@ -349,11 +361,12 @@ export default class Grid extends React.Component {
|
|
|
{this.props.titleBool ? (
|
|
|
<View>
|
|
|
<TouchableOpacity
|
|
|
- style={{ backgroundColor: '#FFF' }}
|
|
|
+ // style={{ backgroundColor: '#FFF' }}
|
|
|
onPress={() => {
|
|
|
this.props.moreTouch()
|
|
|
}}
|
|
|
style={{
|
|
|
+ backgroundColor: '#FFF',
|
|
|
flexDirection: 'row',
|
|
|
justifyContent: 'space-between',
|
|
|
padding: 10,
|