delete console

This commit is contained in:
Nino 2016-12-22 10:59:38 +08:00
parent 156559d8a6
commit ae04b6c6d9
2 changed files with 3 additions and 15 deletions

View File

@ -4,9 +4,7 @@ function handle(e, num) {
var disabled = dataset.disabled; var disabled = dataset.disabled;
var quantity = +dataset.quantity; var quantity = +dataset.quantity;
console.error(disabled, typeof disabled); if (disabled) return null;
if (disabled == true) return null;
callback.call(this, componentId, quantity + num); callback.call(this, componentId, quantity + num);
} }

View File

@ -1,5 +1,3 @@
var app = getApp()
Page({ Page({
data: { data: {
icons: [ icons: [
@ -8,14 +6,6 @@ Page({
'certificate', 'certificate',
'arrow', 'arrow',
'shopping-cart', 'shopping-cart',
] ]
}, }
});
onLoad: function () {
},
onShow: function() {
},
})