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

24 lines
677 B
HTML
Raw Normal View History

2017-02-21 15:21:55 +00:00
<vn-watcher
vn-id="watcher"
url="/client/api/ClientObservations"
id-field="id"
2017-06-03 11:01:47 +00:00
data="$ctrl.note"
2018-02-08 12:28:01 +00:00
save="post"
2017-02-21 15:21:55 +00:00
form="form">
</vn-watcher>
2018-12-14 11:56:21 +00:00
<form name="form" ng-submit="watcher.submitGo('client.card.note.index')" compact>
<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>
<vn-button-bar>
2017-06-07 06:39:40 +00:00
<vn-submit 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>