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
沈志敏
2016-08-03 18:36:11 +0800
Commit
02d3c9c1038925084fb6e1ddd9fd65d246f1e9a5
1 parent
cbe83c9f
增加判断
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
public/vue/me/fav-brand-list.vue
public/vue/me/fav-product-list.vue
public/vue/me/fav-brand-list.vue
View file @
02d3c9c
...
...
@@ -65,7 +65,7 @@
tab: 'brand'
}
}).then(data => {
if ($.isEmptyObject(data)) {
if ($.isEmptyObject(data)
|| data.pageTotal === 0
) {
_this.busy = true;
} else {
if (data.pageTotal && _this.page === data.pageTotal) {
...
...
public/vue/me/fav-product-list.vue
View file @
02d3c9c
...
...
@@ -69,7 +69,7 @@
page: ++_this.page
}
}).then(data => {
if ($.isEmptyObject(data)) {
if ($.isEmptyObject(data)
|| data.pageTotal === 0
) {
_this.busy = true;
} else {
if (_this.page === data.pageTotal) {
...
...
Please
register
or
login
to post a comment