2022-11-10 10:51:14 +00:00
|
|
|
<email-body v-bind="$props">
|
2022-11-10 08:51:28 +00:00
|
|
|
<div class="grid-row">
|
|
|
|
<div class="grid-block vn-pa-ml">
|
|
|
|
<h1>{{ $t('title') }}</h1>
|
|
|
|
<p>{{ $t('sections.introduction.title') }},</p>
|
|
|
|
<p v-html="`${$t('sections.introduction.description')}:`"></p>
|
2019-01-22 08:55:35 +00:00
|
|
|
|
2022-11-10 08:51:28 +00:00
|
|
|
<p>
|
|
|
|
<section>
|
|
|
|
<span>{{ $t('sections.pay.method') }}:</span>
|
|
|
|
<strong>{{payMethod.name}}</strong>
|
|
|
|
</section>
|
|
|
|
<section v-if="payMethod.code != 'card'">
|
|
|
|
<span>{{ $t('sections.pay.day') }}:</span>
|
|
|
|
<strong>{{ $t('sections.pay.dueDay', [payMethod.dueDay]) }}</strong>
|
|
|
|
</section>
|
|
|
|
</p>
|
2019-01-22 08:55:35 +00:00
|
|
|
|
2022-11-10 08:51:28 +00:00
|
|
|
<p v-if="payMethod.code == 'bankDraft'" v-html="$t('sections.pay.accountImplicates', [accountAddress])">
|
|
|
|
</p>
|
|
|
|
<p v-else-if="payMethod.code == 'card'">
|
|
|
|
{{ $t('sections.pay.cardImplicates') }}
|
|
|
|
</p>
|
2019-01-22 08:55:35 +00:00
|
|
|
|
2022-11-10 08:51:28 +00:00
|
|
|
<p>{{ $t('notifyAnError') }}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-11-10 10:51:14 +00:00
|
|
|
</email-body>
|