salix/modules/client/front/phones/index.html

55 lines
1.5 KiB
HTML
Raw Normal View History

2018-07-16 06:00:04 +00:00
<vn-crud-model
2019-12-17 08:11:28 +00:00
url="UserPhoneTypes"
data="phoneTypes"
auto-load="true">
2018-07-16 06:00:04 +00:00
</vn-crud-model>
2019-12-17 08:11:28 +00:00
<vn-crud-model
vn-id="model"
url="UserPhones"
data="$ctrl.phones">
</vn-crud-model>
<vn-watcher
vn-id="watcher"
2019-12-17 08:11:28 +00:00
data="$ctrl.phones">
</vn-watcher>
2019-11-10 10:08:44 +00:00
<form name="form" ng-submit="$ctrl.onSubmit()" class="vn-w-md">
<vn-card class="vn-pa-lg">
2019-12-17 08:11:28 +00:00
<vn-horizontal ng-repeat="clientPhone in $ctrl.phones">
<vn-autocomplete
vn-one
ng-model="clientPhone.typeFk"
initial-data="clientPhone.typeFk"
data ="phoneTypes"
show-field="code"
value-field="code"
label="Type"
vn-focus>
</vn-autocomplete>
<vn-textfield
vn-one
label="Phone"
2019-12-17 08:11:28 +00:00
ng-model="clientPhone.phone">
</vn-textfield>
<vn-none>
<vn-icon-button
2019-12-17 08:11:28 +00:00
vn-tooltip="Remove phone"
icon="delete"
2019-12-17 08:11:28 +00:00
ng-click="model.remove($index)"
tabindex="-1">
</vn-icon-button>
</vn-none>
</vn-horizontal>
<vn-one>
<vn-icon-button
vn-bind="+"
2019-12-17 08:11:28 +00:00
vn-tooltip="Add phone"
icon="add_circle"
ng-click="$ctrl.add()">
</vn-icon-button>
</vn-one>
</vn-card>
<vn-button-bar>
<vn-submit label="Save"></vn-submit>
</vn-button-bar>
2019-12-17 08:11:28 +00:00
</form>