create urgent list page

This commit is contained in:
omair saleh
2021-06-21 14:30:29 +08:00
parent daf2b29e27
commit baddc87c90
@@ -1,22 +1,30 @@
<template>
<div class="table-responsive">
<table class="table table-hover">
<thead>
<tr>
<th style="width:20%">Date</th>
<th style="width:20%">Reference</th>
<th style="width:29%">Marking</th>
<th style="width:15%">Amount</th>
</tr>
</thead>
<tbody>
<urgent-transaction-component v-for="item in list" v-bind:key="item.id" :data="item"></urgent-transaction-component>
</tbody>
</table>
</div>
<div class="row">
<div class="col">
<pagination-component :section="section" class="mb-5" ref="pagination"></pagination-component>
<div class="row">
<div class="col">
<div class="table-responsive">
<table class="table table-hover">
<thead>
<tr>
<th style="width:20%">Date</th>
<th style="width:20%">Reference</th>
<th style="width:29%">Marking</th>
<th style="width:15%">Amount</th>
</tr>
</thead>
<tbody>
<urgent-transaction-component v-for="item in list" v-bind:key="item.id" :data="item"></urgent-transaction-component>
</tbody>
</table>
</div>
</div>
</div>
<div class="row">
<div class="col">
<pagination-component :section="section" class="mb-5" ref="pagination"></pagination-component>
</div>
</div>
</div>
</div>
</template>