await request.get(‘/api/commission/v1/getConsultantPerformanceList/excel?beginDate=‘ + this.query.beginDate +‘&endDate=‘+this.query.endDate)
.then( res => {
console.log(‘res‘,res)
if (res.code == 200) {
//this.dataList = result.data;
this.$message.success("操作成功!")
} else {
this.$message.error(res.err);
}
this.lockLoading = false
})
}