แก้ประเมินบุคคล
This commit is contained in:
parent
23b522f1ee
commit
cbcb32a3dc
1 changed files with 10 additions and 6 deletions
|
|
@ -49,12 +49,16 @@ async function onClickfetchDocument(fileName: string, type: string) {
|
|||
}
|
||||
|
||||
async function coppyLink(link: string) {
|
||||
const textarea = document.createElement("textarea");
|
||||
textarea.value = link;
|
||||
document.body.appendChild(textarea);
|
||||
textarea.select();
|
||||
document.execCommand("copy");
|
||||
success($q, "คัดลอกลิ้งค์สำเร็จ");
|
||||
const linkById = link;
|
||||
navigator.clipboard.writeText(linkById);
|
||||
success($q, "คัดลอกสำเร็จ");
|
||||
|
||||
// const textarea = document.createElement("textarea");
|
||||
// textarea.value = link;
|
||||
// document.body.appendChild(textarea);
|
||||
// textarea.select();
|
||||
// document.execCommand("copy");
|
||||
// success($q, "คัดลอกลิ้งค์สำเร็จ");
|
||||
}
|
||||
|
||||
async function fetchCheckDate() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue