//删除
getMatchmakers_delete() {this.isLoading=true;// Make an Axios POST request to your backend endpointaxios.delete(config_ip+'administrator_id_and_matchmaker_name_delete', {administratorId: this.id,matchmakerName: this.matchmakerName_search}).then(response => {this.team_page.team_list= response.data;this.isLoading=false;}).catch(error => {console.error('Error fetching matchmakers', error);this.isLoading=false;});
},
 
 
以上删除操作 根据有规则的id 进行删除操作,对数据的安全性有极大的威胁!!!!!!