Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYWAP
·
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
Email Patches
Plain Diff
Browse Files
Authored by
weiqingting
9 years ago
Commit
29ab865be29d4c05f327c0a9ae70d3fd92ae8689
1 parent
75d852d8
完善
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
web-static/js/order/save.js
web-static/js/order/save.js
View file @
29ab865
...
...
@@ -102,21 +102,20 @@ var Order = {
var
e
=
this
.
e
,
d
=
Order
.
Data
,
c
=
Order
.
Common
;
var
i
=
0
,
key
;
var
i
=
0
;
e
.
$total
.
html
(
'0.00'
);
e
.
$statistics
.
slice
(
3
,
5
).
hide
();
e
.
$statistics
.
slice
(
0
,
5
).
find
(
'em'
).
html
(
'0.00'
);
for
(
key
in
d
)
{
$
.
each
(
d
,
function
(
key
)
{
if
(
d
.
hasOwnProperty
(
key
))
{
if
(
d
[
key
])
{
e
.
$statistics
.
eq
(
i
).
show
().
find
(
'em'
).
html
(
c
.
strFixed
(
d
[
key
]));
}
}
i
++
;
}
}
);
e
.
$total
.
html
(
c
.
strFixed
(
c
.
calucate
()));
}
...
...
Please
register
or
login
to post a comment