|
@@ -17,7 +17,19 @@ $point = Point::getOrCreateOnlyTopLevelPointOfCategory($note, 'SLEEP_STUDY_INTAK
|
|
|
// replace content data
|
|
|
$contentData = [
|
|
|
"Dozing" => "",
|
|
|
- "Score" => 0
|
|
|
+ "Score" => 0,
|
|
|
+ "PE_Eyes_Normal" => "Extraocular muscles are intact, pupils are equally round and reactive to light and accommodation.",
|
|
|
+ "PE_Ears_Normal" => "Tympanic membranes and canals are clear.",
|
|
|
+ "PE_Nose_Normal" => "Mucous membranes within normal limits. No discharge, nasal turbinates within normal limits and septum is midline.",
|
|
|
+ "PE_Mouth_Throat_Normal" => "Posterior pharynx is clear. Teeth are without dental caries. Tongue and mucosa are moist, soft, and pink. No lesions or inflammations noted on hard or soft palate, buccal areas, or gingiva.",
|
|
|
+ "PE_Neck_Normal" => "Neck is supple. No palpable masses or thyromegaly.",
|
|
|
+ "PE_Lymph_Normal" => "No adenopathy with bilateral palpation of lymph nodes in the cervical, supraclavicular, axilla, or inguinal regions.",
|
|
|
+ "PE_Resp_Normal" => "Clear to auscultation, no wheezes, rales, or rhonchi.",
|
|
|
+ "PE_Cardio_Normal" => "Regular rate and rhythm, no murmurs, ectopy, or rubs. No jugular venous distention.",
|
|
|
+ "PE_Skin_Normal" => "Tone, turgor, texture, and temperature within normal limits. Hair growth within normal limits.",
|
|
|
+ "PE_Extrimities_Normal" => "Inspection and palpation of digits and nails reveal no clubbing, cyanosis, or edema. Muscle strength 5 / 5.",
|
|
|
+ "PE_Neuro_Normal" => "Cranial nerves I - XII are grossly intact. Bilateral reflexes are 2+ throughout. Intact sensations of fine touch, pain, and temperature.",
|
|
|
+ "PE_Psych_Normal" => "Oriented to time, place, and person. Appropriate mood and affect.",
|
|
|
];
|
|
|
|
|
|
if ($point->lastChildReview && $point->lastChildReview->data) {
|
|
@@ -33,10 +45,44 @@ if ($point->lastChildReview && $point->lastChildReview->data) {
|
|
|
}
|
|
|
.textarea {
|
|
|
height: 50px !important;
|
|
|
- border-bottom-color: #000 !important;
|
|
|
+ padding: 5px !important;
|
|
|
+ border-color: #aaa !important;
|
|
|
+ border-bottom-color: #333 !important;
|
|
|
+ }
|
|
|
+ .modal-backdrop {
|
|
|
+ z-index: 90 !important;
|
|
|
+ background: #ccc;
|
|
|
}
|
|
|
</style>
|
|
|
-
|
|
|
+ <!-- Modal -->
|
|
|
+ <div class="modal fade" id="addDropdownOptionModal" tabindex="-1" aria-labelledby="addDropdownOptionModalLabel" aria-hidden="true">
|
|
|
+ <div class="modal-dialog" style="margin-top:200px;">
|
|
|
+ <div class="modal-content">
|
|
|
+ <div class="modal-header bg-light p-2">
|
|
|
+ <h5 class="modal-title font-weight-bold" id="addDropdownOptionModalLabel">- Enter new List Item</h5>
|
|
|
+ <button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
|
+ <span aria-hidden="true">×</span>
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ <div class="modal-body">
|
|
|
+ <form>
|
|
|
+ <div class="row">
|
|
|
+ <div class="col-12">
|
|
|
+ <div class="form-group">
|
|
|
+ <label>Field Label</label>
|
|
|
+ <input type="text" class="form-control" name="fieldLabel" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ <div class="d-flex align-items-center ">
|
|
|
+ <button type="button" class="btn btn-secondary mr-2" data-dismiss="modal">Close</button>
|
|
|
+ <button type="button" class="btn btn-primary" save-option data-dismiss="modal">Save changes</button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
<div visit-moe close-on-save close-on-cancel class="d-block">
|
|
|
<form show url="/api/visitPoint/upsertChildReview" class="mcp-theme-1">
|
|
|
<input type="hidden" name="uid" value="<?= $point->uid ?>">
|
|
@@ -54,6 +100,8 @@ if ($point->lastChildReview && $point->lastChildReview->data) {
|
|
|
|
|
|
@include('app.patient.modules.sleep_study_intake.partials.physical_exam')
|
|
|
|
|
|
+ @include('app.patient.modules.sleep_study_intake.partials.a_p')
|
|
|
+
|
|
|
<div class="mt-3 pt-3 border-top text-center">
|
|
|
<button type="button" v-on:click.prevent="saveForm()" class="btn btn-sm btn-primary mr-2">Submit</button>
|
|
|
<button type="button" onclick="closeStagPopup()" class="btn btn-sm btn-default border">Cancel</button>
|