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
Plain Diff
Browse Files
Authored by
Aiden Xu
2016-07-25 19:55:06 +0800
Commit
adcb843d6bc939fbcdc6a40aa6c00182bff67e5c
2 parents
c3e53020
af8dd55c
Merge remote-tracking branch 'origin/develop' into develop
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
apps/channel/models/channel.js
public/vue/component/resources/goods.vue
apps/channel/models/channel.js
View file @
adcb843
...
...
@@ -37,7 +37,7 @@ let channel = {
cache
:
true
,
code
:
200
}).
then
(
result
=>
{
return
result
.
data
?
processProductList
(
result
.
data
[
'process-list'
]
)
:
[];
return
result
.
data
?
processProductList
(
result
.
data
.
product_list
)
:
[];
});
},
};
...
...
public/vue/component/resources/goods.vue
View file @
adcb843
...
...
@@ -32,7 +32,6 @@
productSkn: productSkn.join(',')
}
}).then(result => {
console.log(result);
this.productList = result;
});
}
...
...
@@ -40,4 +39,7 @@
</script>
<style>
.goods {
background: #fff;
}
</style>
...
...
Please
register
or
login
to post a comment