Commit 9d447a40 by Giang Tran

edit item seartch

parent 1d45f96b
......@@ -14,6 +14,7 @@ const Item = (props) => {
status_name,
created,
sponsor_name,
level,
} = props.item;
const navigation = useNavigation();
......@@ -45,6 +46,12 @@ const Item = (props) => {
<Text style={{fontSize: getFontXD(36)}}>{sponsor_name}</Text>
</View>
)}
{props.isSearch == false ? null : (
<View style={styles.row}>
<AppText style={styles.txtTitle} i18nKey={'level'} />
<Text style={{fontSize: getFontXD(36)}}>{level}</Text>
</View>
)}
</View>
</TouchableOpacity>
);
......
......@@ -95,7 +95,11 @@ const Level1 = (props) => {
onLoadMore();
}}
renderItem={({item, index}) => (
<Item isEnd={data.length - 1 == index ? true : false} item={item} />
<Item
isSearch={true}
isEnd={data.length - 1 == index ? true : false}
item={item}
/>
)}
/>
) : (
......
......@@ -81,6 +81,7 @@ const Level1 = (props) => {
}}
renderItem={({item, index}) => (
<Item
isSearch={false}
level={props.type}
isEnd={data.length - 1 == index ? true : false}
item={item}
......
......@@ -59,7 +59,7 @@ export default {
PriceTable: 'Bảng giá',
Chart: 'Biểu đồ',
Calendar: 'Lịch thị trường',
Fullname: 'Họ và tên',
Fullname: 'Họ và tên:',
Birth: 'Ngày sinh',
Male: 'Giới tính',
Status: 'Trạng thái:',
......@@ -104,7 +104,7 @@ export default {
Here: 'Tại đây',
Open_account_demo: 'Hoặc bạn có thể mở tài khoản thử',
Features_develop: 'Không có dữ liệu!',
Email: 'Email',
Email: 'Email:',
Password: 'Mật khẩu',
Login: 'Đăng nhập',
Register: 'Đăng ký',
......@@ -341,13 +341,13 @@ export default {
level2: 'Cấp 2',
level3: 'Cấp 3',
SearchPartner: 'Tìm kiếm đối tác',
level: 'Cấp',
level: 'Cấp:',
NamePartner: 'Tên đối tác',
Opened: 'Đã mở',
Unopen: 'Chưa mở',
OpenAccountExchange: 'Mở TKGD:',
DateJoin: 'Ngày tham gia:',
Sponsor: 'Người giới thiệu',
CountSponsors: 'Số người giới thiệu',
TotalCommission: 'Tổng tiền hoa hồng',
Sponsor: 'Người giới thiệu:',
CountSponsors: 'Số người giới thiệu:',
TotalCommission: 'Tổng tiền hoa hồng:',
};
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