reviewNM.html 859 B

12345678910111213141516171819202122232425262728293031
  1. <h3>Nuclear medicine specialist's report</h3>
  2. <table>
  3. <tr>
  4. <th width="100" id="participantField">patientCode</th>
  5. <td id="participantCode">Loading</td>
  6. </tr>
  7. <tr>
  8. <th id="visitField">visitCode</th>
  9. <td id="visitCode">Loading</td>
  10. </tr>
  11. </table>
  12. <div id="reportDiv">
  13. </div>
  14. <div id="debugDiv">
  15. <textarea id="debugCode"></textarea>
  16. </div>
  17. <script type="text/javascript">
  18. let searchParams = new URLSearchParams(window.location.search);
  19. //update this to pick crfRef from url
  20. let participantCode=searchParams.get('participantCode');
  21. let visitCode=searchParams.get('visitCode');
  22. document.getElementById("participantCode").innerHTML=participantCode;
  23. document.getElementById("visitCode").innerHTML=visitCode;
  24. config.document=document;
  25. config.debugId="debugCode";
  26. print('Test');
  27. generateReviewSection("reviewNM","reportDiv",pickParticipantCodeFromPage);
  28. </script>