Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
semour
/
semour_web
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
d732050e
authored
Dec 05, 2022
by
杨树贤
Browse files
Options
_('Browse Files')
Download
Plain Diff
Merge branch 'dev/ver/1.0.0'
parents
2dfa4af1
53659135
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
0 deletions
app/Http/Services/UserAddressService.php
app/Http/Services/UserAddressService.php
View file @
d732050e
...
@@ -19,6 +19,7 @@ class UserAddressService
...
@@ -19,6 +19,7 @@ class UserAddressService
$address
[
'user_id'
]
=
$user
->
id
;
$address
[
'user_id'
]
=
$user
->
id
;
$address
[
'create_time'
]
=
time
();
$address
[
'create_time'
]
=
time
();
$address
[
'consignee'
]
=
$address
[
'first_name'
]
.
' '
.
$address
[
'last_name'
];
//如果没有默认地址,那么就设置为默认地址
//如果没有默认地址,那么就设置为默认地址
$hasDefaultAddress
=
UserAddressModel
::
where
(
'user_id'
,
$user
->
id
)
->
where
(
'is_default'
,
1
)
->
exists
();
$hasDefaultAddress
=
UserAddressModel
::
where
(
'user_id'
,
$user
->
id
)
->
where
(
'is_default'
,
1
)
->
exists
();
if
(
!
$hasDefaultAddress
)
{
if
(
!
$hasDefaultAddress
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment