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
cailing
9 years ago
Commit
405aa82c61753df420e4f52bd6096c1cfd370abf
1 parent
4a76de7c
电子发票保存信息修改
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
5 deletions
static/js/cart/order-ensure.js
static/js/cart/order-ensure.js
View file @
405aa82
...
...
@@ -42,6 +42,15 @@ require('../common');
lazyLoad
();
// 初始化发票信息
function
invoiceInit
()
{
if
(
orderCont
.
invoiceType
)
{
$
(
'.invoice-type'
).
text
(
invoiceCont
[
orderCont
.
invoiceType
]
+
'('
+
invoicesType
[
orderCont
.
invoicesType
]
+
')'
);
}
else
{
$
(
'.invoice-type'
).
text
(
'服装(电子)'
);
}
}
function
getQueryParam
()
{
var
queryArray
=
location
.
search
.
substr
(
1
).
split
(
'&'
),
i
,
...
...
@@ -136,6 +145,9 @@ $invoice.on('touchend', '.checkbox', function() {
orderInfo
(
'invoicesType'
,
null
);
orderInfo
(
'invoiceTitle'
,
null
);
}
orderCont
=
window
.
cookie
(
'order-info'
)
&&
JSON
.
parse
(
window
.
cookie
(
'order-info'
));
invoiceInit
();
});
...
...
@@ -401,8 +413,5 @@ if (orderInfo('address') && orderInfo('address').is_support === 'N') {
orderCompute
();
}
if
(
orderCont
.
invoiceType
)
{
$
(
'.invoice-type'
).
text
(
invoiceCont
[
orderCont
.
invoiceType
]
+
'('
+
invoicesType
[
orderCont
.
invoicesType
]
+
')'
);
}
else
{
$
(
'.invoice-type'
).
text
(
'服装(电子)'
);
}
\ No newline at end of file
// 初始化发票信息内容
invoiceInit
();
\ No newline at end of file
...
...
Please
register
or
login
to post a comment