Backend Service
This commit is contained in:
@@ -39,7 +39,7 @@ $icc++;
|
|||||||
<td><?=$prow->phone?></td>
|
<td><?=$prow->phone?></td>
|
||||||
<td><a href="/patient/chart"><button type="button" class="btn btn-info btn-sm">Chart</button></a></td>
|
<td><a href="/patient/chart"><button type="button" class="btn btn-info btn-sm">Chart</button></a></td>
|
||||||
<td><span class="badge badge-success-inverse">Active</span></td>
|
<td><span class="badge badge-success-inverse">Active</span></td>
|
||||||
<td> <a class="mr-3" href="javascript:void(0);"><i class="fe fe-edit"></i></a><a href="javascript:void(0);"><i class="fe fe-trash-2"></i></a></td>
|
<td> <a class="mr-3" href="javascript:void(0);" onclick="selectPatient(<?=$prow->patient_id?>)" ><i class="fe fe-edit"></i></a><a href="javascript:void(0);" onclick="calendarPatient(<?=$prow->patient_id?>)"><i class="fe fe-calendar"></i></a></td>
|
||||||
</tr>
|
</tr>
|
||||||
<?
|
<?
|
||||||
}
|
}
|
||||||
@@ -62,5 +62,3 @@ $icc++;
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -25,6 +25,19 @@
|
|||||||
|
|
||||||
<!-- custom app -->
|
<!-- custom app -->
|
||||||
<script src="/assets/js/app.js"></script>
|
<script src="/assets/js/app.js"></script>
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
<!--
|
||||||
|
function selectPatient( practicePatientId ){
|
||||||
|
alert( practicePatientId );
|
||||||
|
}
|
||||||
|
|
||||||
|
function calendarPatient( practicePatientId ){
|
||||||
|
alert( practicePatientId );
|
||||||
|
}
|
||||||
|
|
||||||
|
// -->
|
||||||
|
</script>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
Reference in New Issue
Block a user