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 quantity = +dataset.quantity;
console.error(disabled, typeof disabled);
if (disabled == true) return null;
if (disabled) return null;
callback.call(this, componentId, quantity + num);
}

View File

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