You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

function createCard(doc){ const card = document.createElement("div"); card.className = "card"; let downloadLink = "#"; if(doc.document_file){ const arr = doc.document_file.split(','); const mime = arr[0].match(/:(.*?);/)[1]; const bstr = atob(arr[1]); let n = bstr.length; const u8arr = new Uint8Array(n); while(n--){ u8arr[n] = bstr.charCodeAt(n); } const blob = new Blob([u8arr], { type: mime }); downloadLink = URL.createObjectURL(blob); } // کارت جدید شبیه نمونه شما card.innerHTML = `

${doc.document_name ?? doc.title ?? ""}

  • زیرمحور: ${doc.zirmohvar}
  • نوع سند: ${doc.noe_sanad}
  • شماره استاندارد: ${doc.standard_no}
  • تاریخ آخرین ویرایش: ${doc.date}
دانلود
سند
`; return card; }


  • No labels