...
|
...
|
@@ -60,6 +60,23 @@ bindEvent.add(function() { |
|
|
|
|
|
var Alert = require('../common/dialog').Alert;
|
|
|
|
|
|
var $moreCoupon = $('.more-coupon');
|
|
|
|
|
|
var $coupons = $('.coupon-item').map(function() {
|
|
|
var $this = $(this);
|
|
|
|
|
|
return {
|
|
|
id: $this.data('id'),
|
|
|
name: $this.data('name'),
|
|
|
amount: $this.data('amount'),
|
|
|
status: $this.data('status')
|
|
|
};
|
|
|
}).get();
|
|
|
|
|
|
$moreCoupon.on('click', function() {
|
|
|
|
|
|
});
|
|
|
|
|
|
function imgShow(src) {
|
|
|
$imgShow.attr('src', src);
|
|
|
}
|
...
|
...
|
|