This commit is contained in:
2020-07-27 22:39:35 +00:00
parent 19a1bc9502
commit f4b7e217b4
4 changed files with 10 additions and 15 deletions

View File

@@ -12,9 +12,6 @@ ____________
## CURRENT STAGE:
todo: UI QUICK NOTIFY "Direct notification" need a place to send a General (old "quick") notification directly to a user and test it works via email delivery as well when user subscribes to general via email
Maybe from the IN APP notification form itself as a link in the menu?
Can choose any user except customer type unless you're of a certain higher level role allowed to deal with customers like service manager, sales manager, biz admin etc
todo: if no notifications in app should show "no data" or equivalent

View File

@@ -13,7 +13,9 @@
<!-- Note: this is just a copy of the inner part of read/write version below
with the action taken out -->
<div class="mt-4" :style="cardTextStyle()">
<span v-if="!hasFiles()">{{ $ay.t("NoData") }}</span>
<span v-if="!hasFiles()" class="text-h4">{{
$ay.t("NoData")
}}</span>
<v-list three-line>
<v-list-item

View File

@@ -3,7 +3,13 @@
<v-row>
<gz-error :errorBoxMessage="formState.errorBoxMessage"></gz-error>
<v-col rows="12">
<v-timeline :dense="$vuetify.breakpoint.smAndDown">
<div class="text-center text-h4" v-if="obj.length == 0">
<span>{{ $ay.t("NoData") }}</span>
</div>
<v-timeline
:dense="$vuetify.breakpoint.smAndDown"
v-if="obj.length > 0"
>
<v-timeline-item
v-for="i in obj"
:key="i.id"

View File

@@ -294,7 +294,6 @@ function generateMenu(vm) {
//
async function initForm(vm) {
await fetchTranslatedText(vm);
// await populateSelectionLists(vm);
}
//////////////////////////////////////////////////////////
@@ -309,13 +308,4 @@ async function fetchTranslatedText(vm) {
"MemoToID"
]);
}
// //////////////////////
// //
// //
// async function populateSelectionLists(vm) {
// //ensure the pick lists required are pre-fetched
// await window.$gz.enums.fetchEnumList("usertype");
// vm.selectLists.usertypes = window.$gz.enums.getSelectionList("usertype");
// }
</script>