Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
xianyu-ufo-app-web
·
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
TaoHuang
2019-10-14 10:45:42 +0800
Commit
557af3d082cf8ad729970e79e683f25f68ceca40
1 parent
c376d3f6
fix address
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
4 deletions
apps/pages/order/components/confirm/address.vue
apps/store/order/order-confirm.js
apps/pages/order/components/confirm/address.vue
View file @
557af3d
...
...
@@ -38,7 +38,7 @@ export default {
this.$router.push({
name: 'address',
query: {
address_id: this.data.address_id
address_id: this.data
?
.address_id
}
});
}
...
...
apps/store/order/order-confirm.js
View file @
557af3d
...
...
@@ -134,9 +134,7 @@ export default function() {
const
address
=
find
(
get
(
addressInfo
,
'data'
,
[]),
{
is_default
:
'Y'
});
if
(
address
)
{
commit
(
Types
.
FETCH_ORDER_ADDRESS
,
address
);
}
commit
(
Types
.
FETCH_ORDER_ADDRESS
,
address
);
}
},
...
...
Please
register
or
login
to post a comment