<el-button type="primary" icon="el-icon-delete" size="mini"
@click="removeUserById(scope.row.id)"></el-button>
//根据id删除用户
async removeUserById(id){
const resx = await this.$confirm('此操作将永久删除该用户, 是否继续?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).catch(err => err)
// console.log(res)
if(resx !== 'confirm'){
return this.$message.info('已取消删除')
}
// console.log('确认删除了')
const{data:res} = await this.$http.delete('users/' + id)
if(res.meta.status !==200 ){
return this.$message.error('删除失败')
}
this.$message.success('删除成功')
this.getUserList()
}

