Authored by 孙凯

update UI review by chenling

... ... @@ -78,7 +78,7 @@ class ShareDetailContainer extends Component {
productSkn,
union_type: unionType,
}
let paramsString = queryString.stringify(params, {encode: true});
let paramsString = encodeURIComponent(JSON.stringify(params));
qrCode = host + '/wechat/miniapp/img-check.jpg?param=' + paramsString + '&miniQrType=7';
}else {
qrCode = host + '/wechat/miniapp/img-check.jpg?param=' + productSkn + '&miniQrType=7';
... ...
... ... @@ -382,7 +382,7 @@ export default class NewArrival extends React.PureComponent {
<Image resizeMode={'contain'} source={require('../../image/shoppingbag.png')}/>
</TouchableOpacity>
{cart_goods_count > 0 ? <View style={styles.cart_goods_countView} >
{cart_goods_count > 0 ? <View style={styles.cart_goods_countView} >
<Text style={styles.cart_goods_count}>
{cart_goods_count}
</Text>
... ... @@ -410,11 +410,15 @@ export default class NewArrival extends React.PureComponent {
}}
>
{this.state.showBackToTopButtonType == 0 ?
<ImageBackground style={{flex:1,width: 40,height: 40,}} resizeMode={'contain'} source={require('../../image/page.png')}>
<Text style={{textAlign: 'center',marginTop: 5,fontSize: 11,color: '#FFFFFF'}}>{this.state.sCurrentPage}</Text>
<Text style={{textAlign: 'center',marginTop: 2,fontSize: 11,color: '#FFFFFF'}}>{pageCount}</Text>
</ImageBackground>
: <Image style={{flex:1}} resizeMode={'contain'} source={require('../../image/backtop.png')}/>}
<View style={{flex:1,width: 40,height: 40}}>
<Image resizeMode={'contain'} source={require('../../image/page.png')}>
</Image>
<View style={{width: 40,height: 40,position: 'absolute'}}>
<Text style={{textAlign: 'center',marginTop: 5,fontSize: 11,color: '#FFFFFF',}}>{this.state.sCurrentPage}</Text>
<Text style={{textAlign: 'center',marginTop: 2,fontSize: 11,color: '#FFFFFF',}}>{pageCount}</Text>
</View>
</View>
: <Image style={{position: 'absolute'}} resizeMode={'contain'} source={require('../../image/backtop.png')}/>}
</TouchableOpacity>: null
}
... ...