1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
function chargeOuvrage(){
loadingShow(1);
$.ajax({
url: 'assets/php/app/fiche/fiche_get_ouvrage.php',
type: 'GET',
dataType: 'json',
data :{
"id_ouvrage": id_fiche
},
error: function(err) {},
complete: function(res) {
if (checkAjaxError(res)) {
var data = res.responseJSON;
$('#info_ouvrage').html(`
<table id="oa">
<tbody>
<tr>
<td rowspan="3" style="width:100px;"><img style="height:62px" src="https://**********/***/****/${data.logo}/logo"></td>
<td rowspan="3" style="width:100px;">${data.dossier}</td>
<td rowspan="2"> Référentiel Ouvrage d'Art sur Voirie Communale <br> PV Etat des lieux sommaire sur Ouvrage d'Art </td>
<td style="width:100px;">Id OA</td>
<td>${data.id_oa}</td>
</tr> |