This commit is contained in:
shilixia 2021-09-06 16:08:21 +08:00
parent 8e62f6f8d3
commit 53c9c611cd
1 changed files with 4 additions and 2 deletions

View File

@ -191,7 +191,9 @@ export default {
dialogVisible:false, dialogVisible:false,
signature: "", signature: "",
treeLoding: false, treeLoding: false,
videoList:"", videoList: {
count: 0,
},
typeOptions:[], typeOptions:[],
dialogType:'', dialogType:'',
listQuery: { listQuery: {
@ -225,7 +227,7 @@ checkPermission,
//列表加载 //列表加载
getList() { getList() {
this.listLoading = true; this.listLoading = true;
getVideoList().then((response) => { getVideoList(this.listQuery).then((response) => {
if (response.data) { if (response.data) {
this.videoList = response.data; this.videoList = response.data;
} }