Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
U
uniapp_vedio
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
android
uniapp_vedio
Commits
391cecd1
Commit
391cecd1
authored
May 30, 2024
by
jyx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
代码优化
parent
75db8e75
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
138 additions
and
134 deletions
+138
-134
bookshelf.vue
vedio/components/bookshelf/bookshelf.vue
+107
-97
warehouse.vue
vedio/components/warehouse/warehouse.vue
+27
-27
home.vue
vedio/pages/home.vue
+4
-10
No files found.
vedio/components/bookshelf/bookshelf.vue
View file @
391cecd1
<
template
>
<
view>
<
z-paging
style=
"height: 100%;"
>
<c-navi
id=
'navi'
></c-navi>
<book-search-box
id=
'search'
:searchType=
'searchType'
></book-search-box>
<read-time-count-row
id=
'count'
ref=
'timeCount'
@
resize=
'resizeTimeCount'
></read-time-count-row>
<BookshelfList
ref=
'bookList'
:height=
'listHeight'
></BookshelfList>
<c-login></c-login>
</
view>
</
z-paging>
</
template
>
<
script
>
...
...
@@ -45,12 +45,6 @@
watchCollectionChange
(()
=>
{
this
.
refreshList
();
},
this
);
},
show
(){
},
hide
(){
},
onShow
()
{
// 更新阅读时间统计
...
...
@@ -62,6 +56,22 @@
removeCollectionChangeWatch
(
this
);
},
methods
:
{
show
()
{
this
.
initHeight
();
// 监听用户变动
watchUserInfoChange
((
info
)
=>
{
if
(
info
.
userInfo
)
{
this
.
initData
();
}
},
this
)
// 监听收藏变动
watchCollectionChange
(()
=>
{
this
.
refreshList
();
},
this
);
},
hide
()
{
},
resizeTimeCount
()
{
this
.
initHeight
();
},
...
...
vedio/components/warehouse/warehouse.vue
View file @
391cecd1
<
template
>
<
view
>
<
z-paging
style=
"height: 100%;"
>
<c-navi
id=
'navi'
></c-navi>
<book-search-box
id=
'search'
></book-search-box>
<CategoryBar
id=
'category'
:range=
'categorys'
:current=
'currentIndex'
@
change=
'changeCategory'
...
...
@@ -16,7 +16,7 @@
</swiper>
</view>
<c-login></c-login>
</
view
>
</
z-paging
>
</
template
>
<
script
>
...
...
@@ -50,23 +50,8 @@
};
},
onLoad
(
options
)
{
setTimeout
(()
=>
{
// 匹配用户直接跳转小说
if
(
options
.
bookId
!=
''
&&
options
.
bookId
!=
undefined
)
{
gotoBookContentPage
(
options
.
bookId
);
}
},
800
);
this
.
getCategoryData
();
if
(
wx
.
setVisualEffectOnCapture
){
wx
.
setVisualEffectOnCapture
({
visualEffect
:
'hidden'
,
success
:(
res
)
=>
{
},
})
}
},
computed
:
{
showEmpty
:
function
()
{
return
isEmpty
(
this
.
categorys
);
...
...
@@ -101,10 +86,25 @@
}
},
methods
:
{
show
(){
show
()
{
setTimeout
(()
=>
{
// 匹配用户直接跳转小说
if
(
options
.
bookId
!=
''
&&
options
.
bookId
!=
undefined
)
{
gotoBookContentPage
(
options
.
bookId
);
}
},
800
);
this
.
getCategoryData
();
if
(
wx
.
setVisualEffectOnCapture
)
{
wx
.
setVisualEffectOnCapture
({
visualEffect
:
'hidden'
,
success
:
(
res
)
=>
{
},
})
}
},
hide
()
{
hide
()
{
},
readyCategory
()
{
...
...
vedio/pages/home.vue
View file @
391cecd1
...
...
@@ -97,15 +97,9 @@
loadComponentData
()
{
if
(
this
.
currentPage
==
0
)
{
this
.
$refs
.
index
.
show
();
this
.
$refs
.
recommend
.
hide
();
this
.
$refs
.
user
.
hide
();
}
else
if
(
this
.
currentPage
==
1
)
{
this
.
$refs
.
index
.
hide
();
this
.
$refs
.
recommend
.
show
();
this
.
$refs
.
user
.
hide
();
}
else
if
(
this
.
currentPage
==
2
)
{
this
.
$refs
.
index
.
hide
();
this
.
$refs
.
recommend
.
hide
();
this
.
$refs
.
user
.
show
();
}
}
...
...
Write
Preview
Markdown
is supported
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