Commit c5caafa5 by Giang Tran

update screen customer support

parent 5d9c9e78
...@@ -7,8 +7,9 @@ import {HEIGHTXD} from '../../Config/Functions'; ...@@ -7,8 +7,9 @@ import {HEIGHTXD} from '../../Config/Functions';
const styles = StyleSheet.create({ const styles = StyleSheet.create({
container: { container: {
marginHorizontal: 20,
marginBottom: 10, marginBottom: 10,
width: '100%',
height: HEIGHTXD(400), height: HEIGHTXD(400),
marginTop: 25, marginTop: 25,
borderBottomColor: R.colors.borderGray, borderBottomColor: R.colors.borderGray,
...@@ -33,25 +34,27 @@ const SwiperComponent = (props) => { ...@@ -33,25 +34,27 @@ const SwiperComponent = (props) => {
return ( return (
<View style={styles.container}> <View style={styles.container}>
<Swiper <Swiper
dotColor={R.colors.color777}
activeDotColor={R.colors.white}
paginationStyle={{bottom: 5}} paginationStyle={{bottom: 5}}
style={styles.wrapper} style={styles.wrapper}
loop={true} loop={true}
autoplay={true}> autoplay={true}>
<View style={{marginHorizontal: 20, borderRadius: 10}}> <View style={{borderRadius: 10}}>
<Image <Image
style={{height: HEIGHTXD(400), width: '100%', borderRadius: 10}} style={{height: HEIGHTXD(400), width: '100%', borderRadius: 10}}
source={{uri: props.listImage[0].url}} source={{uri: props.listImage[0].url}}
resizeMode={'cover'} resizeMode={'cover'}
/> />
</View> </View>
<View style={{marginHorizontal: 20, borderRadius: 10}}> <View style={{borderRadius: 10}}>
<Image <Image
style={{height: HEIGHTXD(400), width: '100%', borderRadius: 10}} style={{height: HEIGHTXD(400), width: '100%', borderRadius: 10}}
source={{uri: props.listImage[1].url}} source={{uri: props.listImage[1].url}}
resizeMode={'cover'} resizeMode={'cover'}
/> />
</View> </View>
<View style={{marginHorizontal: 20, borderRadius: 10}}> <View style={{borderRadius: 10}}>
<Image <Image
style={{height: HEIGHTXD(400), width: '100%', borderRadius: 10}} style={{height: HEIGHTXD(400), width: '100%', borderRadius: 10}}
source={{uri: props.listImage[2].url}} source={{uri: props.listImage[2].url}}
......
import React from 'react'; import React, {useState, useEffect} from 'react';
import {View, Text} from 'react-native'; import {View, Text, StyleSheet} from 'react-native';
import R from '../../assets/R';
import AppText from '../../components/AppText'; import AppText from '../../components/AppText';
import TextMulti from '../../components/Input/TextMulti';
import I18n from '../../helper/i18/i18n';
import HeaderBack from '../../components/Header/HeaderBack'; import HeaderBack from '../../components/Header/HeaderBack';
import {getFontXD, HEIGHTXD, WIDTHXD} from '../../Config/Functions';
import {TouchableOpacity} from 'react-native-gesture-handler';
const ServiceCustomerView = (props) => { const ServiceCustomerView = (props) => {
const [content, setContent] = useState('');
const [data, setData] = useState({
company: 'CÔNG TY CP TƯ VẤN ĐẦU TƯ DCV.',
address:
'Tầng L2, Tòa Nhà Mỹ Sơn, Số 62 Nguyễn Huy Tưởng, Phường Thanh Xuân Trung, Quận Thanh Xuân, Thành Phố Hà Nội',
email: 'sale@dcv.vn',
website: 'https://dcvinvest.com',
hotline: '024.9999.8669',
time:
'Thứ 2 - Thứ 6: 08:00 - 18:00 \nThứ 7: 10:00 - 14:00 \nChủ nhật: 09:00 - 12:00',
});
return ( return (
<View style={{flex: 1}}> <View style={{flex: 1}}>
<HeaderBack title={'CustomerCare'} /> <HeaderBack title={'CustomerCare'} />
<View <View
style={{ style={{
flex: 1, flex: 1,
paddingHorizontal: 20, paddingHorizontal: 10,
paddingTop: 10,
}}>
<AppText i18nKey={'HaNoiOffice'} style={styles.title} />
<Text style={styles.txtContent}>{data.company}</Text>
<AppText i18nKey={'Address'} style={styles.title} />
<Text style={styles.txtContent}>{data.address}</Text>
<View style={styles.row}>
<AppText i18nKey={'Email'} style={styles.title} />
<Text style={styles.txtContent}> {data.email}</Text>
</View>
<View style={styles.row}>
<Text style={styles.title}>Website: </Text>
<Text style={styles.txtContent}>{data.website}</Text>
</View>
<AppText i18nKey={'HotLine'} style={styles.title} />
<Text style={styles.txtContent}>{data.hotline}</Text>
<AppText i18nKey={'WorkingTime'} style={styles.title} />
<Text style={styles.txtContent}>{data.time}</Text>
<View style={{marginTop: 20, flex: 1}}>
<TextMulti
onChangeText={(val) => setContent(val)}
title={I18n.t('ContentRequire')}
/>
</View>
<View
style={{
justifyContent: 'center', justifyContent: 'center',
alignItems: 'center', alignItems: 'center',
marginBottom: 20,
}}> }}>
<AppText <TouchableOpacity style={styles.btn}>
i18nKey={'Features_develop'} <AppText style={styles.txtBtn} i18nKey={'Send'} />
style={{ </TouchableOpacity>
fontSize: 18, </View>
fontWeight: 'bold',
textAlign: 'center',
}}
/>
</View> </View>
</View> </View>
); );
}; };
const styles = StyleSheet.create({
title: {
fontSize: getFontXD(42),
color: R.colors.main,
marginTop: 5,
},
txtContent: {
fontSize: getFontXD(42),
marginTop: 5,
},
row: {
flexDirection: 'row',
},
btn: {
width: WIDTHXD(500),
height: HEIGHTXD(120),
justifyContent: 'center',
alignItems: 'center',
backgroundColor: R.colors.main,
borderRadius: 5,
},
txtBtn: {
fontSize: getFontXD(46),
color: R.colors.white,
fontWeight: 'bold',
},
});
export default ServiceCustomerView; export default ServiceCustomerView;
...@@ -61,8 +61,9 @@ export default { ...@@ -61,8 +61,9 @@ export default {
Status: 'Status', Status: 'Status',
Phone: 'Phone', Phone: 'Phone',
Enter_Phone: 'Enter phone', Enter_Phone: 'Enter phone',
Address: 'Address', Address: 'Address:',
Update: 'Update', Update: 'Update',
Send: 'Send',
ContactCode: 'Contact code', ContactCode: 'Contact code',
TraddingAccountName: 'Tradding account name', TraddingAccountName: 'Tradding account name',
TraddingAccountNumber: 'Tradding account number', TraddingAccountNumber: 'Tradding account number',
...@@ -220,4 +221,8 @@ export default { ...@@ -220,4 +221,8 @@ export default {
'A new version of DCVInvest is available. Update now to continue using and experiencing the latest system features!', 'A new version of DCVInvest is available. Update now to continue using and experiencing the latest system features!',
FirstPriceRange: 'First price range', FirstPriceRange: 'First price range',
ExpandPriceRange: 'Expand price range', ExpandPriceRange: 'Expand price range',
HaNoiOffice: 'Ha Noi Office:',
HotLine: 'HotLine:',
WorkingTime: 'Working time:',
ContentRequire: 'Content require:',
}; };
...@@ -64,7 +64,7 @@ export default { ...@@ -64,7 +64,7 @@ export default {
Male: 'Giới tính', Male: 'Giới tính',
Status: 'Trạng thái', Status: 'Trạng thái',
Phone: 'Điện thoại', Phone: 'Điện thoại',
Address: 'Địa chỉ', Address: 'Địa chỉ:',
Update: 'Cập nhật', Update: 'Cập nhật',
ContactCode: 'Mã hợp đồng', ContactCode: 'Mã hợp đồng',
TraddingAccountName: 'Tên tài khoản giao dịch', TraddingAccountName: 'Tên tài khoản giao dịch',
...@@ -104,7 +104,7 @@ export default { ...@@ -104,7 +104,7 @@ export default {
Here: 'Tại đây', Here: 'Tại đây',
Open_account_demo: 'Bạn có thể mở tài khoản thử', Open_account_demo: '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ý',
...@@ -115,6 +115,7 @@ export default { ...@@ -115,6 +115,7 @@ export default {
Verify_code: 'Mã xác thực:', Verify_code: 'Mã xác thực:',
Continue: 'Tiếp tục', Continue: 'Tiếp tục',
Re_send: 'Gửi lại', Re_send: 'Gửi lại',
Send: 'Gửi',
Copied: 'Đã sao chép!', Copied: 'Đã sao chép!',
Please_fill_in: 'Vui lòng điền ', Please_fill_in: 'Vui lòng điền ',
RequestFilter: 'Lọc yêu cầu', RequestFilter: 'Lọc yêu cầu',
...@@ -221,7 +222,10 @@ export default { ...@@ -221,7 +222,10 @@ export default {
Due_Date: 'Lịch đáo hạn', Due_Date: 'Lịch đáo hạn',
Enter_Phone: 'Nhập số điện thoại', Enter_Phone: 'Nhập số điện thoại',
Version: 'Phiên bản', Version: 'Phiên bản',
UpdateDescription: 'Đã có phiên bản DCVInvest mới. Cập nhật ngay để tiếp tục sử dụng và trải nghiệm những tính năng mới nhất của hệ thống!', UpdateDescription:
FirstPriceRange:'Giới hạn giá ban đầu', 'Đã có phiên bản DCVInvest mới. Cập nhật ngay để tiếp tục sử dụng và trải nghiệm những tính năng mới nhất của hệ thống!',
ExpandPriceRange:'Giới hạn giá mở rộng', HaNoiOffice: 'Văn phòng Hà Nội:',
HotLine: 'Đường dây nóng:',
WorkingTime: 'Thời gian làm việc:',
ContentRequire: 'Nội dung yêu cầu:',
}; };
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