Skip to content

Instantly share code, notes, and snippets.

@matheusmurta
Last active March 25, 2019 16:55
Show Gist options
  • Save matheusmurta/e2ed68407f1abd96019312b48ee4fb09 to your computer and use it in GitHub Desktop.
Save matheusmurta/e2ed68407f1abd96019312b48ee4fb09 to your computer and use it in GitHub Desktop.
Requisitar Serviço
<!-- <div>
<select (change)="getServiceForm()" *ngIf="configList$ | async as configList" [(ngModel)]="currentService"
name="serviceRequest">
<option *ngFor="let config of configList" [value]="config.processDefinitionKey">{{config.title}}</option>
</select>
<hr/>
<ng-container *ngIf="currentService">
<start-process (eventId)="onStartProcess()" [processDefinitionKey]="currentService"></start-process>
</ng-container>
</div> -->
<div class="container">
<div class="pr-5 pl-5 pt-2">s
<div class="row">
<h1 class="p-2">Requisitar serviço</h1>
</div>
<div class="row mt-2 mb-4 p-3 bg-white shadow-sm rounded ">
<div class="col">
<label for="exampleFormControlSelect2">Serviço</label>
<select class="form-control" id="exampleFormControlSelect2">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
</div>
<div class="col">
<label for="exampleFormControlSelect2">Gestor reponsavel</label>
<select class="form-control" id="exampleFormControlSelect2">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
</div>
</div>
<div class="row mt-2 mb-4 p-3 bg-white shadow-sm rounded ">
<div class="col">
<label for="exampleFormControlSelect2">Cliente</label>
<select class="form-control" id="exampleFormControlSelect2">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
</div>
<div class="col">
<label for="exampleFormControlSelect2">Redator</label>
<select class="form-control" id="exampleFormControlSelect2">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
</div>
<div class="col">
<label for="exampleFormControlSelect2">Redator</label>
<select class="form-control" id="exampleFormControlSelect2">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
</div>
</div>
<div class="row mt-2 mb-4 p-3 bg-white shadow-sm rounded ">
<div class="container">
<label for="exampleFormControlTextarea1">Pauta</label>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="3"></textarea>
</div>
</div>
<div class="row">
<div class="col">
<div class="float-right p-2">
<button class="btn btn-danger">Requisitar Serviço</button>
</div>
</div>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment