From 071318113fa90245627815224394c131499ed23e Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Sun, 6 Mar 2022 23:49:54 +0000 Subject: [PATCH] --- .../views/customer-notify-subscription.vue | 62 ++++++++++++++++++- 1 file changed, 59 insertions(+), 3 deletions(-) diff --git a/ayanova/src/views/customer-notify-subscription.vue b/ayanova/src/views/customer-notify-subscription.vue index 30ac2400..d23ee2d4 100644 --- a/ayanova/src/views/customer-notify-subscription.vue +++ b/ayanova/src/views/customer-notify-subscription.vue @@ -344,6 +344,59 @@ + + + + + + {{ $ay.t("WhoWillBeNotified") }} + + + + + +
+ {{ $ay.t("NoData") }} +
+ + + +
+
+ + + {{ + $ay.t("Close") + }} + +
+
@@ -391,7 +444,9 @@ export default { }, rights: window.$gz.role.defaultRightsObject(), ayaType: window.$gz.type.CustomerNotifySubscription, - tab: 0 + tab: 0, + whoDialog: false, + whoList: [] }; }, computed: { @@ -746,8 +801,9 @@ export default { this.formState.serverError = res.error; window.$gz.form.setErrorBoxErrors(this); } else { - //todo: show in popup list here - console.log(res.data); + console.log(JSON.stringify(res.data)); + this.whoList = res.data; + this.whoDialog = true; } } } catch (ex) {