2019-11-10 10:08:44 +00:00
|
|
|
<vn-auto-search
|
2020-03-13 19:33:12 +00:00
|
|
|
model="model">
|
2019-11-10 10:08:44 +00:00
|
|
|
</vn-auto-search>
|
|
|
|
<vn-data-viewer
|
|
|
|
model="model"
|
|
|
|
class="vn-w-sm">
|
|
|
|
<vn-card>
|
|
|
|
<div class="vn-list separated">
|
|
|
|
<a
|
2020-03-13 19:33:12 +00:00
|
|
|
ng-repeat="worker in model.data track by worker.id"
|
2019-11-10 10:08:44 +00:00
|
|
|
ui-sref="worker.card.summary({id: worker.id})"
|
|
|
|
translate-attr="{title: 'View worker'}"
|
|
|
|
class="vn-item search-result">
|
|
|
|
<vn-item-section>
|
|
|
|
<h6>{{::worker.nickname}}</h6>
|
|
|
|
<vn-label-value label="Id"
|
|
|
|
value="{{::worker.id}}">
|
|
|
|
</vn-label-value>
|
|
|
|
<vn-label-value label="User"
|
|
|
|
value="{{::worker.userName}}">
|
|
|
|
</vn-label-value>
|
|
|
|
<vn-label-value label="Email"
|
|
|
|
value="{{::worker.email}}">
|
|
|
|
</vn-label-value>
|
|
|
|
<vn-label-value label="Department"
|
|
|
|
value="{{::worker.department}}">
|
|
|
|
</vn-label-value>
|
|
|
|
</vn-item-section>
|
|
|
|
<vn-item-section side>
|
2020-02-03 13:03:09 +00:00
|
|
|
<vn-icon-button
|
|
|
|
ng-click="$ctrl.goToTimeControl($event, worker.id)"
|
|
|
|
vn-tooltip="Preview"
|
|
|
|
icon="access_time">
|
|
|
|
</vn-icon-button>
|
2019-11-10 10:08:44 +00:00
|
|
|
<vn-icon-button
|
|
|
|
ng-click="$ctrl.preview($event, worker)"
|
|
|
|
vn-tooltip="Preview"
|
|
|
|
icon="desktop_windows">
|
|
|
|
</vn-icon-button>
|
|
|
|
</vn-item-section>
|
|
|
|
</a>
|
|
|
|
</div>
|
2019-10-02 19:02:49 +00:00
|
|
|
</vn-card>
|
2019-11-10 10:08:44 +00:00
|
|
|
</vn-data-viewer>
|
2019-10-26 23:30:01 +00:00
|
|
|
<vn-popup vn-id="preview">
|
|
|
|
<vn-worker-summary
|
|
|
|
worker="$ctrl.selectedWorker">
|
|
|
|
</vn-worker-summary>
|
2020-07-28 17:22:21 +00:00
|
|
|
</vn-popup>
|