浏览代码

Markup cleanup

Vijayakrishnan 4 年之前
父节点
当前提交
604c6572e1

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

@@ -46,7 +46,7 @@
         </tbody>
     </table>
     <div class="stag-popup stag-popup-sm mcp-theme-1" stag-popup-key="equipment-popup">
-        <form method="POST" action="/api/appointment/create">
+        <form method="POST" action="">
             <h3 class="stag-popup-title mb-2">
                 <span>@{{ popupMode === 'add' ? 'Add Equipment' : 'Edit Equipment' }}</span>
                 <a href="#" class="ml-auto text-secondary"

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

@@ -69,7 +69,7 @@
         </tbody>
     </table>
     <div class="stag-popup stag-popup-sm mcp-theme-1" stag-popup-key="erx-popup">
-        <form method="POST" action="/api/appointment/create">
+        <form method="POST" action="">
             <h3 class="stag-popup-title mb-2">
                 <span>@{{ popupMode === 'add' ? 'Add ERx Item' : 'Edit ERx Item' }}</span>
                 <a href="#" class="ml-auto text-secondary"

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

@@ -46,7 +46,7 @@
         </tbody>
     </table>
     <div class="stag-popup stag-popup-sm mcp-theme-1" stag-popup-key="imaging-popup">
-        <form method="POST" action="/api/appointment/create" class="overflow-visible">
+        <form method="POST" action="" class="overflow-visible">
             <h3 class="stag-popup-title mb-2">
                 <span>@{{ popupMode === 'add' ? 'Add Imaging Order Item' : 'Edit Imaging Order Item' }}</span>
                 <a href="#" class="ml-auto text-secondary"

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

@@ -47,7 +47,7 @@
         </tbody>
     </table>
     <div class="stag-popup stag-popup-sm mcp-theme-1" stag-popup-key="lab-popup">
-        <form method="POST" action="/api/appointment/create" class="overflow-visible">
+        <form method="POST" action="" class="overflow-visible">
             <h3 class="stag-popup-title mb-2">
                 <span>@{{ popupMode === 'add' ? 'Add Lab Order Item' : 'Edit Lab Order Item' }}</span>
                 <a href="#" class="ml-auto text-secondary"

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

@@ -24,7 +24,7 @@
                     <a class="mr-2 c-pointer" v-on:click.prevent="showPopup('other-popup', item)">Edit</a>
                     <a class="mr-2 c-pointer" v-if="item.is_open" v-on:click.prevent="closeItem(item)">Close</a>
                     <a class="mr-2 c-pointer" v-if="!item.is_open" v-on:click.prevent="openItem(item)">Open</a>
-                    
+
                     @include('app.patient.partials.ticket_action_links')
 
                 </td>
@@ -32,7 +32,7 @@
         </tbody>
     </table>
     <div class="stag-popup stag-popup-sm mcp-theme-1" stag-popup-key="other-popup">
-        <form method="POST" action="/api/appointment/create" class="overflow-visible">
+        <form method="POST" action="" class="overflow-visible">
             <h3 class="stag-popup-title mb-2">
                 <span>@{{ popupMode === 'add' ? 'Add Item' : 'Edit Item' }}</span>
                 <a href="#" class="ml-auto text-secondary"
@@ -65,7 +65,7 @@
         $tickets = $patient->tickets->filter(function($_item) {
             return $_item->category === 'other';
         });
-      
+
         $items = [];
         foreach ($tickets as $ticket) {
             $item = json_decode($ticket->data);