Toggle navigation
Toggle navigation
This project
Loading...
Sign in
mobile
/
yh_vendor
·
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
于良
9 years ago
Commit
efd141ba94a09ea73a0e789dc221099e17f55e25
2 parents
4095f6d4
46a6e184
Merge branch 'local' into develop
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
ios/YH_Vendor/Info.plist
js/components/chart/ChartView.js
js/reducers/refoundStatistics/refoundStatisticsReducer.js
js/reducers/saleStatistics/saleStatisticsReducer.js
ios/YH_Vendor/Info.plist
View file @
efd141b
...
...
@@ -21,7 +21,7 @@
<key>
CFBundleSignature
</key>
<string>
????
</string>
<key>
CFBundleVersion
</key>
<string>
1.0.0.201606
1704
</string>
<string>
1.0.0.201606
2101
</string>
<key>
Fabric
</key>
<dict>
<key>
APIKey
</key>
...
...
js/components/chart/ChartView.js
View file @
efd141b
...
...
@@ -39,7 +39,7 @@ export default class ChartView extends Component {
}
}
let yString =
0
;
let yString =
''
;
let yLength = yData.length;
if (yLength !== 0) {
for (var i = 0; i < yLength; i++) {
...
...
js/reducers/refoundStatistics/refoundStatisticsReducer.js
View file @
efd141b
...
...
@@ -34,7 +34,7 @@ export default function refoundStatisticsReducer(state = initialState, action) {
for
(
var
i
=
0
;
i
<
list
.
length
;
i
++
)
{
let
item
=
action
.
payload
.
list
[
i
];
sixMonths
.
push
(
moment
(
item
.
dateId
,
'YYYYMM'
).
format
(
'MM月'
));
trendInSixMonth
.
push
(
item
.
all
Num
s
);
trendInSixMonth
.
push
(
item
.
all
Amount
s
);
}
}
...
...
js/reducers/saleStatistics/saleStatisticsReducer.js
View file @
efd141b
...
...
@@ -52,10 +52,10 @@ export default function saleStatisticsReducer(state = initialState, action) {
for
(
let
i
=
0
;
i
<
list
.
length
;
i
++
)
{
let
item
=
action
.
payload
.
list
[
i
];
sevenDays
.
push
(
moment
(
item
.
dateId
).
format
(
'MM.DD'
));
trendInSevenDays
.
push
(
item
.
all
Num
s
);
trendInSevenDays
.
push
(
item
.
all
Amount
s
);
}
}
let
amountRate
=
additionInfo
.
allAmountRate
||
0
;
let
countRate
=
additionInfo
.
allNumberRate
||
0
;
let
amountHasTrendData
=
additionInfo
.
allAmountRateFlag
;
...
...
Please
register
or
login
to post a comment