salix/modules/claim/front/dms/index/index.html

40 lines
1.6 KiB
HTML
Raw Normal View History

<vn-crud-model vn-id="model" auto-load="true"
2019-07-30 06:51:38 +00:00
url="/api/ClaimDms"
link="{claimFk: $ctrl.$stateParams.id}"
limit="20"
data="$ctrl.photos">
2019-07-30 06:51:38 +00:00
</vn-crud-model>
2019-10-03 09:37:44 +00:00
2019-10-16 06:56:13 +00:00
<section class="drop-zone" vn-droppable="$ctrl.onDrop($event)">
2019-10-03 09:37:44 +00:00
<section><vn-icon icon="add_circle"></vn-icon></section>
<section translate>Drag & Drop files here...</section>
</section>
2019-10-10 07:26:44 +00:00
<vn-data-viewer
model="model"
class="vn-w-lg">
<vn-horizontal class="photo-list">
<section class="photo" ng-repeat="photo in $ctrl.photos">
<section class="image mdl-shadow--2dp" on-error-src
ng-style="{'background': 'url(/api/dms/' + photo.dmsFk + '/downloadFile?access_token=' + $ctrl.accessToken + ')'}"
zoom-image="/api/dms/{{::photo.dmsFk}}/downloadFile?access_token={{::$ctrl.accessToken}}">
</section>
<section class="actions">
<button class="mdl-button mdl-js-button mdl-button--fab mdl-button--mini-fab mdl-js-ripple-effect mdl-button--colored"
ng-click="$ctrl.showDeleteConfirm($index)"
title="{{'Remove file' | translate}}"
tabindex="-1">
<vn-icon icon="delete"></vn-icon>
</button>
</section>
</section>
2019-10-10 07:26:44 +00:00
</vn-horizontal>
</vn-data-viewer>
2019-07-30 06:51:38 +00:00
<vn-worker-descriptor-popover
vn-id="workerDescriptor">
</vn-worker-descriptor-popover>
<vn-confirm
vn-id="confirm"
message="This file will be deleted"
question="Are you sure you want to continue?"
on-response="$ctrl.deleteDms(response)">
</vn-confirm>