salix/modules/client/front/credit-insurance/create/index.html

32 lines
1002 B
HTML
Raw Normal View History

2018-12-14 11:56:21 +00:00
<form name="form" ng-submit="$ctrl.onSubmit()" compact>
<vn-card class="vn-pa-lg">
<vn-horizontal>
<vn-input-number
vn-one
min="0"
2018-03-28 13:07:48 +00:00
label="Credit"
2019-10-09 22:47:29 +00:00
ng-model="$ctrl.creditClassification.credit"
2019-10-11 15:38:04 +00:00
rule
2018-03-28 13:07:48 +00:00
vn-focus>
</vn-input-number>
<vn-input-number
vn-one
min="0"
step="1"
2018-03-28 13:07:48 +00:00
label="Grade"
2019-10-09 22:47:29 +00:00
ng-model="$ctrl.creditClassification.grade"
2019-10-11 15:38:04 +00:00
rule>
</vn-input-number>
<vn-date-picker
vn-one
label="Since"
2019-10-09 22:47:29 +00:00
ng-model="$ctrl.creditClassification.started">
</vn-date-picker>
</vn-horizontal>
</vn-card>
<vn-button-bar>
<vn-submit label="Save"></vn-submit>
2018-09-14 06:14:52 +00:00
<vn-button ui-sref="client.card.creditInsurance.index" label="Cancel"></vn-button>
</vn-button-bar>
</form>