Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
Litemall
Commits
87958c4c
Commit
87958c4c
authored
Nov 17, 2018
by
Junling Bu
Browse files
fix[litemall-admin]: total设置初始值0
parent
6f0ebe3e
Changes
17
Hide whitespace changes
Inline
Side-by-side
litemall-admin/src/views/goods/comment.vue
View file @
87958c4c
...
...
@@ -65,7 +65,7 @@ export default {
data
()
{
return
{
list
:
undefined
,
total
:
undefined
,
total
:
0
,
listLoading
:
true
,
listQuery
:
{
page
:
1
,
...
...
litemall-admin/src/views/mall/brand.vue
View file @
87958c4c
...
...
@@ -105,7 +105,7 @@ export default {
return
{
uploadPath
,
list
:
undefined
,
total
:
undefined
,
total
:
0
,
listLoading
:
true
,
listQuery
:
{
page
:
1
,
...
...
litemall-admin/src/views/mall/category.vue
View file @
87958c4c
...
...
@@ -141,7 +141,7 @@ export default {
return
{
uploadPath
,
list
:
undefined
,
total
:
undefined
,
total
:
0
,
listLoading
:
true
,
listQuery
:
{
page
:
1
,
...
...
litemall-admin/src/views/mall/issue.vue
View file @
87958c4c
...
...
@@ -57,7 +57,7 @@ export default {
data
()
{
return
{
list
:
null
,
total
:
null
,
total
:
0
,
listLoading
:
true
,
listQuery
:
{
page
:
1
,
...
...
litemall-admin/src/views/mall/keyword.vue
View file @
87958c4c
...
...
@@ -83,7 +83,7 @@ export default {
data
()
{
return
{
list
:
undefined
,
total
:
undefined
,
total
:
0
,
listLoading
:
true
,
listQuery
:
{
page
:
1
,
...
...
litemall-admin/src/views/mall/order.vue
View file @
87958c4c
...
...
@@ -170,7 +170,7 @@ export default {
data
()
{
return
{
list
:
undefined
,
total
:
undefined
,
total
:
0
,
listLoading
:
true
,
listQuery
:
{
page
:
1
,
...
...
litemall-admin/src/views/mall/region.vue
View file @
87958c4c
...
...
@@ -53,7 +53,7 @@ export default {
data
()
{
return
{
list
:
undefined
,
total
:
undefined
,
total
:
0
,
listLoading
:
true
,
listQuery
:
{
page
:
1
,
...
...
litemall-admin/src/views/promotion/ad.vue
View file @
87958c4c
...
...
@@ -124,7 +124,7 @@ export default {
return
{
uploadPath
,
list
:
undefined
,
total
:
undefined
,
total
:
0
,
listLoading
:
true
,
listQuery
:
{
page
:
1
,
...
...
litemall-admin/src/views/promotion/topic.vue
View file @
87958c4c
...
...
@@ -128,7 +128,7 @@ export default {
return
{
uploadPath
,
list
:
undefined
,
total
:
undefined
,
total
:
0
,
listLoading
:
true
,
listQuery
:
{
page
:
1
,
...
...
litemall-admin/src/views/sys/admin.vue
View file @
87958c4c
...
...
@@ -96,7 +96,7 @@ export default {
return
{
uploadPath
,
list
:
null
,
total
:
null
,
total
:
0
,
listLoading
:
true
,
listQuery
:
{
page
:
1
,
...
...
litemall-admin/src/views/sys/os.vue
View file @
87958c4c
...
...
@@ -72,7 +72,7 @@ export default {
data
()
{
return
{
list
:
null
,
total
:
null
,
total
:
0
,
listLoading
:
true
,
listQuery
:
{
page
:
1
,
...
...
litemall-admin/src/views/user/address.vue
View file @
87958c4c
...
...
@@ -48,7 +48,7 @@ export default {
data
()
{
return
{
list
:
null
,
total
:
null
,
total
:
0
,
listLoading
:
true
,
listQuery
:
{
page
:
1
,
...
...
litemall-admin/src/views/user/collect.vue
View file @
87958c4c
...
...
@@ -36,7 +36,7 @@ export default {
data
()
{
return
{
list
:
null
,
total
:
null
,
total
:
0
,
listLoading
:
true
,
listQuery
:
{
page
:
1
,
...
...
litemall-admin/src/views/user/feedback.vue
View file @
87958c4c
...
...
@@ -47,7 +47,7 @@ export default {
data
()
{
return
{
list
:
undefined
,
total
:
undefined
,
total
:
0
,
listLoading
:
true
,
listQuery
:
{
page
:
1
,
...
...
litemall-admin/src/views/user/footprint.vue
View file @
87958c4c
...
...
@@ -36,7 +36,7 @@ export default {
data
()
{
return
{
list
:
null
,
total
:
null
,
total
:
0
,
listLoading
:
true
,
listQuery
:
{
page
:
1
,
...
...
litemall-admin/src/views/user/history.vue
View file @
87958c4c
...
...
@@ -35,7 +35,7 @@ export default {
data
()
{
return
{
list
:
null
,
total
:
null
,
total
:
0
,
listLoading
:
true
,
listQuery
:
{
page
:
1
,
...
...
litemall-admin/src/views/user/user.vue
View file @
87958c4c
...
...
@@ -105,7 +105,7 @@ export default {
data
()
{
return
{
list
:
null
,
total
:
null
,
total
:
0
,
listLoading
:
true
,
listQuery
:
{
page
:
1
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment