mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
102 lines
2.2 KiB
Vue
102 lines
2.2 KiB
Vue
<template>
|
|
<div class="transaction-slot-send">
|
|
<div @click="visible = !visible">
|
|
<!-- Collaps Icon -->
|
|
<collapse-icon class="text-right" :visible="visible" />
|
|
|
|
<div>
|
|
<b-row>
|
|
<!-- ICON -->
|
|
<b-col cols="1">
|
|
<type-icon color="text-danger" icon="arrow-left-circle" />
|
|
</b-col>
|
|
|
|
<b-col cols="11">
|
|
<!-- Amount / Name -->
|
|
<amount-and-name-row
|
|
v-on="$listeners"
|
|
:amount="amount"
|
|
:linkedUser="linkedUser"
|
|
:transactionLinkId="transactionLinkId"
|
|
/>
|
|
|
|
<!-- Memo -->
|
|
<memo-row :memo="memo" />
|
|
|
|
<!-- Datum -->
|
|
<date-row :date="balanceDate" />
|
|
|
|
<!-- Decay -->
|
|
<decay-row :decay="decay.decay" />
|
|
</b-col>
|
|
</b-row>
|
|
</div>
|
|
|
|
<b-collapse class="pb-4 pt-5" v-model="visible">
|
|
<decay-information :typeId="typeId" :decay="decay" :amount="amount" />
|
|
</b-collapse>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import CollapseIcon from '../TransactionRows/CollapseIcon'
|
|
import TypeIcon from '../TransactionRows/TypeIcon'
|
|
import AmountAndNameRow from '../TransactionRows/AmountAndNameRow'
|
|
import MemoRow from '../TransactionRows/MemoRow'
|
|
import DateRow from '../TransactionRows/DateRow'
|
|
import DecayRow from '../TransactionRows/DecayRow'
|
|
import DecayInformation from '../DecayInformations/DecayInformation'
|
|
|
|
export default {
|
|
name: 'TransactionSend',
|
|
components: {
|
|
CollapseIcon,
|
|
TypeIcon,
|
|
AmountAndNameRow,
|
|
MemoRow,
|
|
DateRow,
|
|
DecayRow,
|
|
DecayInformation,
|
|
},
|
|
props: {
|
|
amount: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
balanceDate: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
decay: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
linkedUser: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
memo: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
typeId: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
transactionLinkId: {
|
|
type: Number,
|
|
required: false,
|
|
},
|
|
previousBookedBalance: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
visible: false,
|
|
}
|
|
},
|
|
}
|
|
</script>
|