Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yohoblk-wap
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
陈峰
2017-08-08 18:25:46 +0800
Commit
a5ea18b4edd53a30112152f5d2d011ccebc88122
1 parent
93d8fc3e
remove console
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
0 additions
and
6 deletions
apps/product/controllers/search.js
public/js/me/logistics.page.js
public/vue/channel/brand-cate-box.vue
public/vue/channel/brand-cate.vue
public/vue/component/product/feature-selector.vue
public/vue/me/refund/logistics.vue
apps/product/controllers/search.js
View file @
a5ea18b
...
...
@@ -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
);
...
...
public/js/me/logistics.page.js
View file @
a5ea18b
...
...
@@ -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
;
...
...
public/vue/channel/brand-cate-box.vue
View file @
a5ea18b
...
...
@@ -58,7 +58,6 @@
}
},
created() {
console.log(this.getCateList)
this.getCateList();
bus.$on('channel.change', (page, channel) => {
...
...
public/vue/channel/brand-cate.vue
View file @
a5ea18b
...
...
@@ -272,7 +272,6 @@
this.categoryChangeHandler();
},
category() {
console.log('123')
this.categoryChangeHandler();
}
},
...
...
public/vue/component/product/feature-selector.vue
View file @
a5ea18b
...
...
@@ -373,7 +373,6 @@
* 将当前选择添加到购物车
*/
addToCart() {
// console.log(`${this.selection.color}:${this.selection.size}`);
if (!this.selection.color) {
tip('请选择颜色');
...
...
public/vue/me/refund/logistics.vue
View file @
a5ea18b
...
...
@@ -23,7 +23,6 @@
export default {
props: ['applyid', 'type', 'company_id', 'company_name'],
data() {
console.log(this.$p)
return {
num: '',
};
...
...
Please
register
or
login
to post a comment