Toggle navigation
Toggle navigation
This project
Loading...
Sign in
mobile
/
YH_RNComponent
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Plain Diff
Browse Files
Authored by
孙凯
7 years ago
Commit
78b7210028b86b3c300af077442b0d49029a91c9
2 parents
238a915a
eead8ee6
Merge branch '6.7.0' into 6.6.0-0.54.4
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
4 additions
and
5 deletions
js/alliance/components/Alliance.js
js/alliance/components/BannerSwiper.js
js/alliance/components/SureModal.js
js/alliance/reducers/alliance/allianceActions.js
js/alliance/reducers/alliance/allianceReducer.js
js/alliance/components/Alliance.js
View file @
78b7210
...
...
@@ -91,7 +91,7 @@ export default class Alliance extends Component {
<
View
>
<
View
style
=
{
styles
.
orderView
}
>
<
Text
style
=
{[
styles
.
hasWithDrawText
,
{
fontWeight
:
'bold'
}]}
>
最近订单
<
/Text
>
<
Text
style
=
{
styles
.
orderTipsText
}
>
当天订单第
二
天显示
<
/Text
>
<
Text
style
=
{
styles
.
orderTipsText
}
>
当天订单第
2
天显示
<
/Text
>
<
/View
>
<
View
style
=
{
styles
.
titleBottomLine
}
/
>
{
this
.
props
.
recentlyOrder
.
recentlyOrder_list
.
toArray
().
length
>
0
?
null
:
...
...
js/alliance/components/BannerSwiper.js
View file @
78b7210
...
...
@@ -66,7 +66,7 @@ export default class BannerSwiper extends React.Component {
showsButtons
=
{
false
}
loop
=
{
true
}
autoplay
=
{
true
}
autoplayTimeout
=
{
2
}
autoplayTimeout
=
{
3
}
paginationStyle
=
{{
bottom
:
8
}}
width
=
{
width
}
height
=
{
swiperHeight
}
...
...
js/alliance/components/SureModal.js
View file @
78b7210
...
...
@@ -30,7 +30,7 @@ export default class SureModal extends React.Component {
<
View
style
=
{
styles
.
modalContainer
}
>
<
View
style
=
{
styles
.
modalView
}
>
<
View
style
=
{
styles
.
confirmTitleContainer
}
>
<
Text
style
=
{
styles
.
confirmTitle
}
>
申请
提现
后不能取消,确定要提现吗?
<
/Text
>
<
Text
style
=
{
styles
.
confirmTitle
}
>
申请后不能取消,确定要提现吗?
<
/Text
>
<
/View
>
<
View
style
=
{{
width
:
'100%'
,
height
:
0.5
,
backgroundColor
:
'#e0e0e0'
}}
/
>
<
View
style
=
{
styles
.
confirmBtnContainer
}
>
...
...
js/alliance/reducers/alliance/allianceActions.js
View file @
78b7210
...
...
@@ -287,7 +287,6 @@ export function getAddSettlement() {
dispatch
(
addSettlementRequest
());
return
new
AllianceService
(
app
.
host
).
fetchAddSettlement
(
uid
)
.
then
(
json
=>
{
json
.
isShow
=
true
;
dispatch
(
addSettlementSuccess
(
json
));
})
.
catch
(
error
=>
{
...
...
js/alliance/reducers/alliance/allianceReducer.js
View file @
78b7210
...
...
@@ -105,7 +105,7 @@ export default function couponReducer(state = initialState, action) {
case
ADD_SETTLEMENT_SUCCESS
:
{
return
state
.
setIn
([
'addSettlement'
,
'isFetching'
],
true
)
.
set
(
'showWithdrawalDialog'
,
action
.
payload
.
isShow
)
.
set
(
'showWithdrawalDialog'
,
true
)
.
setIn
([
'addSettlement'
,
'error'
],
null
);
}
...
...
Please
register
or
login
to post a comment