Authored by Rock Zhang

修复我的消息中领取生日券的bug

Code Review By Rock Zhang
... ... @@ -493,6 +493,23 @@ class UserData
}
/**
* vip会员领取生日券
* @param type $uid 用户id
* @param type $couponId 生日券号
* @return type
*/
public static function getBirthCoupon($uid, $couponId)
{
$param = Yohobuy::param();
$param['method'] = 'app.promotion.getCoupon';
$param['uid'] = $uid;
$param['couponId'] = $couponId;
$param['client_secret'] = Sign::getSign($param);
return Yohobuy::get(Yohobuy::API_URL, $param);
}
/**
* 在线客服接口
*
* @return array 消息接口返回的数据
... ...
var $ = require('jquery'),
dialog = require('./dialog');
var $page = $('.massage-page');
var pickBusy = false;
// 领取生日券
$page.on('touchstart', '.pick-coupon-btn', function() {
if (pickBusy) {
return;
}
pickBusy = true;
var $id = $(this).data('id');
$.ajax({
type: 'POST',
url: '/home/pickCoupon',
data: {
id: $id
},
success: function(data) {
if (data.code === 200) {
dialog.showDialog({
dialogText: '领取成功',
autoHide: 2000,
fast: true
});
$(this).removeClass('pick-coupon-btn');
}
pickBusy = false;
dialog.showDialog({
dialogText: data.message,
autoHide: 2000,
fast: true
});
}
});
});
... ...
... ... @@ -345,3 +345,8 @@
seajs.use('js/me/message');
</script>
{{/if}}
{{#if messageDetailPage}}
<script>
seajs.use('js/me/message-detail');
</script>
{{/if}}
... ...
... ... @@ -334,6 +334,8 @@ class HomeController extends AbstractAction
$uid = $this->getUid(true);
$data = UserModel::getMessageDetail($uid, $id);
$data['pageFooter'] = true;
$data['messageDetailPage'] = true;
$this->_view->display('message-main', $data);
}
... ... @@ -351,7 +353,7 @@ class HomeController extends AbstractAction
}
$uid = $this->getUid(true);
$id = $this->get('id', 0);
$id = $this->post('id', 0);
$result = UserModel::pickBirthCoupon($uid, $id);
}
while (false);
... ...
... ... @@ -935,10 +935,11 @@ class UserModel
break;
}
$coupon = UserData::getBirthCouponById($uid, $id);
$coupon = UserData::getBirthCoupon($uid, $id);
if (!isset($coupon['code'])) {
break;
}
$result = $coupon;
} while (false);
... ...