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