|
@@ -6,7 +6,7 @@
|
|
|
</div>
|
|
|
<table class="table table-sm table-bordered mb-0" style="table-layout: fixed">
|
|
|
<thead>
|
|
|
- <tr>
|
|
|
+ <tr class="bg-light">
|
|
|
<th class="px-2 text-secondary border-bottom-0 width-30px">#</th>
|
|
|
<th class="px-2 text-secondary border-bottom-0">Tests</th>
|
|
|
<th class="px-2 text-secondary border-bottom-0">ICDs</th>
|
|
@@ -16,7 +16,7 @@
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
<tr v-for="(item, index) in items" :class="item.is_open ? '' : 'opacity-60'">
|
|
|
- <td class="px-2">#</td>
|
|
|
+ <td class="px-2">@{{ index + 1 }}</td>
|
|
|
<td class="px-2" v-html="item.tests && Array.isArray(item.tests) ? item.tests.join('<br>') : item.tests"></td>
|
|
|
<td class="px-2" v-html="item.icds && Array.isArray(item.icds) ? item.icds.join('<br>') : item.icds"></td>
|
|
|
<td class="px-2">@{{item.memo}}</td>
|