Browse Source

Tickets - minor markup fixes

Vijayakrishnan 4 years ago
parent
commit
b7829a92af

+ 2 - 2
resources/views/app/patient/partials/equipment.blade.php

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

+ 2 - 2
resources/views/app/patient/partials/erx.blade.php

@@ -6,7 +6,7 @@
     </div>
     </div>
     <table class="table table-sm table-bordered mb-0" style="table-layout: fixed">
     <table class="table table-sm table-bordered mb-0" style="table-layout: fixed">
         <thead>
         <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 width-30px">#</th>
             <th class="px-2 text-secondary border-bottom-0">Medication</th>
             <th class="px-2 text-secondary border-bottom-0">Medication</th>
             <th class="px-2 text-secondary border-bottom-0">Strength</th>
             <th class="px-2 text-secondary border-bottom-0">Strength</th>
@@ -22,7 +22,7 @@
         </thead>
         </thead>
         <tbody>
         <tbody>
             <tr v-for="(item, index) in items" :class="item.is_open ? '' : 'opacity-60'">
             <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">@{{item.medication}}</td>
                 <td class="px-2">@{{item.medication}}</td>
                 <td class="px-2">@{{item.strength}}</td>
                 <td class="px-2">@{{item.strength}}</td>
                 <td class="px-2">@{{item.amount}}</td>
                 <td class="px-2">@{{item.amount}}</td>

+ 2 - 2
resources/views/app/patient/partials/imaging.blade.php

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

+ 2 - 2
resources/views/app/patient/partials/lab.blade.php

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

+ 2 - 2
resources/views/app/patient/partials/other.blade.php

@@ -6,7 +6,7 @@
     </div>
     </div>
     <table class="table table-sm table-bordered mb-0" style="table-layout: fixed">
     <table class="table table-sm table-bordered mb-0" style="table-layout: fixed">
         <thead>
         <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 width-30px">#</th>
             <th class="px-2 text-secondary border-bottom-0">Category</th>
             <th class="px-2 text-secondary border-bottom-0">Category</th>
             <th class="px-2 text-secondary border-bottom-0">Title</th>
             <th class="px-2 text-secondary border-bottom-0">Title</th>
@@ -16,7 +16,7 @@
         </thead>
         </thead>
         <tbody>
         <tbody>
             <tr v-for="(item, index) in items" :class="item.is_open ? '' : 'opacity-60'">
             <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.category"></td>
                 <td class="px-2" v-html="item.category"></td>
                 <td class="px-2" v-html="item.title"></td>
                 <td class="px-2" v-html="item.title"></td>
                 <td class="px-2" v-html="item.description"></td>
                 <td class="px-2" v-html="item.description"></td>