@@ -170,7 +170,11 @@ export default {
},
created(){
- this.getData()
+ this.$api.getMatchList().then(res=>{
+ this.matchList=res.data.data
+ this.queryParams.match_id = this.matchList[0].id;
+ this.getData()
+ })
}
</script>