Authored by 陈峰

remove console

... ... @@ -22,7 +22,6 @@ exports.index = (req, res) => {
exports.fetchProducts = (req, res, next) => {
const params = req.query;
console.log('params', params);
model.products(params)
.then(result => res.json(result))
.catch(next);
... ...
... ... @@ -15,7 +15,6 @@ new Vue({
},
methods: {
changeView(obj) {
console.log('obj', obj)
this.currentView = obj.view;
this.company_id = obj.company_id;
this.company_name = obj.company_name;
... ...
... ... @@ -58,7 +58,6 @@
}
},
created() {
console.log(this.getCateList)
this.getCateList();
bus.$on('channel.change', (page, channel) => {
... ...
... ... @@ -272,7 +272,6 @@
this.categoryChangeHandler();
},
category() {
console.log('123')
this.categoryChangeHandler();
}
},
... ...
... ... @@ -373,7 +373,6 @@
* 将当前选择添加到购物车
*/
addToCart() {
// console.log(`${this.selection.color}:${this.selection.size}`);
if (!this.selection.color) {
tip('请选择颜色');
... ...
... ... @@ -23,7 +23,6 @@
export default {
props: ['applyid', 'type', 'company_id', 'company_name'],
data() {
console.log(this.$p)
return {
num: '',
};
... ...