Getting index of the selected item in ng-options using ng-change

0

I have a component that loads product and in this product besides description has the value but only the description in the options is shown. Let's see:

  <div  class="form-group col-md-6">
    <label class="lb">Produto/Serviço</label> 
       <select
        ng-model="orcamento.orcamentoItens.produto.idProduto" id="produto" 
        ng-change="carregaValorProduto($index)" 
        ng-options="pro.idProduto as pro.descricao for pro in produtos" 
        class="form-control">
      </select>
  </div>

The point is that I would take the value of the product to play on another component.

I tried these alternatives but all%% of%

 $scope.carregaValorProduto=function(produtoSelecionado){
     $scope.produto.valorUnitario = $scope.produtos[index].valor;

    }
    
asked by anonymous 31.05.2018 / 18:27

0 answers