diff --git a/src/components/GiftedDialog.vue b/src/components/GiftedDialog.vue index 8583dd5..678a6fe 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 da913d2..c817516 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 0000000..dc54954 --- /dev/null +++ b/src/views/GiftedDetails.vue @@ -0,0 +1,313 @@ +