This commit is contained in:
2020-04-23 19:26:55 +00:00
parent ebbe733bdc
commit 4f2cfc3dda
2 changed files with 110 additions and 85 deletions

View File

@@ -1,6 +1,6 @@
# CLIENT TODO # CLIENT TODO
rishi gorang quattro sonto rishi gorang sonto
************************************************************************************************************************************************************************** **************************************************************************************************************************************************************************
CURRENT ROADMAP CURRENT ROADMAP

View File

@@ -3,7 +3,31 @@
<span class="v-label v-label--active theme--light"> <span class="v-label v-label--active theme--light">
{{ $ay.t("Attachments") }} {{ $ay.t("Attachments") }}
</span> </span>
<template v-if="readonly">
<div class="mt-4" :style="cardTextStyle()">
<v-list color="grey lighten-5" three-line>
<v-list-item
v-for="item in displayList"
:key="item.id"
:href="item.url"
target="_blank"
>
<v-list-item-avatar>
<v-icon v-text="item.icon"></v-icon>
</v-list-item-avatar>
<v-list-item-content>
<v-list-item-title v-text="item.name"></v-list-item-title>
<v-list-item-subtitle v-text="item.date"></v-list-item-subtitle>
<v-list-item-subtitle v-text="item.notes"></v-list-item-subtitle>
</v-list-item-content>
</v-list-item>
</v-list>
</div>
</template>
<template v-else>
<v-tabs v-model="tab" color="primary"> <v-tabs v-model="tab" color="primary">
<v-tabs-slider></v-tabs-slider> <v-tabs-slider></v-tabs-slider>
<v-tab key="list"><v-icon>fa-folder</v-icon></v-tab> <v-tab key="list"><v-icon>fa-folder</v-icon></v-tab>
@@ -96,6 +120,7 @@
</v-card-actions> </v-card-actions>
</v-card> </v-card>
</v-menu> </v-menu>
</template>
</div> </div>
</template> </template>
<script> <script>