salix/modules/agency/front/location/index.html

25 lines
786 B
HTML
Raw Normal View History

2018-12-04 12:18:27 +00:00
<vn-crud-model
vn-id="model"
2019-09-19 15:49:46 +00:00
url="/api/Zones/{{$ctrl.$stateParams.id}}/getLeaves"
2019-10-08 05:22:38 +00:00
filter="::$ctrl.filter">
2018-12-04 12:18:27 +00:00
</vn-crud-model>
2019-09-25 18:06:42 +00:00
<div compact>
<vn-card pad-large-h>
2019-10-08 05:22:38 +00:00
<vn-searchbar auto-load="false"
2019-09-19 13:51:39 +00:00
on-search="$ctrl.onSearch($params)"
2019-02-01 16:11:14 +00:00
vn-focus>
</vn-searchbar>
2019-09-25 18:06:42 +00:00
</vn-card>
<vn-card pad-large margin-medium-top>
2019-10-08 05:22:38 +00:00
<vn-treeview vn-id="treeview" root-label="Locations"
fetch-func="$ctrl.onFetch($item)"
sort-func="$ctrl.onSort($a, $b)">
2019-10-02 07:54:52 +00:00
<vn-check
field="item.selected"
2019-10-08 05:22:38 +00:00
on-change="$ctrl.onSelection(value, item)"
2019-10-02 07:54:52 +00:00
triple-state="true"
label="{{::item.name}}">
</vn-check>
2019-02-01 16:11:14 +00:00
</vn-treeview>
</vn-card>
</div>