加载效果

This commit is contained in:
shijingjing
2022-06-10 17:52:23 +08:00
parent 35de4f51de
commit 3fdc528ffe
3 changed files with 24 additions and 41 deletions

View File

@@ -76,6 +76,12 @@ export default {
],
}
},
created() {
if(this.params.id) {
this.getDetail()
}
},
methods: {
cancel(isRefresh) {
this.$emit('change', {
@@ -83,6 +89,12 @@ export default {
isRefresh: !!isRefresh,
})
},
getDetail() {
this.instance.post(`/app/appzyvideobroadcast/queryDetailById?id=${this.params.id}`).then((res) => {
console.log(res);
})
},
getList() {},
}
}
</script>