Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
I
InvestCustomer
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Giang Tran
InvestCustomer
Commits
21073c40
Commit
21073c40
authored
Jun 03, 2021
by
Giang Tran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix bug method
parent
fbce9686
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
52 additions
and
26 deletions
+52
-26
FeePro.js
src/Screens/Account/PacrtCQG/FeePro.js
+19
-12
Item.js
src/Screens/MethodPay/Item.js
+31
-12
vn.js
src/helper/i18/locales/vn.js
+2
-2
No files found.
src/Screens/Account/PacrtCQG/FeePro.js
View file @
21073c40
...
...
@@ -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
=
{{
...
...
src/Screens/MethodPay/Item.js
View file @
21073c40
...
...
@@ -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
,
2
0
]}
>
<
Block
flex
=
{
1
}
row
center
padding
=
{[
10
,
1
0
]}
>
<
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
>
...
...
src/helper/i18/locales/vn.js
View file @
21073c40
...
...
@@ -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'
,
};
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment