This commit is contained in:
@@ -52,8 +52,6 @@ CURRENT TODOs
|
|||||||
|
|
||||||
todo: RECORD HISTORY (HAS OUTSTANDING ITEMS)
|
todo: RECORD HISTORY (HAS OUTSTANDING ITEMS)
|
||||||
- finish up current large User log view
|
- finish up current large User log view
|
||||||
- Needs a title or something, always in view, maybe in appbar at the top indicating who the record history is for
|
|
||||||
- Or maybe just fuck it put it into the cards redundantly?
|
|
||||||
- Event type and date are kind of fucked being all grayed out and small, is that the "material" way?
|
- Event type and date are kind of fucked being all grayed out and small, is that the "material" way?
|
||||||
- what is the most important info and where should it go? Room for event type and date in title? Opposite in large view?
|
- what is the most important info and where should it go? Room for event type and date in title? Opposite in large view?
|
||||||
|
|
||||||
|
|||||||
@@ -17,18 +17,15 @@
|
|||||||
:icon="getIconForEvent(i.event)"
|
:icon="getIconForEvent(i.event)"
|
||||||
>
|
>
|
||||||
<v-card>
|
<v-card>
|
||||||
<v-card-title
|
<v-card-title>{{ i.name }}</v-card-title>
|
||||||
|
<v-card-subtitle
|
||||||
|
>{{ i.date }} - {{ getEventName(i.event) }}</v-card-subtitle
|
||||||
|
>
|
||||||
|
<v-card-text
|
||||||
><v-icon class="mr-4">{{
|
><v-icon class="mr-4">{{
|
||||||
getIconForObjectType(i.objectType)
|
getIconForObjectType(i.objectType)
|
||||||
}}</v-icon
|
}}</v-icon
|
||||||
><span class="mr-4"></span
|
>{{ getNameForType(i.objectType) }}
|
||||||
><span>{{ i.name }}</span></v-card-title
|
|
||||||
>
|
|
||||||
<v-card-subtitle>{{
|
|
||||||
getNameForType(i.objectType)
|
|
||||||
}}</v-card-subtitle>
|
|
||||||
<v-card-text>
|
|
||||||
<div>{{ i.date }} - {{ getEventName(i.event) }}</div>
|
|
||||||
<div v-if="i.textra">{{ i.textra }}</div>
|
<div v-if="i.textra">{{ i.textra }}</div>
|
||||||
</v-card-text>
|
</v-card-text>
|
||||||
|
|
||||||
@@ -224,6 +221,8 @@ export default {
|
|||||||
);
|
);
|
||||||
|
|
||||||
temp[i].index = currentEventCount + i;
|
temp[i].index = currentEventCount + i;
|
||||||
|
//test
|
||||||
|
temp[i].textra = "This is some extra text. Blah blah blah blah.";
|
||||||
}
|
}
|
||||||
|
|
||||||
vm.obj = [...vm.obj, ...temp];
|
vm.obj = [...vm.obj, ...temp];
|
||||||
|
|||||||
Reference in New Issue
Block a user