Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYPC
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
2
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
毕凯
9 years ago
Commit
cbcadfef11a4f4f93beefca7f724f46f37dab22d
1 parent
eefba98d
下单流程 增加地址选择
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
37 additions
and
6 deletions
static/sass/me/_address.scss
template/m.yohobuy.com/actions/index/shoppingCart/order-ensure.phtml
template/m.yohobuy.com/actions/index/shoppingCart/select-address.phtml
yohobuy/m.yohobuy.com/application/controllers/ShoppingCart.php
static/sass/me/_address.scss
View file @
cbcadfe
...
...
@@ -2,11 +2,12 @@
width
:
100%
;
background
:
#f0f0f0
;
.page-wrap
:first-child
{
padding-bottom
:
pxToRem
(
10px
);
}
// .page-wrap:first-child {
// padding-bottom: pxToRem(10px);
// }
.address-item
{
display
:
block
;
padding
:
pxToRem
(
20px
)
pxToRem
(
30px
);
color
:
#b0b0b0
;
background
:
#fff
;
...
...
template/m.yohobuy.com/actions/index/shoppingCart/order-ensure.phtml
View file @
cbcadfe
{
{>
layout/header
}
}
<div
class=
"order-ensure-page yoho-page"
>
{
{#
orderEnsure
}
}
<a
class=
"address-wrap block"
>
<a
class=
"address-wrap block"
href=
"/shoppingCart/selectAddress"
>
<p
class=
"infos"
>
收货地址
<span
class=
"per-info"
>
{
{name
}
}
{
{phoneNum
}
}</span>
...
...
@@ -120,4 +120,4 @@
</ul>
{
{/
orderEnsure
}
}
</div>
{
{>
layout/footer
}
}
\ No newline at end of file
{
{>
layout/footer
}
}
...
...
template/m.yohobuy.com/actions/index/shoppingCart/select-address.phtml
0 → 100644
View file @
cbcadfe
{
{>
layout/header
}
}
<div
class=
"my-address-page select-address-page yoho-page"
>
<div
class=
"page-wrap"
>
{
{#
address
}
}
<a
class=
"address-item"
href=
"/shoppingCart/orderEnsure?address_id={{address_id}}"
>
<span
class=
"name"
>
{
{consignee
}
}</span>
<span
class=
"tel"
>
{
{mobile
}
}</span>
<p
class=
"address-info"
>
{
{area
}
}
{
{address
}
}</p>
</a>
{
{/
address
}
}
</div>
</div>
{
{>
layout/footer
}
}
...
...
yohobuy/m.yohobuy.com/application/controllers/ShoppingCart.php
View file @
cbcadfe
...
...
@@ -2,6 +2,7 @@
use
Action\AbstractAction
;
use
Index\CartModel
;
use
Index\UserModel
;
use
Plugin\Helpers
;
/**
...
...
@@ -216,7 +217,23 @@ class ShoppingCartController extends AbstractAction
$this
->
_view
->
display
(
'order-ensure'
,
$data
);
}
public
function
selectAddressAction
()
{
// 设置网站标题
$this
->
setTitle
(
'选择地址'
);
$this
->
setNavHeader
(
'选择地址'
,
Helpers
::
url
(
'/shoppingCart/orderEnsure'
));
$uid
=
$this
->
_uid
;
$address
=
UserModel
::
getAddressData
(
$uid
);
$this
->
_view
->
display
(
'select-address'
,
array
(
'selectAddressPage'
=>
true
,
'pageFooter'
=>
true
,
'address'
=>
$address
));
}
/**
* 读取chose-panel内容
*/
...
...
Please
register
or
login
to post a comment