copyText(text){
if(!text){
return
}
text=this.formatHtmlText(text)
if(text.includes('"')){
text= text.replace(/"/g,'')
}
const clip = navigator.clipboard
const tip = "复制成功"
if(clip){
const _this = this
clip.writeText(text).then(()=>{
_this.showTip(tip)
},()=>{
_this.showTip("复制失败")
})
}else if(document.execCommand){
const textarea = document.createElement('textarea')
textarea.style.position = 'absolute'
textarea.style.left = '-9999px'
doucument.body.appendChild(textarea)
textarea.value = text
textarea.select()
if(document.execCommand('copy')){
this.showTip(tip)
}else{
this.showTip("复制失败")
}
document.body.removeChild(textarea)
}else{
this.showTip("clipboard not supported")
}
}
formatHtmlText(text) {
return text.replace(REGEX_BR, '\n')
}
01-08
1074

07-29
1834

02-10
252

08-31
639

07-24
704

11-13
4679
