salix/modules/client/front/note/create/index.html

30 lines
775 B
HTML
Raw Normal View History

2017-02-21 15:21:55 +00:00
<vn-watcher
vn-id="watcher"
url="ClientObservations"
2017-02-21 15:21:55 +00:00
id-field="id"
2017-06-03 11:01:47 +00:00
data="$ctrl.note"
insert-mode="true"
2017-02-21 15:21:55 +00:00
form="form">
</vn-watcher>
2019-11-10 10:08:44 +00:00
<form name="form" ng-submit="watcher.submitGo('client.card.note.index')" class="vn-w-md">
<vn-card class="vn-pa-lg">
2018-03-01 22:38:14 +00:00
<vn-horizontal>
<vn-textarea
vn-one
label="Note"
2019-10-09 22:47:29 +00:00
ng-model="$ctrl.note.text"
vn-focus>
2018-03-01 22:38:14 +00:00
</vn-textarea>
</vn-horizontal>
</vn-card>
2020-12-13 13:57:42 +00:00
<vn-button-bar>
<vn-submit
ng-if="watcher.dataChanged()"
label="Save">
</vn-submit>
<vn-button
ng-click="$ctrl.cancel()"
label="Cancel">
</vn-button>
</vn-button-bar>
2017-02-21 15:21:55 +00:00
</form>