Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yohobuywap-node
·
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
郭成尧
8 years ago
Commit
8e4e85e1b8d312e3c1e68451f1f819cd9ec856b3
2 parents
4f61b107
f4037e0d
Merge branch 'feature/refundApply' into release/5.5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
public/js/home/order-address-modify.page.js
public/js/home/order-address-modify.page.js
View file @
8e4e85e
...
...
@@ -40,7 +40,9 @@ $area.on('click', function() {
$btnSure
.
on
(
'click'
,
function
()
{
$
.
post
(
'/home/orders/changeAddress'
,
$areaForm
.
serialize
(),
function
(
result
)
{
if
(
result
&&
result
.
code
===
200
)
{
tip
.
show
(
result
.
msg
);
if
(
result
.
data
&&
result
.
data
.
is_modified
===
'Y'
)
{
tip
.
show
(
result
.
data
.
tips
);
}
location
.
href
=
document
.
referrer
;
}
else
{
tip
.
show
(
'系统错误,请重试!'
);
...
...
Please
register
or
login
to post a comment