Commit 21073c40 by Giang Tran

fix bug method

parent fbce9686
......@@ -97,18 +97,25 @@ const FeePro = (props) => {
<TouchableOpacity
onPress={() => Alert.alert(e.note)}
style={{flex: 1, flexDirection: 'row'}}>
<Text>
{' '}
{e.name}+{e.type_data}
</Text>
{e.note ? (
<View style={{marginLeft: 5}}>
<Image
style={{width: 20, height: 20}}
source={R.images.iconNote}
/>
</View>
) : null}
<View style={{flexDirection: 'row'}}>
<Text>
{' '}
{e.name}+{e.type_data}
</Text>
{e.note ? (
<View style={{marginLeft: 5}}>
<TouchableOpacity
onPress={() => Alert.alert(e.note)}
style={{flex: 1, flexDirection: 'row'}}>
<Image
style={{width: 20, height: 20}}
source={R.images.iconNote}
/>
</TouchableOpacity>
</View>
) : null}
</View>
</TouchableOpacity>
<View
style={{
......
......@@ -14,21 +14,40 @@ const Item = (props) => {
return (
<TouchableOpacity onPress={() => navigate.navigate(METHODPAYDETAIL, item)}>
<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} />
<Block padding={[0, 10]}>
<Text style={styles.txtBig}>{item.title}</Text>
<Block space={'between'} row flex={1}>
<Block>
<AppText style={styles.txtLeft} i18nKey={'OwnerAccount'} />
<Text style={styles.txtLeft}>STK</Text>
<AppText style={styles.txtLeft} i18nKey={'Branch'} />
</Block>
<Block>
<Text style={styles.txtRight}>{item.account_name}</Text>
<Text style={styles.txtRight}>{item.account_no}</Text>
<Text style={styles.txtRight}>{item.branch_name}</Text>
</Block>
<Block space={'between'} flex={1}>
<View
style={{flex: 1, flexDirection: 'row', alignItems: 'center'}}>
<View style={{width: 80}}>
<AppText style={styles.txtLeft} i18nKey={'OwnerAccount'} />
</View>
<View style={{flex: 1}}>
<Text style={styles.txtRight}>{item.account_name}</Text>
</View>
</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>
......
......@@ -81,7 +81,7 @@ export default {
Search: 'Tìm kiếm',
NullDataSearch: 'Không tìm thấy kết quả',
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',
No_Internet: 'Không có kết nốt Internet',
......@@ -289,5 +289,5 @@ export default {
FirstEscrow: 'Ký quỹ ban đầu (VNĐ) ',
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',
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