mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
* frontend - moved to vue 2.7 and vite * frontend - moved to vue 3 * frontend - login page updates * fix(frontend): WiP migration * fix(frontend): WiP migration * fix(frontend): WiP migration * fix(frontend): WiP migration * fix(frontend): WiP migration * fix(frontend): fix eslint/stylelint issues * fix(frontend): fix eslint/stylelint issues * feature(frontend): update node in docker frontend * feature(frontend): move send types out of Send file * feature(frontend): add entry in package json to fix eslint issue * feature(frontend): eslint fix * replace docker-compose with docker compose * update docker-compose test file * feature(frontend): Creation fixes * feature(frontend): Add missing updates for apollo scripts. --------- Co-authored-by: einhornimmond <silas@einhornimmond.de>
39 lines
1.0 KiB
Vue
39 lines
1.0 KiB
Vue
<template>
|
|
<div class="bg-white app-box-shadow gradido-border-radius p-5">
|
|
<div class="h3 mb-4">{{ $t('gdd_per_link.created') }}</div>
|
|
<clipboard-copy
|
|
:link="link"
|
|
:amount="amount"
|
|
:memo="memo"
|
|
:valid-until="validUntil"
|
|
></clipboard-copy>
|
|
<label>{{ $t('qrCode') }}</label>
|
|
<div class="text-center">
|
|
<div><figure-qr-code :link="link" /></div>
|
|
<div>
|
|
<BButton variant="secondary" class="mt-4" data-test="close-btn" @click="$emit('on-back')">
|
|
{{ $t('form.close') }}
|
|
</BButton>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import ClipboardCopy from '../ClipboardCopy'
|
|
import FigureQrCode from '../QrCode/FigureQrCode'
|
|
|
|
export default {
|
|
name: 'TransactionResultLink',
|
|
components: {
|
|
ClipboardCopy,
|
|
FigureQrCode,
|
|
},
|
|
props: {
|
|
link: { type: String, required: true },
|
|
amount: { type: String, required: true },
|
|
memo: { type: String, required: true },
|
|
validUntil: { type: String, required: true },
|
|
},
|
|
}
|
|
</script>
|