Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
center-psp-show-h5
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
center-psp-show-h5
Commits
0e340cfa
提交
0e340cfa
authored
1月 10, 2023
作者:
matian
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
教师团增加分页
上级
5c60d227
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
23 行增加
和
5 行删除
+23
-5
Teacher.vue
src/modules/home/components/Teacher.vue
+0
-1
Index.vue
src/modules/teacher/views/Index.vue
+23
-4
没有找到文件。
src/modules/home/components/Teacher.vue
浏览文件 @
0e340cfa
...
@@ -63,7 +63,6 @@ getTeacherList().then(res => {
...
@@ -63,7 +63,6 @@ getTeacherList().then(res => {
.img
{
.img
{
width
:
1
.9rem
;
width
:
1
.9rem
;
height
:
2
.3rem
;
height
:
2
.3rem
;
border
:
1px
solid
#707070
;
border-radius
:
0
.1rem
;
border-radius
:
0
.1rem
;
object-fit
:
cover
;
object-fit
:
cover
;
}
}
...
...
src/modules/teacher/views/Index.vue
浏览文件 @
0e340cfa
...
@@ -19,13 +19,16 @@ const teacherList = $ref<ITeacherAllList>({
...
@@ -19,13 +19,16 @@ const teacherList = $ref<ITeacherAllList>({
let
tabIndex
=
$ref
(
0
)
let
tabIndex
=
$ref
(
0
)
const
handleGetTeacherList
=
(
val
:
any
)
=>
{
const
handleGetTeacherList
=
(
val
:
any
)
=>
{
const
params
:
any
=
{
page_size
:
2
0
,
page
:
teacherList
.
page
,
type
:
(
val
+
1
).
toString
()
}
const
params
:
any
=
{
page_size
:
1
0
,
page
:
teacherList
.
page
,
type
:
(
val
+
1
).
toString
()
}
teacherList
.
loading
=
true
teacherList
.
loading
=
true
getTeacherList
(
params
)
getTeacherList
(
params
)
.
then
(
res
=>
{
.
then
(
res
=>
{
const
{
total
,
list
}
=
res
.
data
const
{
total
,
list
}
=
res
.
data
teacherList
.
total
=
total
teacherList
.
total
=
total
teacherList
.
list
=
list
teacherList
.
list
=
teacherList
.
list
.
concat
(
list
)
if
(
teacherList
.
list
.
length
<=
total
)
{
teacherList
.
page
++
}
})
})
.
finally
(()
=>
{
.
finally
(()
=>
{
teacherList
.
loading
=
false
teacherList
.
loading
=
false
...
@@ -37,9 +40,25 @@ onMounted(() => {
...
@@ -37,9 +40,25 @@ onMounted(() => {
})
})
const
handleTabClick
=
(
val
:
number
)
=>
{
const
handleTabClick
=
(
val
:
number
)
=>
{
tabIndex
=
val
tabIndex
=
val
console
.
log
(
tabIndex
,
'tabIndex'
)
teacherList
.
page
=
1
teacherList
.
total
=
0
teacherList
.
list
=
[]
handleGetTeacherList
(
val
)
handleGetTeacherList
(
val
)
}
}
// 滚动加载
const
el
=
ref
<
HTMLElement
>
()
useInfiniteScroll
(
document
,
()
=>
{
// load more
if
(
tabIndex
===
0
)
{
!
teacherList
.
loading
&&
handleGetTeacherList
(
0
)
}
else
{
!
teacherList
.
loading
&&
handleGetTeacherList
(
1
)
}
},
{
distance
:
10
}
)
</
script
>
</
script
>
<
template
>
<
template
>
...
@@ -53,7 +72,7 @@ const handleTabClick = (val: number) => {
...
@@ -53,7 +72,7 @@ const handleTabClick = (val: number) => {
紫荆实战导师团
紫荆实战导师团
</div>
</div>
</div>
</div>
<TeacherList
:teacherList=
"teacherList.list"
/>
<TeacherList
:teacherList=
"teacherList.list"
ref=
"el"
/>
</
template
>
</
template
>
<
style
lang=
"scss"
scoped
>
<
style
lang=
"scss"
scoped
>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论