mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 04:23:55 +00:00
e3e4b490b0
# Conflicts: # resources/views/partials/header.blade.php # routes/web.php
27 lines
878 B
Vue
27 lines
878 B
Vue
<template>
|
|
<tr>
|
|
<td class="v-align-middle">
|
|
<p>{{item.documents ? item.documents.created_at : item.updated_at}}</p>
|
|
</td>
|
|
<td class="v-align-middle ">
|
|
<p v-if="item.booking.bank.bank_name.includes('浙江网商银行')">1688.com</p>
|
|
</td>
|
|
<td class="v-align-middle ">
|
|
<p>{{item.booking.marking}}</p>
|
|
</td>
|
|
<td class="v-align-middle">
|
|
<p>{{item.booking.company.reference}}</p>
|
|
</td>
|
|
<td class="v-align-middle">
|
|
<p>{{(Math.round((item.original_amount + Number.EPSILON) * 100) / 100).toFixed(2).toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",")}}</p>
|
|
</td>
|
|
</tr>
|
|
</template>
|
|
|
|
<script>
|
|
import componentHandler from '../../../general/mixins/componentHandler';
|
|
export default {
|
|
mixins: [componentHandler]
|
|
}
|
|
</script>
|