Show modal data Angularjs

0

Does anyone know a way to make the code below more dynamic. I update some records in modal and always pass the parameters on the button and then the scope to be able to rescue the data. Is it a more practical way?

/* altera status para negocio ganho */
$scope.negocioGanho = function(prospectNome, oportunidadeLinhas, oportunidadeReceita,
  oportunidadeFunil, oportunidadeId, oportunidadeTipo) {
  $scope.prospectNome = prospectNome;
  $scope.oportunidadeLinhas = oportunidadeLinhas;
  $scope.oportunidadeReceita = oportunidadeReceita;
  $scope.oportunidadeFunil = oportunidadeFunil;
  $scope.oportunidadeId = oportunidadeId;
  $scope.oportunidadeTipo = oportunidadeTipo;
};
<button class="btn btn-success btn-sm mr-2 pull-right" data-toggle="modal" data-target="#modalGanho" ng-click="negocioGanho(oportunidade.prospectNome, oportunidade.oportunidadeLinhas, oportunidade.oportunidadeReceita, oportunidade.oportunidadeFunil, oportunidade.oportunidadeId, oportunidade.oportunidadeTipo)">
                        <i class="fa fa-thumbs-up"></i>
                    </button>
    
asked by anonymous 06.11.2018 / 21:00

0 answers