Commit 21073c40 by Giang Tran

fix bug method

parent fbce9686
...@@ -97,18 +97,25 @@ const FeePro = (props) => { ...@@ -97,18 +97,25 @@ const FeePro = (props) => {
<TouchableOpacity <TouchableOpacity
onPress={() => Alert.alert(e.note)} onPress={() => Alert.alert(e.note)}
style={{flex: 1, flexDirection: 'row'}}> style={{flex: 1, flexDirection: 'row'}}>
<Text> <View style={{flexDirection: 'row'}}>
{' '} <Text>
{e.name}+{e.type_data} {' '}
</Text> {e.name}+{e.type_data}
{e.note ? ( </Text>
<View style={{marginLeft: 5}}>
<Image {e.note ? (
style={{width: 20, height: 20}} <View style={{marginLeft: 5}}>
source={R.images.iconNote} <TouchableOpacity
/> onPress={() => Alert.alert(e.note)}
</View> style={{flex: 1, flexDirection: 'row'}}>
) : null} <Image
style={{width: 20, height: 20}}
source={R.images.iconNote}
/>
</TouchableOpacity>
</View>
) : null}
</View>
</TouchableOpacity> </TouchableOpacity>
<View <View
style={{ style={{
......
...@@ -14,21 +14,40 @@ const Item = (props) => { ...@@ -14,21 +14,40 @@ const Item = (props) => {
return ( return (
<TouchableOpacity onPress={() => navigate.navigate(METHODPAYDETAIL, item)}> <TouchableOpacity onPress={() => navigate.navigate(METHODPAYDETAIL, item)}>
<View style={styles.container}> <View style={styles.container}>
<Block flex={1} row center padding={[10, 20]}> <Block flex={1} row center padding={[10, 10]}>
<Image source={{uri: item.bank.logo}} style={styles.imgIcon} /> <Image source={{uri: item.bank.logo}} style={styles.imgIcon} />
<Block padding={[0, 10]}> <Block padding={[0, 10]}>
<Text style={styles.txtBig}>{item.title}</Text> <Text style={styles.txtBig}>{item.title}</Text>
<Block space={'between'} row flex={1}>
<Block> <Block space={'between'} flex={1}>
<AppText style={styles.txtLeft} i18nKey={'OwnerAccount'} /> <View
<Text style={styles.txtLeft}>STK</Text> style={{flex: 1, flexDirection: 'row', alignItems: 'center'}}>
<AppText style={styles.txtLeft} i18nKey={'Branch'} /> <View style={{width: 80}}>
</Block> <AppText style={styles.txtLeft} i18nKey={'OwnerAccount'} />
<Block> </View>
<Text style={styles.txtRight}>{item.account_name}</Text> <View style={{flex: 1}}>
<Text style={styles.txtRight}>{item.account_no}</Text> <Text style={styles.txtRight}>{item.account_name}</Text>
<Text style={styles.txtRight}>{item.branch_name}</Text> </View>
</Block> </View>
<View
style={{flex: 1, flexDirection: 'row', alignItems: 'center'}}>
<View style={{width: 80}}>
<Text style={styles.txtLeft}>STK</Text>
</View>
<View style={{flex: 1}}>
<Text style={styles.txtRight}>{item.account_no}</Text>
</View>
</View>
<View
style={{flex: 1, flexDirection: 'row', alignItems: 'center'}}>
<View style={{width: 80}}>
<AppText style={styles.txtLeft} i18nKey={'Branch'} />
</View>
<View style={{flex: 1}}>
<Text style={styles.txtRight}>{item.branch_name}</Text>
</View>
</View>
</Block> </Block>
</Block> </Block>
</Block> </Block>
......
...@@ -81,7 +81,7 @@ export default { ...@@ -81,7 +81,7 @@ export default {
Search: 'Tìm kiếm', Search: 'Tìm kiếm',
NullDataSearch: 'Không tìm thấy kết quả', NullDataSearch: 'Không tìm thấy kết quả',
Note_cqg: Note_cqg:
' Lưu ý:Phí được tính theo tháng và mức giá này được áp dụng đến hết ngày 30/12/2021.', 'Lưu ý: Phí được tính theo tháng và mức giá này được áp dụng đến hết ngày 30/12/2021.',
Close: 'Đóng', Close: 'Đóng',
No_Internet: 'Không có kết nốt Internet', No_Internet: 'Không có kết nốt Internet',
...@@ -289,5 +289,5 @@ export default { ...@@ -289,5 +289,5 @@ export default {
FirstEscrow: 'Ký quỹ ban đầu (VNĐ) ', FirstEscrow: 'Ký quỹ ban đầu (VNĐ) ',
WarnMinReqestWithdraw: 'Số tiền rút phải lớn hơn 1 triệu đồng', WarnMinReqestWithdraw: 'Số tiền rút phải lớn hơn 1 triệu đồng',
Overtime: 'Mã OTP hết hạn sử dụng', Overtime: 'Mã OTP hết hạn sử dụng',
LoginSessionEnd: "Hết phiên đăng nhập, vui lòng đăng nhập lại", LoginSessionEnd: 'Hết phiên đăng nhập, vui lòng đăng nhập lại',
}; };
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment