diff --git a/client/src/views/testvideo/videolist.vue b/client/src/views/testvideo/videolist.vue index dd22a0d..4847a87 100644 --- a/client/src/views/testvideo/videolist.vue +++ b/client/src/views/testvideo/videolist.vue @@ -98,7 +98,7 @@ export default { }); }, getListtype(a){ - getVideoList({category:a.id}).then((response) => { + getVideoList({category:a.id,pageoff:true}).then((response) => { if (response.data) { this.videoList = response.data; @@ -109,7 +109,7 @@ export default { //视频类型 getTypeAll() { - getDictList({ type__code: "data_video" }).then((res) => { + getDictList({ type__code: "data_video"}).then((res) => { this.typeOptions = genTree(res.data); }); },