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 @@ + + + + + + {{ whoList.length }} + + {{ $ay.t("WhoWillBeNotified") }} + + + + + + + {{ $ay.t("NoData") }} + + + + + + + {{ item.name }} + {{ item.name }} + {{ + item.emailAddress + }} + + + + + + + + + {{ + $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) {