From acee761906ecafb0839c356b368dea680965a24f Mon Sep 17 00:00:00 2001 From: Trent Larson Date: Fri, 8 Mar 2024 01:10:17 -0700 Subject: [PATCH] add page for extended details of gifts including pic (not fully tested) --- src/components/GiftedDialog.vue | 30 +-- src/router/index.ts | 8 + src/views/GiftedDetails.vue | 313 ++++++++++++++++++++++++++++++++ 3 files changed, 338 insertions(+), 13 deletions(-) create mode 100644 src/views/GiftedDetails.vue diff --git a/src/components/GiftedDialog.vue b/src/components/GiftedDialog.vue index 8583dd5d..678a6fe6 100644 --- a/src/components/GiftedDialog.vue +++ b/src/components/GiftedDialog.vue @@ -36,23 +36,27 @@ -
+
- + More Options - - - - - - - -

Sign & Send to publish to the world @@ -101,9 +105,9 @@ export default class GiftedDialog extends Vue { apiServer = ""; amountInput = "0"; - giver?: GiverInputInfo; // undefined means no identified giver agent description = ""; givenToUser = false; + giver?: GiverInputInfo; // undefined means no identified giver agent isTrade = false; offerId = ""; unitCode = "HUR"; diff --git a/src/router/index.ts b/src/router/index.ts index da913d24..c8175161 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -84,6 +84,14 @@ const routes: Array = [ component: () => import(/* webpackChunkName: "discover" */ "../views/DiscoverView.vue"), }, + { + path: "/gifted-details", + name: "gifted-details", + component: () => + import( + /* webpackChunkName: "gifted-details" */ "../views/GiftedDetails.vue" + ), + }, { path: "/gifted-photo", name: "gifted-photo", diff --git a/src/views/GiftedDetails.vue b/src/views/GiftedDetails.vue new file mode 100644 index 00000000..dc54954a --- /dev/null +++ b/src/views/GiftedDetails.vue @@ -0,0 +1,313 @@ +