Authored by liangxs

Merge branch 'feature/coupon' of http://git.dev.yoho.cn/web/yohobuy into feature/coupon

# Conflicts:
#	template/m.yohobuy.com/actions/index/coupon/index.phtml
... ... @@ -3,6 +3,15 @@
*/
var $ = require('jquery');
var $receive = $('.coupon-right-re');
var $mask = $('.coupon-mask');
var $message = $('.coupon-message');
$receive.on('touchend',function(){
alert('sss')
$.ajax({
url:'/coupon/receiveCoupon',
success:function(){
$mask.show();
$message.show();
},
error:function(){}
});
});
\ No newline at end of file
... ...
<div>ID:{{id}}</div>
<div>状态:{{status}}</div>
<div>信息:{{message}}</div>
\ No newline at end of file
<div>信息:{{message}}</div>
... ...
... ... @@ -24,32 +24,39 @@ class CouponController extends AbstractAction
*/
public function floorAction()
{
$data =[
$data = [
'title' => '热门推荐',
'showTitle' => 1,
'coupons' => [
[
'id' => 1,
'picUrl' => 'http://img12.static.yhbimg.com/yhb-img01/2016/01/19/11/02039485d87cc1b100b883244cf386e62d.jpg?imageView/2/w/640/h/200',
'status' => 1,
'num' => '123',
'go'=>'http://m.dev.yohobuy.com/boys',
'couponIds' =>[8024,2564,3587]
],[
'id' => 1,
'picUrl' => 'http://img12.static.yhbimg.com/yhb-img01/2016/01/19/11/02039485d87cc1b100b883244cf386e62d.jpg?imageView/2/w/640/h/200',
'status' => 1,
'num' => '123',
'go'=>'http://m.dev.yohobuy.com/boys',
'couponIds' =>[8024,2564,3587]
],[
'id' => 1,
'picUrl' => 'http://img12.static.yhbimg.com/yhb-img01/2016/01/19/11/02039485d87cc1b100b883244cf386e62d.jpg?imageView/2/w/640/h/200',
'status' => 1,
'num' => '123',
'go'=>'http://m.dev.yohobuy.com/boys',
'couponIds' =>[8024,2564,3587]
]
'status' => true,
'num' => 123,
'go' => 'http://m.dev.yohobuy.com/boys',
'couponIds' => [8024, 2564, 3587]
], [
'id' => 1,
'picUrl' => 'http://img12.static.yhbimg.com/yhb-img01/2016/01/19/11/02039485d87cc1b100b883244cf386e62d.jpg?imageView/2/w/640/h/200',
'status' => false,
'num' => 122,
'go' => 'http://m.dev.yohobuy.com/boys',
'couponIds' => [8024, 2564, 3587]
], [
'id' => 1,
'picUrl' => 'http://img12.static.yhbimg.com/yhb-img01/2016/01/19/11/02039485d87cc1b100b883244cf386e62d.jpg?imageView/2/w/640/h/200',
'status' => 3,
'num' => 0,
'go' => 'http://m.dev.yohobuy.com/boys',
'couponIds' => [8024, 2564, 3587]
], [
'id' => 1,
'picUrl' => 'http://img12.static.yhbimg.com/yhb-img01/2016/01/19/11/02039485d87cc1b100b883244cf386e62d.jpg?imageView/2/w/640/h/200',
'status' => true,
'num' => 123,
'go' => 'http://m.dev.yohobuy.com/boys',
'couponIds' => [8024, 2564, 3587]
]
]
];
... ... @@ -61,19 +68,54 @@ class CouponController extends AbstractAction
/**
* 领券操作
*
* @author Targaryen
*/
public function receiveCouponAction()
{
$receiveData = filter_input_array(INPUT_GET,array(
'id' => FILTER_DEFAULT
$receiveData = filter_input_array(INPUT_GET, array(
'couponIds' => FILTER_DEFAULT
));
$returnData = [
'id' => $receiveData['id'],
'status' => 1,
'message' => '您已经领过券了!'
];
$returnData =array();
$couponIds = explode(',', str_replace(' ', '', $receiveData['couponIds']));
switch ($this->getCoupon($couponIds)){
case 1:
$returnData = [
'message' => '领券成功!'
];
break;
case 2:
$returnData = [
'message' => '领券失败!'
];
break;
case 3:
$returnData = [
'message' => '券已经被领光了!'
];
break;
default:
$returnData = [
'message' => '未知错误!'
];
break;
}
$this->_view->display('receive-coupon', $returnData);
}
$this->_view->display('receive-coupon',$returnData);
/**
* 领券接口模拟
*
* @param $couponIds
* @return array
* @internal param $couponId
*/
public function getCoupon($couponIds)
{
foreach ($couponIds as $key => $value) {
// 后端一些处理操作
}
return rand(1,4);
}
}
\ No newline at end of file
... ...