Authored by weiqingting

订单确认

... ... @@ -22,9 +22,9 @@
<tr>
<td>
<div class="pay-pro">
<a class="pay-pro-icon" href="#"><img src="http://img04.static.yohobuy.com/thumb/2015/08/25/08/012622ad14f32470d56a0b1da5d533a7e2-0060x0060-2-goodsimg.jpg" /></a>
<a class="pay-pro-icon" href="{{href}}"><img src="{{src}}" /></a>
<p class="pay-pro-info">
<a href="#">Eight Guys 破洞束口牛仔裤</a>
<a href="#">{{name}}</a>
<span>颜色:蓝色 尺码:L</span>
</p>
</div>
... ...
... ... @@ -35,7 +35,7 @@ var Order = {
var len = e.$tbody.find('tr').length;
var subtotal = parseFloat(td.eq(1).html()) * parseInt(td.eq(3).html());
td.eq(4).html(c.__fixed(subtotal));
td.eq(4).html(c.strFixed(subtotal));
d.product += subtotal;
if (!index) {
td.last().attr('rowspan', len);
... ... @@ -43,7 +43,7 @@ var Order = {
td.last().remove();
}
if (index === len - 1) {
e.$tbody.find('tr').eq(0).find('td').last().html('<strong>' + c.__fixed(d.product) + '</strong>');
e.$tbody.find('tr').eq(0).find('td').last().html('<strong>' + c.strFixed(d.product) + '</strong>');
}
});
... ... @@ -104,16 +104,16 @@ var Order = {
e.$statistics.slice(3, 5).hide();
e.$statistics.slice(2, 5).find('em').html('0.00');
if (d.carriage) {
e.$statistics.eq(2).find('em').html(c.__fixed(d.carriage));
e.$statistics.eq(2).find('em').html(c.strFixed(d.carriage));
}
if (d.juan) {
e.$statistics.eq(3).show().find('em').html(c.__fixed(d.juan));
e.$statistics.eq(3).show().find('em').html(c.strFixed(d.juan));
}
if (d.yohocoin) {
e.$statistics.eq(4).show().find('em').html(c.__fixed(d.yohocoin));
e.$statistics.eq(4).show().find('em').html(c.strFixed(d.yohocoin));
}
e.$total.html(c.__fixed(c.calucate()));
e.$total.html(c.strFixed(c.calucate()));
}
},
... ... @@ -148,7 +148,7 @@ var Order = {
pan.find('dt').show();
pan.find('dd').hide();
},
__fixed(str) {
strFixed: function(str) {
return parseFloat(str).toFixed(2);
}
},
... ...
... ... @@ -9,12 +9,13 @@ class SaveController extends AbstractAction
*/
public function indexAction()
{
$src="http://img04.static.yohobuy.com/thumb/2015/08/25/08/012622ad14f32470d56a0b1da5d533a7e2-0060x0060-2-goodsimg.jpg"
$data = array(
'orderSavePage' => true,
'orderSave'=>array(
'orderProducts'=>array(
array('name' =>"Eight Guys 破洞束口牛仔裤",'tip'=>"颜色:蓝色 尺码:L",'price'=>'179.00','coin'=>'0','count'=>'1'),
array('name' =>"Eight Guys 破洞束口牛仔裤",'tip'=>"颜色:蓝色 尺码:L",'price'=>'179.00','coin'=>'0','count'=>'1')
array('name' =>"Eight Guys 破洞束口牛仔裤",'tip'=>"颜色:蓝色 尺码:L",'src'=$src,'href'=>'','price'=>'179.00','coin'=>'0','count'=>'1'),
array('name' =>"Eight Guys 破洞束口牛仔裤",'tip'=>"颜色:蓝色 尺码:L",'src'=$src,'href'=>'','price'=>'179.00','coin'=>'0','count'=>'1')
)
)
);
... ...