Commit 9d447a40 by Giang Tran

edit item seartch

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