Authored by yyq

dialog Alert

... ... @@ -5,6 +5,8 @@
*/
var $ = require('yoho.jquery');
var Alert = require('../common/dialog').Alert;
var $pickBtn = $('.pick-coupon-btn');
var pickBusy = false;
... ... @@ -14,7 +16,7 @@ $('.show-birth-coupon').click(function() {
var msg = $this.data('msg');
if (msg) {
alert(msg);
new Alert(msg).show();
return;
}
... ...